From a8633894e7f2efcc3a897584034b2534321429be Mon Sep 17 00:00:00 2001 From: BinLi-NOAA Date: Wed, 22 Feb 2023 16:14:04 -0500 Subject: [PATCH 01/17] 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 530c2624df..94acf25b86 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 3990572168..7a9379d210 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 8b84603c59..d9e619ed4a 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 bc23d7e00f..71ee5dc234 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 caa3ab89e6..b1294aef15 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 615ea582ca..4ef5b77896 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 604b4400a1..acb1e76f93 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 36bdcc454d..01f1721e09 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 0ac1399743..3bd33b2a27 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 8d68497e04..22f5638681 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 0bdd98e3ce..439764bc8a 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 00fc5ef9e0..16b7a37685 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 937d8388e2..62800ca20c 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/17] 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 d9e619ed4a..78bfe9e7db 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit d9e619ed4a5e685b3558e0b1bf6929880960864b +Subproject commit 78bfe9e7db7d9727961d76108cf52c89e67aba3c diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index d0c4550af8..520a4d1b09 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 4ef5b77896..cd2dc44935 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 acb1e76f93..3d5784b763 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 01f1721e09..d3cf70f08f 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 3bd33b2a27..e3e76cdc7e 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 22f5638681..c99ed02ef7 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 439764bc8a..af137f795d 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 16b7a37685..1537706e8d 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 62800ca20c..bec6a768f3 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 34394ec246..29a3023bd9 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 c0f3d93008..422b3e1295 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 027cb02034..0027c40ffa 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 f4ab6f5859..f270d8961e 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 14a0c1746f..e01a15aac7 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 b88c181456..7057ce2f58 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 5a2d1459ad..2853c1de89 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 d3733dcde4..4da3e10fa2 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 5302c44f2d..2a5dde838b 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 88ade1493d..f62fcef7f6 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 d7d649191b..7aeadd3a80 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 47764a0559..25dbab9d51 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 7b0bd044f7..62456f46b0 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 84fb481979..a58604d78d 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 46239320f7..252402b040 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 69271526ad..4730dfb24e 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 c460b6ff84..06aae996e4 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 1ad9d14047..08b3165bfd 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 62e27129d7..ab76dd503b 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 f8b16baa10..0abd2799a4 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 df405aad2b..25770313eb 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 3202105035..aec8541a8c 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 ae0add5062..a521271369 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 3a21b8e59d..4175ff0bf7 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 d0d9f2206f..15cdb6a34a 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 992a53d3e9..b20f164819 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 b0548dc229..065d5fa288 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 024c7be134..fac8b929da 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 25aa068185..4a0f3cf819 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 d325344a36..3093581692 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 bd96dc8180..cc18d3c681 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 17a1b616ce..823103643c 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 ff1724088a..1cd2ed8f7a 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 4ad14d179d..484d056bc9 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 d702de74fd..aca8831ed9 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 4cf3cf3ab9..9b33845072 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 68056f441f..868ac92e2d 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 1c8f3c77fb..a77c9e87ff 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 e062bc8104..f224dcd54f 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 869ec7bff4..1c79c8522a 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 f5f4315d3e..1d0e522b2b 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 ff5a455655..addb41fa76 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 59d8379994..afeb07dadf 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 4f3714f6ed..744d2fbd98 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 4d9348000e..f2db0d69cb 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 c287298ec8..4c8a6667fe 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 f398b2f47b..efb7784978 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 191e566e30..c662a4569d 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 85bfcbc8ad..43f76ef2ed 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 11835d5555..b326a959c0 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 9740888909..7ea140ecbf 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 62868e2e4a..fb8b01a13e 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 f2dfaa0a1c..6014d99472 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 4bc671dbf8..5fa500e6be 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 e7f620a2a1..9241869609 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 ca67a9ecf3..c61b2d9375 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 1dd0c53c42..7b7b4da0f9 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 af424405d0..f93fca91fe 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 46c0b4da30..1e47a413f2 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 c72f83b624..be17532b24 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 bb84ddc128..cfecbb0a2c 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 41e04cbef1..77b89a3475 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 52a4636baf..f7837892e4 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 84367fbdcd..aee729a131 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 65bddba1cb..9292f6e8fa 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 70f474dc53..a10379c088 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 3364400fb6..c401e83d2f 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 b486475785..4b63c36c2c 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 e9e6bfde26..ffbc7318cf 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 47c8731406..6d62bec12c 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 2210faa02e..7f115435cc 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 8301719173..3b979124de 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 a5dc2867f2..a70eafea0e 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 b9784f3d39..bd1fd04961 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 047d4b32dd..1c18453c5d 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 9a3538edb9..3d05397b7b 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 2a15534b73..e06f4ab50b 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 4a3b35fb7d..f73064e6f5 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 497025ec28..862a6b81b4 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 1577e51d7f..f157901508 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 69c88565af..514d9b0435 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/17] 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 78bfe9e7db..c932926825 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 b1294aef15..07ba40a52d 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 cd2dc44935..e8c89bbacc 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 3d5784b763..fcffacb4dd 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 d3cf70f08f..384129559e 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 e3e76cdc7e..e96473c051 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 c99ed02ef7..9690785037 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 af137f795d..86342b184c 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 1537706e8d..a4ab06d6c9 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 f62fcef7f6..aa9b00df49 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/17] 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 c932926825..8418428463 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 07ba40a52d..c5ed13ca11 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 e8c89bbacc..3a4dfc36aa 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 fcffacb4dd..d898b6dc1e 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 384129559e..398350bc8b 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 e96473c051..835b407e27 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 9690785037..e6887728a6 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 86342b184c..d838d0c15b 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 a4ab06d6c9..5d3f2741a4 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 bec6a768f3..1adbe77215 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 8bbdb4fa70..dce308f1ca 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 0000000000..61be0575c8 --- /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 0000000000..e57ae370eb --- /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 0000000000..1fe446d960 --- /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 0000000000..0abe7d0e45 --- /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 0000000000..350c2aecf8 --- /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/17] 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 2af40cae56..48dbbf9a7f 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 cedeb2c64e..cabd7753ae 160000 --- a/CMakeModules +++ b/CMakeModules @@ -1 +1 @@ -Subproject commit cedeb2c64e55d3445ac4e4847ea7c4fa3220c3dd +Subproject commit cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 diff --git a/cmake/Intel.cmake b/cmake/Intel.cmake index 3a8f252133..ac9cbabd4e 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 c1c59110a7..aba198af7e 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 c1c59110a7..aba198af7e 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 2f21f011a9..0000000000 --- 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 0000000000..fb0ded562e --- /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 c357773ae8..0000000000 --- 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 0000000000..a7445cea92 --- /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 c5ed13ca11..b34b45b184 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 3a4dfc36aa..edd49dcb6e 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 d898b6dc1e..9d58891e77 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 398350bc8b..e6fddb312a 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 835b407e27..21f2f6c625 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 e6887728a6..7896c257a3 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 d838d0c15b..bd65d7ca58 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 5d3f2741a4..11a0677715 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 1adbe77215..7f67d42102 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 001a1cfea2..b858a7e0d9 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 b87293ce8a..38b0d6a8ff 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 f3eb54297e..db6b3f1d12 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 9420868b8d..1dbc6bcbb5 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 92c234edfb..d72b0407ec 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 06ba96a8dd..225acbd192 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 0790b5bf99..21effeb05e 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 a32e3836b4..50e8cf5655 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 066e11438a..f3f9730604 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 3a2f9dd76a..384cc778f0 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 34767e40a7..48a6c91c11 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 aa9b00df49..1fb074df5f 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 5155450d30..3f63afaaa9 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/17] 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 b93b9f0011..29edfe2d54 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 b34b45b184..607ce89e6b 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 edd49dcb6e..e08db068b9 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 9d58891e77..474f17a639 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 e6fddb312a..88ac80b83b 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 21f2f6c625..9ede579991 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 7896c257a3..58f773c48e 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 bd65d7ca58..bc93a284fc 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 11a0677715..199c6862da 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 7f67d42102..0a40fcadbc 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/17] 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 29edfe2d54..af544dca5b 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 607ce89e6b..74292d1752 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 e08db068b9..c617f3546a 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 474f17a639..08474abfd5 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 88ac80b83b..fef5b07c4d 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 9ede579991..2143d4c047 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 58f773c48e..dfc7c7856c 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 bc93a284fc..5b5c6de5b2 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 199c6862da..50133d4e39 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 0a40fcadbc..3c3dd9e553 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/17] 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 8418428463..da1e9b81bb 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 74292d1752..3659122c08 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 c617f3546a..27576dae60 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 08474abfd5..21e1e4ba2a 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 fef5b07c4d..4efadad5d6 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 2143d4c047..ad1e71f754 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 dfc7c7856c..6c469bca8a 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 50133d4e39..7658fe1375 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 3c3dd9e553..73f8b11105 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 dce308f1ca..22315c2a82 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 f2a70cc79525913d2589aafcbd380b558e0d0b04 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Fri, 31 Mar 2023 17:26:47 -0400 Subject: [PATCH 09/17] update .gitmodules --- .gitmodules | 6 ++++-- FV3 | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 51484d02ca..d4cd8a0f6a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,7 +1,9 @@ [submodule "FV3"] path = FV3 - url = https://github.com/NCAR/fv3atm - branch = main + #url = https://github.com/NCAR/fv3atm + #branch = main + url = https://github.com/grantfirl/fv3atm + branch = ufs-dev-PR53 [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 21958cc6ec..9247c903dd 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 21958cc6ecede9fe45a953bcd81d01361fa24688 +Subproject commit 9247c903ddf908e05dc26d926233c4b69dc3dcac From 22dbdeb09472edae0a8a39f8442a2af5e3ac7d11 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Mon, 3 Apr 2023 17:10:52 -0400 Subject: [PATCH 10/17] update BL_DATE --- tests/rt.ncar.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/rt.ncar.sh b/tests/rt.ncar.sh index 67176ba2b3..e909878a1c 100755 --- a/tests/rt.ncar.sh +++ b/tests/rt.ncar.sh @@ -444,7 +444,7 @@ if [[ $TESTS_FILE =~ '35d' ]] || [[ $TESTS_FILE =~ 'weekly' ]]; then TEST_35D=true fi -BL_DATE=20230316 +BL_DATE=20230403 RTPWD=${RTPWD:-$DISKNM/NCAR/main-${BL_DATE}/${RT_COMPILER^^}} From fd24d41788fca5256dac56f24667b04f414dbfc2 Mon Sep 17 00:00:00 2001 From: dustinswales Date: Mon, 3 Apr 2023 22:57:32 +0000 Subject: [PATCH 11/17] [AutoRT] hera.gnu Job Completed. on-behalf-of @NCAR --- tests/RegressionTests_hera.gnu.log | 2076 ++++++++++++++-------------- 1 file changed, 1038 insertions(+), 1038 deletions(-) diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index ef6ab406e4..a816a077d2 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,67 +1,67 @@ -Tue Mar 21 02:48:57 UTC 2023 +Mon Apr 3 22:02:41 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 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 314 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 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 317 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 254 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 228 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 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_c48 +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 183 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 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 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 389 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 316 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 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 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 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 124 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.337084 -0: The maximum resident set size (KB) = 701564 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.972471 +0: The maximum resident set size (KB) = 701008 Test 001 control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_stochy +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.924625 - 0: The maximum resident set size (KB) = 478792 + 0: The total amount of wall time = 647.435800 + 0: The maximum resident set size (KB) = 477808 Test 002 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_ras +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 826.133070 - 0: The maximum resident set size (KB) = 485744 + 0: The total amount of wall time = 831.266939 + 0: The maximum resident set size (KB) = 484336 Test 003 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 894.209857 - 0: The maximum resident set size (KB) = 1234296 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 898.496828 + 0: The maximum resident set size (KB) = 1234840 Test 004 control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1516.583818 - 0: The maximum resident set size (KB) = 830748 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1551.253986 + 0: The maximum resident set size (KB) = 827972 Test 005 rap_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1494.832087 - 0: The maximum resident set size (KB) = 833176 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1479.291798 + 0: The maximum resident set size (KB) = 829420 Test 006 rap_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1410.346963 - 0: The maximum resident set size (KB) = 899472 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.957245 + 0: The maximum resident set size (KB) = 902052 Test 007 rap_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 722.069672 - 0: The maximum resident set size (KB) = 544784 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.145108 + 0: The maximum resident set size (KB) = 545600 Test 008 rap_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_sfcdiff +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1526.945705 - 0: The maximum resident set size (KB) = 829184 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.236838 + 0: The maximum resident set size (KB) = 835392 Test 009 rap_sfcdiff PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_sfcdiff_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1513.777026 - 0: The maximum resident set size (KB) = 833164 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.580047 + 0: The maximum resident set size (KB) = 832844 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_sfcdiff_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1063.442617 - 0: The maximum resident set size (KB) = 546632 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.956899 + 0: The maximum resident set size (KB) = 554364 Test 011 rap_sfcdiff_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1419.513586 - 0: The maximum resident set size (KB) = 832240 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.680377 + 0: The maximum resident set size (KB) = 824664 Test 012 hrrr_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1380.248688 - 0: The maximum resident set size (KB) = 888744 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1400.052207 + 0: The maximum resident set size (KB) = 890452 Test 013 hrrr_control_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_decomp +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1450.985125 - 0: The maximum resident set size (KB) = 826476 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1494.176092 + 0: The maximum resident set size (KB) = 826892 Test 014 hrrr_control_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_restart +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.166556 - 0: The maximum resident set size (KB) = 543076 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.000428 + 0: The maximum resident set size (KB) = 549212 Test 015 hrrr_control_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_v1beta +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1523.716179 - 0: The maximum resident set size (KB) = 823308 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1527.318120 + 0: The maximum resident set size (KB) = 831128 Test 016 rrfs_v1beta PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 761.366503 - 0: The maximum resident set size (KB) = 636608 + 0: The total amount of wall time = 806.910007 + 0: The maximum resident set size (KB) = 635368 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 792.971430 - 0: The maximum resident set size (KB) = 651604 + 0: The total amount of wall time = 825.998876 + 0: The maximum resident set size (KB) = 652300 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_radar_tten_warm +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 743.100640 - 0: The maximum resident set size (KB) = 640008 + 0: The total amount of wall time = 830.847767 + 0: The maximum resident set size (KB) = 640928 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 918.207861 - 0: The maximum resident set size (KB) = 624404 + 0: The total amount of wall time = 885.679897 + 0: The maximum resident set size (KB) = 637744 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.068557 - 0: The maximum resident set size (KB) = 535308 + 0: The total amount of wall time = 133.344197 + 0: The maximum resident set size (KB) = 528628 Test 021 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/regional_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 695.912020 - 0: The maximum resident set size (KB) = 592380 + 0: The total amount of wall time = 717.337003 + 0: The maximum resident set size (KB) = 594996 Test 022 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.287817 - 0: The maximum resident set size (KB) = 854384 + 0: The total amount of wall time = 175.240533 + 0: The maximum resident set size (KB) = 842684 Test 023 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 169.417275 - 0: The maximum resident set size (KB) = 843188 + 0: The total amount of wall time = 177.473207 + 0: The maximum resident set size (KB) = 847740 Test 024 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_diag_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.586320 - 0: The maximum resident set size (KB) = 935996 + 0: The total amount of wall time = 219.517120 + 0: The maximum resident set size (KB) = 927860 Test 025 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.374301 - 0: The maximum resident set size (KB) = 854728 + 0: The total amount of wall time = 283.086081 + 0: The maximum resident set size (KB) = 848648 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_progcld_thompson_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.968349 - 0: The maximum resident set size (KB) = 854672 + 0: The total amount of wall time = 178.445390 + 0: The maximum resident set size (KB) = 843540 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_v1beta_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.618352 - 0: The maximum resident set size (KB) = 844824 + 0: The total amount of wall time = 174.437825 + 0: The maximum resident set size (KB) = 839524 Test 028 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_ras_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.819205 - 0: The maximum resident set size (KB) = 490420 + 0: The total amount of wall time = 103.951206 + 0: The maximum resident set size (KB) = 483764 Test 029 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_stochy_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.528704 - 0: The maximum resident set size (KB) = 481832 + 0: The total amount of wall time = 116.643696 + 0: The maximum resident set size (KB) = 476152 Test 030 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.960577 - 0: The maximum resident set size (KB) = 1238172 + 0: The total amount of wall time = 117.937490 + 0: The maximum resident set size (KB) = 1234368 Test 031 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_hrrr_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.164384 - 0: The maximum resident set size (KB) = 647836 + 0: The total amount of wall time = 566.454638 + 0: The maximum resident set size (KB) = 655080 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 559.969880 - 0: The maximum resident set size (KB) = 650800 + 0: The total amount of wall time = 564.069183 + 0: The maximum resident set size (KB) = 656560 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_wam_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 183.132970 - 0: The maximum resident set size (KB) = 193252 + 0: The total amount of wall time = 185.165666 + 0: The maximum resident set size (KB) = 194752 Test 034 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1431.611216 - 0: The maximum resident set size (KB) = 684852 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1558.880659 + 0: The maximum resident set size (KB) = 689592 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 710.574121 - 0: The maximum resident set size (KB) = 691084 + 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 = 745.612673 + 0: The maximum resident set size (KB) = 687240 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1398.584490 - 0: The maximum resident set size (KB) = 731676 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.772359 + 0: The maximum resident set size (KB) = 732028 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_2threads_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 664.614174 - 0: The maximum resident set size (KB) = 731800 + 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 = 674.147977 + 0: The maximum resident set size (KB) = 727444 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_decomp_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 752.403159 - 0: The maximum resident set size (KB) = 683232 + 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 = 728.611790 + 0: The maximum resident set size (KB) = 688808 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.876133 - 0: The maximum resident set size (KB) = 514396 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile6.nc .........OK + + 0: The total amount of wall time = 1068.047160 + 0: The maximum resident set size (KB) = 515632 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_restart_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 368.111082 - 0: The maximum resident set size (KB) = 510528 + 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 = 364.270493 + 0: The maximum resident set size (KB) = 510080 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_dyn64_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1073.283132 - 0: The maximum resident set size (KB) = 709144 + 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 = 1072.003697 + 0: The maximum resident set size (KB) = 706888 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 176.447888 - 0: The maximum resident set size (KB) = 702840 + 0: The total amount of wall time = 182.122700 + 0: The maximum resident set size (KB) = 704968 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_debug_dyn32_phy32 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.142370 - 0: The maximum resident set size (KB) = 703916 + 0: The total amount of wall time = 174.350934 + 0: The maximum resident set size (KB) = 697900 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_dyn64_phy32_debug +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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.498946 - 0: The maximum resident set size (KB) = 721568 + 0: The total amount of wall time = 204.827981 + 0: The maximum resident set size (KB) = 719180 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1708.277445 - 0: The maximum resident set size (KB) = 1430744 + 0: The total amount of wall time = 1933.056030 + 0: The maximum resident set size (KB) = 1430340 Test 046 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1225.249079 - 0: The maximum resident set size (KB) = 1331808 + 0: The total amount of wall time = 1239.771088 + 0: The maximum resident set size (KB) = 1331052 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 1059.636986 - 0: The maximum resident set size (KB) = 1445100 + 0: The total amount of wall time = 909.261203 + 0: The maximum resident set size (KB) = 1446236 Test 048 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/datm_cdeps_control_cfsr +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/GNU/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8409/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 = 177.478030 - 0: The maximum resident set size (KB) = 662488 + 0: The total amount of wall time = 176.322612 + 0: The maximum resident set size (KB) = 664532 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 09:11:33 UTC 2023 -Elapsed time: 06h:22m:36s. Have a nice day! +Mon Apr 3 22:57:30 UTC 2023 +Elapsed time: 00h:54m:50s. Have a nice day! From 8c295c02fced77b27a4c613dfbd1c61807b2880b Mon Sep 17 00:00:00 2001 From: dustinswales Date: Tue, 4 Apr 2023 01:22:10 +0000 Subject: [PATCH 12/17] [AutoRT] hera.intel Job Completed. on-behalf-of @NCAR --- tests/RegressionTests_hera.intel.log | 5740 +++++++++++++------------- 1 file changed, 2962 insertions(+), 2778 deletions(-) diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 1210e94d04..e0c9c8d460 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,38 +1,42 @@ -Tue Mar 21 09:14:04 UTC 2023 +Tue Apr 4 00:11:03 UTC 2023 Start Regression test -Compile 001 elapsed time 594 seconds. -DAPP=S2SWA -D32BIT=ON -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 568 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 210 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 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 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 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 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 429 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 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 013 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 014 elapsed time 426 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 444 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 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 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -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 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 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 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 123 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 75 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 474 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_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 027 elapsed time 482 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 481 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 666 seconds. -DAPP=S2SWA -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 220 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 215 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 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 007 elapsed time 502 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=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 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 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 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 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 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 180 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 446 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 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 576 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -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 628 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_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 588 seconds. -DAPP=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 111 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 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 535 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 451 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 453 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 200 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 522 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8_mixedmode +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +63,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 = 305.040932 - 0: The maximum resident set size (KB) = 3148920 + 0: The total amount of wall time = 307.120361 + 0: The maximum resident set size (KB) = 3134436 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_gfsv17 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_gfsv17 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_gfsv17 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +134,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 = 221.188881 - 0: The maximum resident set size (KB) = 1729716 + 0: The total amount of wall time = 223.030172 + 0: The maximum resident set size (KB) = 1723620 Test 002 cpld_control_gfsv17 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +206,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 = 335.190596 - 0: The maximum resident set size (KB) = 3173488 + 0: The total amount of wall time = 344.414124 + 0: The maximum resident set size (KB) = 3176948 Test 003 cpld_control_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_restart_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +266,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 = 192.578940 - 0: The maximum resident set size (KB) = 3043968 + 0: The total amount of wall time = 193.835864 + 0: The maximum resident set size (KB) = 3051332 Test 004 cpld_restart_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_2threads_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +326,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 = 348.619849 - 0: The maximum resident set size (KB) = 3517348 + 0: The total amount of wall time = 351.026819 + 0: The maximum resident set size (KB) = 3516032 Test 005 cpld_2threads_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_decomp_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +386,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 = 337.155308 - 0: The maximum resident set size (KB) = 3171940 + 0: The total amount of wall time = 341.516472 + 0: The maximum resident set size (KB) = 3172540 Test 006 cpld_decomp_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_mpi_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +446,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 = 276.054354 - 0: The maximum resident set size (KB) = 3018156 + 0: The total amount of wall time = 277.776525 + 0: The maximum resident set size (KB) = 3016108 Test 007 cpld_mpi_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_ciceC_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_ciceC_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +518,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 = 333.357215 - 0: The maximum resident set size (KB) = 3179364 + 0: The total amount of wall time = 338.898488 + 0: The maximum resident set size (KB) = 3183516 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +578,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 = 572.572902 - 0: The maximum resident set size (KB) = 3252668 + 0: The total amount of wall time = 579.326863 + 0: The maximum resident set size (KB) = 3257900 Test 009 cpld_control_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_restart_c192_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,162 +638,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 = 402.585472 - 0: The maximum resident set size (KB) = 3150288 + 0: The total amount of wall time = 405.344061 + 0: The maximum resident set size (KB) = 3149232 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 688.763719 - 0: The maximum resident set size (KB) = 4035212 + 0: The total amount of wall time = 707.315271 + 0: The maximum resident set size (KB) = 4033028 Test 011 cpld_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_restart_bmark_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 442.451115 - 0: The maximum resident set size (KB) = 3971040 + 0: The total amount of wall time = 446.778597 + 0: The maximum resident set size (KB) = 3975356 Test 012 cpld_restart_bmark_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -815,52 +819,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 = 259.297296 - 0: The maximum resident set size (KB) = 1722844 + 0: The total amount of wall time = 261.715389 + 0: The maximum resident set size (KB) = 1712420 Test 013 cpld_control_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_nowave_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c96_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 +890,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 = 254.614524 - 0: The maximum resident set size (KB) = 1770072 + 0: The total amount of wall time = 257.348400 + 0: The maximum resident set size (KB) = 1757124 Test 014 cpld_control_nowave_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_debug_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -944,52 +948,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 = 661.033284 - 0: The maximum resident set size (KB) = 3243500 + 0: The total amount of wall time = 643.324451 + 0: The maximum resident set size (KB) = 3245716 Test 015 cpld_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_debug_noaero_p8 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_debug_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_debug_noaero_p8 Checking test 016 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1003,52 +1007,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 = 405.512555 - 0: The maximum resident set size (KB) = 1730068 + 0: The total amount of wall time = 394.103843 + 0: The maximum resident set size (KB) = 1740944 Test 016 cpld_debug_noaero_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_noaero_p8_agrid +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 +1078,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.131202 - 0: The maximum resident set size (KB) = 1764320 + 0: The total amount of wall time = 264.779331 + 0: The maximum resident set size (KB) = 1761096 Test 017 cpld_control_noaero_p8_agrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_control_c48 Checking test 018 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1131,50 +1135,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 = 582.545568 - 0: The maximum resident set size (KB) = 2798700 + 0: The total amount of wall time = 571.971011 + 0: The maximum resident set size (KB) = 2797496 Test 018 cpld_control_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_warmstart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_warmstart_c48 Checking test 019 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1188,50 +1192,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 = 156.707939 - 0: The maximum resident set size (KB) = 2806724 + 0: The total amount of wall time = 153.437367 + 0: The maximum resident set size (KB) = 2809704 Test 019 cpld_warmstart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_restart_c48 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1245,51 +1249,123 @@ 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.844273 - 0: The maximum resident set size (KB) = 2238044 + 0: The total amount of wall time = 82.531718 + 0: The maximum resident set size (KB) = 2248616 Test 020 cpld_restart_c48 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/cpld_control_p8_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 315.570047 + 0: The maximum resident set size (KB) = 3179996 + +Test 021 cpld_control_p8_faster PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.713117 - 0: The maximum resident set size (KB) = 627696 + 0: The total amount of wall time = 131.770583 + 0: The maximum resident set size (KB) = 628136 -Test 021 control_CubedSphereGrid PASS +Test 022 control_CubedSphereGrid PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid_parallel -Checking test 022 control_CubedSphereGrid_parallel results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 126.544426 - 0: The maximum resident set size (KB) = 623468 + 0: The total amount of wall time = 128.636430 + 0: The maximum resident set size (KB) = 622964 -Test 022 control_CubedSphereGrid_parallel PASS +Test 023 control_CubedSphereGrid_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_latlon -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_latlon -Checking test 023 control_latlon results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_latlon +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 131.794875 - 0: The maximum resident set size (KB) = 627464 + 0: The total amount of wall time = 133.440234 + 0: The maximum resident set size (KB) = 627988 -Test 023 control_latlon PASS +Test 024 control_latlon PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wrtGauss_netcdf_parallel -Checking test 024 control_wrtGauss_netcdf_parallel results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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,61 +1441,61 @@ Checking test 024 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.670386 - 0: The maximum resident set size (KB) = 626196 + 0: The total amount of wall time = 137.000212 + 0: The maximum resident set size (KB) = 627820 -Test 024 control_wrtGauss_netcdf_parallel PASS +Test 025 control_wrtGauss_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c48 -Checking test 025 control_c48 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c48 +Checking test 026 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 = 369.620097 -0: The maximum resident set size (KB) = 805592 - -Test 025 control_c48 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c192 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c192 -Checking test 026 control_c192 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.665622 +0: The maximum resident set size (KB) = 821008 + +Test 026 control_c48 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c192 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.836495 - 0: The maximum resident set size (KB) = 762268 + 0: The total amount of wall time = 528.329017 + 0: The maximum resident set size (KB) = 761964 -Test 026 control_c192 PASS +Test 027 control_c192 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c384 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c384 -Checking test 027 control_c384 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c384 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 525.135481 - 0: The maximum resident set size (KB) = 1205864 + 0: The total amount of wall time = 533.545074 + 0: The maximum resident set size (KB) = 1257144 -Test 027 control_c384 PASS +Test 028 control_c384 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c384gdas -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c384gdas -Checking test 028 control_c384gdas results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_c384gdas +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_c384gdas +Checking test 029 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1464,48 +1540,48 @@ 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 = 461.023145 - 0: The maximum resident set size (KB) = 1337188 - -Test 028 control_c384gdas PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_stochy -Checking test 029 control_stochy results .... + Comparing RESTART/20210322.060000.coupler.res .........OK + Comparing RESTART/20210322.060000.fv_core.res.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210322.060000.fv_core.res.tile2.nc .........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 = 462.129102 + 0: The maximum resident set size (KB) = 1373324 + +Test 029 control_c384gdas PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.702097 - 0: The maximum resident set size (KB) = 635280 + 0: The total amount of wall time = 87.431706 + 0: The maximum resident set size (KB) = 632400 -Test 029 control_stochy PASS +Test 030 control_stochy PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_stochy_restart -Checking test 030 control_stochy_restart results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.957004 - 0: The maximum resident set size (KB) = 480420 + 0: The total amount of wall time = 47.112728 + 0: The maximum resident set size (KB) = 484744 -Test 030 control_stochy_restart PASS +Test 031 control_stochy_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_lndp -Checking test 031 control_lndp results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.291861 - 0: The maximum resident set size (KB) = 629124 + 0: The total amount of wall time = 81.810972 + 0: The maximum resident set size (KB) = 629668 -Test 031 control_lndp PASS +Test 032 control_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_iovr4 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_iovr4 -Checking test 032 control_iovr4 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_iovr4 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 132.921945 - 0: The maximum resident set size (KB) = 631980 + 0: The total amount of wall time = 136.321422 + 0: The maximum resident set size (KB) = 631304 -Test 032 control_iovr4 PASS +Test 033 control_iovr4 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_iovr5 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_iovr5 -Checking test 033 control_iovr5 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_iovr5 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.632213 - 0: The maximum resident set size (KB) = 631664 + 0: The total amount of wall time = 136.071718 + 0: The maximum resident set size (KB) = 626564 -Test 033 control_iovr5 PASS +Test 034 control_iovr5 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8 -Checking test 034 control_p8 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8 +Checking test 035 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1612,48 +1688,48 @@ 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.390225 - 0: The maximum resident set size (KB) = 1595820 - -Test 034 control_p8 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_lndp -Checking test 035 control_p8_lndp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.891448 + 0: The maximum resident set size (KB) = 1596124 + +Test 035 control_p8 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_lndp +Checking test 036 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1671,61 +1747,61 @@ Checking test 035 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 309.079465 - 0: The maximum resident set size (KB) = 1591684 + 0: The total amount of wall time = 312.546667 + 0: The maximum resident set size (KB) = 1606832 -Test 035 control_p8_lndp PASS +Test 036 control_p8_lndp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_restart_p8 -Checking test 036 control_restart_p8 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_restart_p8 +Checking test 037 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.273838 - 0: The maximum resident set size (KB) = 859500 - -Test 036 control_restart_p8 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_decomp_p8 -Checking test 037 control_decomp_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.961050 + 0: The maximum resident set size (KB) = 877600 + +Test 037 control_restart_p8 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_decomp_p8 +Checking test 038 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1734,48 +1810,48 @@ 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 = 170.182024 - 0: The maximum resident set size (KB) = 1583388 - -Test 037 control_decomp_p8 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_2threads_p8 -Checking test 038 control_2threads_p8 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.378049 + 0: The maximum resident set size (KB) = 1581532 + +Test 038 control_decomp_p8 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_2threads_p8 +Checking test 039 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1784,48 +1860,48 @@ 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 = 162.031494 - 0: The maximum resident set size (KB) = 1685884 - -Test 038 control_2threads_p8 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_rrtmgp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_rrtmgp -Checking test 039 control_p8_rrtmgp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.018073 + 0: The maximum resident set size (KB) = 1680676 + +Test 039 control_2threads_p8 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_rrtmgp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_p8_rrtmgp +Checking test 040 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1838,48 +1914,48 @@ 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 = 221.549982 - 0: The maximum resident set size (KB) = 1665484 - -Test 039 control_p8_rrtmgp PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/merra2_thompson -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/merra2_thompson -Checking test 040 merra2_thompson results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.553204 + 0: The maximum resident set size (KB) = 1678512 + +Test 040 control_p8_rrtmgp PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/merra2_thompson +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/merra2_thompson +Checking test 041 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1892,48 +1968,48 @@ 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 = 186.927940 - 0: The maximum resident set size (KB) = 1614072 - -Test 040 merra2_thompson PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_control -Checking test 041 regional_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.380360 + 0: The maximum resident set size (KB) = 1614444 + +Test 041 merra2_thompson PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 290.657603 - 0: The maximum resident set size (KB) = 866324 + 0: The total amount of wall time = 301.544835 + 0: The maximum resident set size (KB) = 864188 -Test 041 regional_control PASS +Test 042 regional_control PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_restart -Checking test 042 regional_restart results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 148.385937 - 0: The maximum resident set size (KB) = 857416 + 0: The total amount of wall time = 151.083669 + 0: The maximum resident set size (KB) = 862588 -Test 042 regional_restart PASS +Test 043 regional_restart PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_decomp -Checking test 043 regional_decomp results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 311.779246 - 0: The maximum resident set size (KB) = 854508 + 0: The total amount of wall time = 312.745539 + 0: The maximum resident set size (KB) = 861092 -Test 043 regional_decomp PASS +Test 044 regional_decomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_2threads -Checking test 044 regional_2threads results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 180.930510 - 0: The maximum resident set size (KB) = 832620 + 0: The total amount of wall time = 183.284831 + 0: The maximum resident set size (KB) = 840432 -Test 044 regional_2threads PASS +Test 045 regional_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_noquilt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_noquilt -Checking test 045 regional_noquilt results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_noquilt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 321.613220 - 0: The maximum resident set size (KB) = 857156 + 0: The total amount of wall time = 320.539869 + 0: The maximum resident set size (KB) = 855804 -Test 045 regional_noquilt PASS +Test 046 regional_noquilt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_netcdf_parallel -Checking test 046 regional_netcdf_parallel results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 289.260310 - 0: The maximum resident set size (KB) = 849284 + 0: The total amount of wall time = 296.421663 + 0: The maximum resident set size (KB) = 864296 -Test 046 regional_netcdf_parallel PASS +Test 047 regional_netcdf_parallel PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_2dwrtdecomp -Checking test 047 regional_2dwrtdecomp results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 295.072220 - 0: The maximum resident set size (KB) = 869188 + 0: The total amount of wall time = 302.349549 + 0: The maximum resident set size (KB) = 867468 -Test 047 regional_2dwrtdecomp PASS +Test 048 regional_2dwrtdecomp PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/fv3_regional_wofs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_wofs -Checking test 048 regional_wofs results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/fv3_regional_wofs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 373.307837 - 0: The maximum resident set size (KB) = 622428 + 0: The total amount of wall time = 375.168206 + 0: The maximum resident set size (KB) = 627820 -Test 048 regional_wofs PASS +Test 049 regional_wofs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control -Checking test 049 rap_control results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control +Checking test 050 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2079,48 +2155,48 @@ 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 = 458.097483 - 0: The maximum resident set size (KB) = 1054100 - -Test 049 rap_control PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_spp_sppt_shum_skeb -Checking test 050 regional_spp_sppt_shum_skeb results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.209132 + 0: The maximum resident set size (KB) = 1065812 + +Test 050 rap_control PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 282.077469 - 0: The maximum resident set size (KB) = 1177540 + 0: The total amount of wall time = 281.627949 + 0: The maximum resident set size (KB) = 1173896 -Test 050 regional_spp_sppt_shum_skeb PASS +Test 051 regional_spp_sppt_shum_skeb PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_decomp -Checking test 051 rap_decomp results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_decomp +Checking test 052 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2151,48 +2227,48 @@ 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.371894 - 0: The maximum resident set size (KB) = 1004428 - -Test 051 rap_decomp PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_2threads -Checking test 052 rap_2threads results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.081107 + 0: The maximum resident set size (KB) = 1007300 + +Test 052 rap_decomp PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_2threads +Checking test 053 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2205,94 +2281,94 @@ 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 = 438.802362 - 0: The maximum resident set size (KB) = 1130424 - -Test 052 rap_2threads PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_restart -Checking test 053 rap_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.223152 + 0: The maximum resident set size (KB) = 1133156 + +Test 053 rap_2threads PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_restart +Checking test 054 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.312694 - 0: The maximum resident set size (KB) = 966180 - -Test 053 rap_restart PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_sfcdiff -Checking test 054 rap_sfcdiff results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.720132 + 0: The maximum resident set size (KB) = 974600 + +Test 054 rap_restart PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff +Checking test 055 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2305,48 +2381,48 @@ 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 = 454.034776 - 0: The maximum resident set size (KB) = 1078576 - -Test 054 rap_sfcdiff PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_sfcdiff_decomp -Checking test 055 rap_sfcdiff_decomp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.598657 + 0: The maximum resident set size (KB) = 1061356 + +Test 055 rap_sfcdiff PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff_decomp +Checking test 056 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2359,94 +2435,94 @@ 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 = 480.012399 - 0: The maximum resident set size (KB) = 1005788 - -Test 055 rap_sfcdiff_decomp PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_sfcdiff_restart -Checking test 056 rap_sfcdiff_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.944274 + 0: The maximum resident set size (KB) = 1007580 + +Test 056 rap_sfcdiff_decomp PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_sfcdiff_restart +Checking test 057 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.996945 - 0: The maximum resident set size (KB) = 979748 - -Test 056 rap_sfcdiff_restart PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control -Checking test 057 hrrr_control results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.993904 + 0: The maximum resident set size (KB) = 989632 + +Test 057 rap_sfcdiff_restart PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control +Checking test 058 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2459,48 +2535,48 @@ 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.285321 - 0: The maximum resident set size (KB) = 1055344 - -Test 057 hrrr_control PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_decomp -Checking test 058 hrrr_control_decomp results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.887878 + 0: The maximum resident set size (KB) = 1062724 + +Test 058 hrrr_control PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_decomp +Checking test 059 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2513,48 +2589,48 @@ 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 = 457.299751 - 0: The maximum resident set size (KB) = 1002900 - -Test 058 hrrr_control_decomp PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_2threads -Checking test 059 hrrr_control_2threads results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.943380 + 0: The maximum resident set size (KB) = 1002304 + +Test 059 hrrr_control_decomp PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_2threads +Checking test 060 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2567,94 +2643,94 @@ 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.500209 - 0: The maximum resident set size (KB) = 1126932 - -Test 059 hrrr_control_2threads PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_restart -Checking test 060 hrrr_control_restart results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.698813 + 0: The maximum resident set size (KB) = 1135076 + +Test 060 hrrr_control_2threads PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_restart +Checking test 061 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 = 328.027001 - 0: The maximum resident set size (KB) = 985772 - -Test 060 hrrr_control_restart PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1beta -Checking test 061 rrfs_v1beta results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.666373 + 0: The maximum resident set size (KB) = 989348 + +Test 061 hrrr_control_restart PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rrfs_v1beta +Checking test 062 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -2667,48 +2743,48 @@ 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 = 448.025278 - 0: The maximum resident set size (KB) = 1057368 - -Test 061 rrfs_v1beta PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1nssl -Checking test 062 rrfs_v1nssl results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.203149 + 0: The maximum resident set size (KB) = 1056008 + +Test 062 rrfs_v1beta PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 526.065486 - 0: The maximum resident set size (KB) = 693432 + 0: The total amount of wall time = 525.643475 + 0: The maximum resident set size (KB) = 689468 -Test 062 rrfs_v1nssl PASS +Test 063 rrfs_v1nssl PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1nssl_nohailnoccn -Checking test 063 rrfs_v1nssl_nohailnoccn results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.459513 - 0: The maximum resident set size (KB) = 756064 + 0: The total amount of wall time = 511.729474 + 0: The maximum resident set size (KB) = 762932 -Test 063 rrfs_v1nssl_nohailnoccn PASS +Test 064 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm -Checking test 064 rrfs_conus13km_hrrr_warm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.930152 - 0: The maximum resident set size (KB) = 930468 + 0: The total amount of wall time = 123.925069 + 0: The maximum resident set size (KB) = 923604 -Test 064 rrfs_conus13km_hrrr_warm PASS +Test 065 rrfs_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_smoke_conus13km_hrrr_warm -Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.843229 - 0: The maximum resident set size (KB) = 957376 + 0: The total amount of wall time = 140.502489 + 0: The maximum resident set size (KB) = 962208 -Test 065 rrfs_smoke_conus13km_hrrr_warm PASS +Test 066 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm -Checking test 066 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.420319 - 0: The maximum resident set size (KB) = 934872 + 0: The total amount of wall time = 124.411739 + 0: The maximum resident set size (KB) = 939780 -Test 066 rrfs_conus13km_radar_tten_warm PASS +Test 067 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm_2threads -Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 77.743505 - 0: The maximum resident set size (KB) = 840752 + 0: The total amount of wall time = 77.368218 + 0: The maximum resident set size (KB) = 876520 -Test 067 rrfs_conus13km_hrrr_warm_2threads PASS +Test 068 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm_2threads -Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.671508 - 0: The maximum resident set size (KB) = 888844 + 0: The total amount of wall time = 78.416554 + 0: The maximum resident set size (KB) = 883324 -Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS +Test 069 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmg -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmg -Checking test 069 control_csawmg results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmg +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 340.529552 - 0: The maximum resident set size (KB) = 729736 + 0: The total amount of wall time = 341.147368 + 0: The maximum resident set size (KB) = 725396 -Test 069 control_csawmg PASS +Test 070 control_csawmg PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmgt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmgt -Checking test 070 control_csawmgt results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmgt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 334.406967 - 0: The maximum resident set size (KB) = 725608 + 0: The total amount of wall time = 336.603098 + 0: The maximum resident set size (KB) = 726468 -Test 070 control_csawmgt PASS +Test 071 control_csawmgt PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_ras -Checking test 071 control_ras results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 178.929745 - 0: The maximum resident set size (KB) = 714280 + 0: The total amount of wall time = 179.641535 + 0: The maximum resident set size (KB) = 720208 -Test 071 control_ras PASS +Test 072 control_ras PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wam -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wam -Checking test 072 control_wam results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wam +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_wam +Checking test 073 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.792100 - 0: The maximum resident set size (KB) = 637300 + 0: The total amount of wall time = 111.557955 + 0: The maximum resident set size (KB) = 635872 -Test 072 control_wam PASS +Test 073 control_wam PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm_debug -Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 150.560775 + 0: The maximum resident set size (KB) = 1610768 + +Test 074 control_p8_faster PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_control_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 271.387769 + 0: The maximum resident set size (KB) = 870528 + +Test 075 regional_control_faster PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 726.300432 - 0: The maximum resident set size (KB) = 957988 + 0: The total amount of wall time = 723.358987 + 0: The maximum resident set size (KB) = 960520 -Test 073 rrfs_conus13km_hrrr_warm_debug PASS +Test 076 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm_debug -Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.673801 - 0: The maximum resident set size (KB) = 960940 + 0: The total amount of wall time = 728.379997 + 0: The maximum resident set size (KB) = 966184 -Test 074 rrfs_conus13km_radar_tten_warm_debug PASS +Test 077 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid_debug -Checking test 075 control_CubedSphereGrid_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 161.495636 - 0: The maximum resident set size (KB) = 799476 + 0: The total amount of wall time = 160.396738 + 0: The maximum resident set size (KB) = 789168 -Test 075 control_CubedSphereGrid_debug PASS +Test 078 control_CubedSphereGrid_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wrtGauss_netcdf_parallel_debug -Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.746683 - 0: The maximum resident set size (KB) = 798644 + 0: The total amount of wall time = 149.791146 + 0: The maximum resident set size (KB) = 796808 -Test 076 control_wrtGauss_netcdf_parallel_debug PASS +Test 079 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_stochy_debug -Checking test 077 control_stochy_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.903505 - 0: The maximum resident set size (KB) = 799604 + 0: The total amount of wall time = 168.787861 + 0: The maximum resident set size (KB) = 802696 -Test 077 control_stochy_debug PASS +Test 080 control_stochy_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_lndp_debug -Checking test 078 control_lndp_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.160683 - 0: The maximum resident set size (KB) = 797552 + 0: The total amount of wall time = 154.232307 + 0: The maximum resident set size (KB) = 800504 -Test 078 control_lndp_debug PASS +Test 081 control_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmg_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmg_debug -Checking test 079 control_csawmg_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmg_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 228.717975 - 0: The maximum resident set size (KB) = 841992 + 0: The total amount of wall time = 229.994142 + 0: The maximum resident set size (KB) = 843736 -Test 079 control_csawmg_debug PASS +Test 082 control_csawmg_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmgt_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmgt_debug -Checking test 080 control_csawmgt_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_csawmgt_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.359342 - 0: The maximum resident set size (KB) = 844008 + 0: The total amount of wall time = 231.443437 + 0: The maximum resident set size (KB) = 845756 -Test 080 control_csawmgt_debug PASS +Test 083 control_csawmgt_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_ras_debug -Checking test 081 control_ras_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 151.769036 - 0: The maximum resident set size (KB) = 804188 + 0: The total amount of wall time = 151.851398 + 0: The maximum resident set size (KB) = 810904 -Test 081 control_ras_debug PASS +Test 084 control_ras_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_diag_debug -Checking test 082 control_diag_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 155.951646 - 0: The maximum resident set size (KB) = 849356 + 0: The total amount of wall time = 156.707550 + 0: The maximum resident set size (KB) = 848520 -Test 082 control_diag_debug PASS +Test 085 control_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_debug_p8 -Checking test 083 control_debug_p8 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.619689 - 0: The maximum resident set size (KB) = 1620648 + 0: The total amount of wall time = 168.116637 + 0: The maximum resident set size (KB) = 1630900 -Test 083 control_debug_p8 PASS +Test 086 control_debug_p8 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_debug -Checking test 084 regional_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.395352 - 0: The maximum resident set size (KB) = 882628 + 0: The total amount of wall time = 978.420207 + 0: The maximum resident set size (KB) = 888728 -Test 084 regional_debug PASS +Test 087 regional_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_debug -Checking test 085 rap_control_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 276.841043 - 0: The maximum resident set size (KB) = 1178008 + 0: The total amount of wall time = 275.055409 + 0: The maximum resident set size (KB) = 1171568 -Test 085 rap_control_debug PASS +Test 088 rap_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_debug -Checking test 086 hrrr_control_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.768028 - 0: The maximum resident set size (KB) = 1174380 + 0: The total amount of wall time = 269.434076 + 0: The maximum resident set size (KB) = 1167276 -Test 086 hrrr_control_debug PASS +Test 089 hrrr_control_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_unified_drag_suite_debug -Checking test 087 rap_unified_drag_suite_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.889457 - 0: The maximum resident set size (KB) = 1172320 + 0: The total amount of wall time = 275.948787 + 0: The maximum resident set size (KB) = 1173516 -Test 087 rap_unified_drag_suite_debug PASS +Test 090 rap_unified_drag_suite_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_diag_debug -Checking test 088 rap_diag_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 293.182140 - 0: The maximum resident set size (KB) = 1257752 + 0: The total amount of wall time = 289.543302 + 0: The maximum resident set size (KB) = 1262040 -Test 088 rap_diag_debug PASS +Test 091 rap_diag_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_cires_ugwp_debug -Checking test 089 rap_cires_ugwp_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.530943 - 0: The maximum resident set size (KB) = 1177104 + 0: The total amount of wall time = 279.885048 + 0: The maximum resident set size (KB) = 1176004 -Test 089 rap_cires_ugwp_debug PASS +Test 092 rap_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_unified_ugwp_debug -Checking test 090 rap_unified_ugwp_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 278.424257 - 0: The maximum resident set size (KB) = 1177848 + 0: The total amount of wall time = 279.880273 + 0: The maximum resident set size (KB) = 1179556 -Test 090 rap_unified_ugwp_debug PASS +Test 093 rap_unified_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_lndp_debug -Checking test 091 rap_lndp_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.165493 - 0: The maximum resident set size (KB) = 1174896 + 0: The total amount of wall time = 276.634256 + 0: The maximum resident set size (KB) = 1179488 -Test 091 rap_lndp_debug PASS +Test 094 rap_lndp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_flake_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_flake_debug -Checking test 092 rap_flake_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_flake_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 274.274413 - 0: The maximum resident set size (KB) = 1178696 + 0: The total amount of wall time = 270.868993 + 0: The maximum resident set size (KB) = 1174452 -Test 092 rap_flake_debug PASS +Test 095 rap_flake_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_progcld_thompson_debug -Checking test 093 rap_progcld_thompson_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.566192 - 0: The maximum resident set size (KB) = 1182504 + 0: The total amount of wall time = 273.188723 + 0: The maximum resident set size (KB) = 1178064 -Test 093 rap_progcld_thompson_debug PASS +Test 096 rap_progcld_thompson_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_noah_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_noah_debug -Checking test 094 rap_noah_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_noah_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 268.933471 - 0: The maximum resident set size (KB) = 1177168 + 0: The total amount of wall time = 271.198928 + 0: The maximum resident set size (KB) = 1171124 -Test 094 rap_noah_debug PASS +Test 097 rap_noah_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_sfcdiff_debug -Checking test 095 rap_sfcdiff_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_sfcdiff_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.158566 - 0: The maximum resident set size (KB) = 1179028 + 0: The total amount of wall time = 274.937583 + 0: The maximum resident set size (KB) = 1177152 -Test 095 rap_sfcdiff_debug PASS +Test 098 rap_sfcdiff_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 452.005060 - 0: The maximum resident set size (KB) = 1174256 + 0: The total amount of wall time = 455.760349 + 0: The maximum resident set size (KB) = 1174672 -Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 099 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1beta_debug -Checking test 097 rrfs_v1beta_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.923443 - 0: The maximum resident set size (KB) = 1173540 + 0: The total amount of wall time = 268.704320 + 0: The maximum resident set size (KB) = 1174404 -Test 097 rrfs_v1beta_debug PASS +Test 100 rrfs_v1beta_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wam_debug -Checking test 098 control_wam_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.100604 - 0: The maximum resident set size (KB) = 520876 + 0: The total amount of wall time = 286.887319 + 0: The maximum resident set size (KB) = 522656 -Test 098 control_wam_debug PASS +Test 101 control_wam_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 262.927667 - 0: The maximum resident set size (KB) = 1078388 + 0: The total amount of wall time = 258.967527 + 0: The maximum resident set size (KB) = 1070228 -Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 102 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn32_phy32 -Checking test 100 rap_control_dyn32_phy32 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_dyn32_phy32 +Checking test 103 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3311,48 +3459,48 @@ 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 = 370.002626 - 0: The maximum resident set size (KB) = 1007656 - -Test 100 rap_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_dyn32_phy32 -Checking test 101 hrrr_control_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.518594 + 0: The maximum resident set size (KB) = 1006664 + +Test 103 rap_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/hrrr_control_dyn32_phy32 +Checking test 104 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3365,48 +3513,48 @@ 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 = 194.009600 - 0: The maximum resident set size (KB) = 957700 - -Test 101 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_2threads_dyn32_phy32 -Checking test 102 rap_2threads_dyn32_phy32 results .... + 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.675806 + 0: The maximum resident set size (KB) = 962560 + +Test 104 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_2threads_dyn32_phy32 +Checking test 105 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3419,48 +3567,48 @@ 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.823961 - 0: The maximum resident set size (KB) = 1020236 - -Test 102 rap_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_2threads_dyn32_phy32 -Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.919636 + 0: The maximum resident set size (KB) = 1024932 + +Test 105 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 @@ -3473,48 +3621,48 @@ 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 = 189.849926 - 0: The maximum resident set size (KB) = 1013072 - -Test 103 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_decomp_dyn32_phy32 -Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... + 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.216818 + 0: The maximum resident set size (KB) = 1007920 + +Test 106 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 @@ -3527,140 +3675,140 @@ 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 = 203.253390 - 0: The maximum resident set size (KB) = 898424 - -Test 104 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_restart_dyn32_phy32 -Checking test 105 rap_restart_dyn32_phy32 results .... + 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.798955 + 0: The maximum resident set size (KB) = 901684 + +Test 107 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_restart_dyn32_phy32 +Checking test 108 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 = 277.519162 - 0: The maximum resident set size (KB) = 943160 - -Test 105 rap_restart_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_restart_dyn32_phy32 -Checking test 106 hrrr_control_restart_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.118567 + 0: The maximum resident set size (KB) = 949572 + +Test 108 rap_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 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 = 100.343143 - 0: The maximum resident set size (KB) = 855588 - -Test 106 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn64_phy32 -Checking test 107 rap_control_dyn64_phy32 results .... + 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.628680 + 0: The maximum resident set size (KB) = 871824 + +Test 109 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/rap_control_dyn64_phy32 +Checking test 110 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3673,115 +3821,115 @@ 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 = 241.253002 - 0: The maximum resident set size (KB) = 960080 - -Test 107 rap_control_dyn64_phy32 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_debug_dyn32_phy32 -Checking test 108 rap_control_debug_dyn32_phy32 results .... + 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 = 241.968170 + 0: The maximum resident set size (KB) = 970152 + +Test 110 rap_control_dyn64_phy32 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.917573 - 0: The maximum resident set size (KB) = 1058452 + 0: The total amount of wall time = 271.132718 + 0: The maximum resident set size (KB) = 1061032 -Test 108 rap_control_debug_dyn32_phy32 PASS +Test 111 rap_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_debug_dyn32_phy32 -Checking test 109 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.686816 - 0: The maximum resident set size (KB) = 1055492 + 0: The total amount of wall time = 275.530967 + 0: The maximum resident set size (KB) = 1059076 -Test 109 hrrr_control_debug_dyn32_phy32 PASS +Test 112 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn64_phy32_debug -Checking test 110 rap_control_dyn64_phy32_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.892042 - 0: The maximum resident set size (KB) = 1108336 + 0: The total amount of wall time = 278.624643 + 0: The maximum resident set size (KB) = 1099248 -Test 110 rap_control_dyn64_phy32_debug PASS +Test 113 rap_control_dyn64_phy32_debug PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm -Checking test 111 hafs_regional_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 219.755309 - 0: The maximum resident set size (KB) = 1022796 + 0: The total amount of wall time = 243.058819 + 0: The maximum resident set size (KB) = 1047660 -Test 111 hafs_regional_atm PASS +Test 114 hafs_regional_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_thompson_gfdlsf -Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 319.746288 - 0: The maximum resident set size (KB) = 1400408 + 0: The total amount of wall time = 311.766889 + 0: The maximum resident set size (KB) = 1421872 -Test 112 hafs_regional_atm_thompson_gfdlsf PASS +Test 115 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_ocn -Checking test 113 hafs_regional_atm_ocn results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 362.126443 - 0: The maximum resident set size (KB) = 1193300 + 0: The total amount of wall time = 377.388305 + 0: The maximum resident set size (KB) = 1221284 -Test 113 hafs_regional_atm_ocn PASS +Test 116 hafs_regional_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_wav -Checking test 114 hafs_regional_atm_wav results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 724.416809 - 0: The maximum resident set size (KB) = 1235572 + 0: The total amount of wall time = 739.948704 + 0: The maximum resident set size (KB) = 1245712 -Test 114 hafs_regional_atm_wav PASS +Test 117 hafs_regional_atm_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_ocn_wav -Checking test 115 hafs_regional_atm_ocn_wav results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 823.215567 - 0: The maximum resident set size (KB) = 1249128 + 0: The total amount of wall time = 842.396614 + 0: The maximum resident set size (KB) = 1271812 -Test 115 hafs_regional_atm_ocn_wav PASS +Test 118 hafs_regional_atm_ocn_wav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_1nest_atm -Checking test 116 hafs_regional_1nest_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.113046 - 0: The maximum resident set size (KB) = 496220 + 0: The total amount of wall time = 317.971289 + 0: The maximum resident set size (KB) = 504336 -Test 116 hafs_regional_1nest_atm PASS +Test 119 hafs_regional_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_telescopic_2nests_atm -Checking test 117 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 357.096568 - 0: The maximum resident set size (KB) = 511136 + 0: The total amount of wall time = 367.228937 + 0: The maximum resident set size (KB) = 510680 -Test 117 hafs_regional_telescopic_2nests_atm PASS +Test 120 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_1nest_atm -Checking test 118 hafs_global_1nest_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.521975 - 0: The maximum resident set size (KB) = 342668 + 0: The total amount of wall time = 149.975081 + 0: The maximum resident set size (KB) = 350724 -Test 118 hafs_global_1nest_atm PASS +Test 121 hafs_global_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_multiple_4nests_atm -Checking test 119 hafs_global_multiple_4nests_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_multiple_4nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 418.714147 - 0: The maximum resident set size (KB) = 418520 + 0: The total amount of wall time = 421.518938 + 0: The maximum resident set size (KB) = 424720 -Test 119 hafs_global_multiple_4nests_atm PASS +Test 122 hafs_global_multiple_4nests_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_specified_moving_1nest_atm -Checking test 120 hafs_regional_specified_moving_1nest_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 198.115055 - 0: The maximum resident set size (KB) = 509424 + 0: The total amount of wall time = 201.474729 + 0: The maximum resident set size (KB) = 516984 -Test 120 hafs_regional_specified_moving_1nest_atm PASS +Test 123 hafs_regional_specified_moving_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm -Checking test 121 hafs_regional_storm_following_1nest_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 187.555077 - 0: The maximum resident set size (KB) = 508300 + 0: The total amount of wall time = 189.580808 + 0: The maximum resident set size (KB) = 513024 -Test 121 hafs_regional_storm_following_1nest_atm PASS +Test 124 hafs_regional_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn -Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 218.101232 - 0: The maximum resident set size (KB) = 546832 + 0: The total amount of wall time = 221.560861 + 0: The maximum resident set size (KB) = 553680 -Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 125 hafs_regional_storm_following_1nest_atm_ocn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_storm_following_1nest_atm -Checking test 123 hafs_global_storm_following_1nest_atm results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_global_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.207078 - 0: The maximum resident set size (KB) = 363368 + 0: The total amount of wall time = 58.384428 + 0: The maximum resident set size (KB) = 362236 -Test 123 hafs_global_storm_following_1nest_atm PASS +Test 126 hafs_global_storm_following_1nest_atm PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 762.243071 - 0: The maximum resident set size (KB) = 576828 + 0: The total amount of wall time = 775.440847 + 0: The maximum resident set size (KB) = 575344 -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/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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,244 +4132,257 @@ 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.360983 - 0: The maximum resident set size (KB) = 626484 + 0: The total amount of wall time = 518.703481 + 0: The maximum resident set size (KB) = 612972 -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/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_docn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_docn -Checking test 126 hafs_regional_docn results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_docn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 334.977745 - 0: The maximum resident set size (KB) = 1213348 + 0: The total amount of wall time = 355.986546 + 0: The maximum resident set size (KB) = 1229496 -Test 126 hafs_regional_docn PASS +Test 129 hafs_regional_docn PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_docn_oisst -Checking test 127 hafs_regional_docn_oisst results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_docn_oisst +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 338.730417 - 0: The maximum resident set size (KB) = 1197128 + 0: The total amount of wall time = 364.262422 + 0: The maximum resident set size (KB) = 1204464 -Test 127 hafs_regional_docn_oisst PASS +Test 130 hafs_regional_docn_oisst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_datm_cdeps -Checking test 128 hafs_regional_datm_cdeps results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/hafs_regional_datm_cdeps +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 950.932613 - 0: The maximum resident set size (KB) = 1037260 + 0: The total amount of wall time = 960.998265 + 0: The maximum resident set size (KB) = 1036556 -Test 128 hafs_regional_datm_cdeps PASS +Test 131 hafs_regional_datm_cdeps PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_control_cfsr -Checking test 129 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 162.158073 - 0: The maximum resident set size (KB) = 1058372 + 0: The total amount of wall time = 152.790770 + 0: The maximum resident set size (KB) = 1056364 -Test 129 datm_cdeps_control_cfsr PASS +Test 132 datm_cdeps_control_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_restart_cfsr -Checking test 130 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.023799 - 0: The maximum resident set size (KB) = 1018252 + 0: The total amount of wall time = 93.126677 + 0: The maximum resident set size (KB) = 1009404 -Test 130 datm_cdeps_restart_cfsr PASS +Test 133 datm_cdeps_restart_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_control_gefs -Checking test 131 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 151.486894 - 0: The maximum resident set size (KB) = 963552 + 0: The total amount of wall time = 152.168725 + 0: The maximum resident set size (KB) = 968820 -Test 131 datm_cdeps_control_gefs PASS +Test 134 datm_cdeps_control_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_iau_gefs -Checking test 132 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_iau_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.574501 - 0: The maximum resident set size (KB) = 974400 + 0: The total amount of wall time = 152.961702 + 0: The maximum resident set size (KB) = 967872 -Test 132 datm_cdeps_iau_gefs PASS +Test 135 datm_cdeps_iau_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_stochy_gefs -Checking test 133 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_stochy_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.855545 - 0: The maximum resident set size (KB) = 959624 + 0: The total amount of wall time = 148.608916 + 0: The maximum resident set size (KB) = 967376 -Test 133 datm_cdeps_stochy_gefs PASS +Test 136 datm_cdeps_stochy_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_ciceC_cfsr -Checking test 134 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_ciceC_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 152.464666 - 0: The maximum resident set size (KB) = 1065824 + 0: The total amount of wall time = 153.744421 + 0: The maximum resident set size (KB) = 1054048 -Test 134 datm_cdeps_ciceC_cfsr PASS +Test 137 datm_cdeps_ciceC_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_bulk_cfsr -Checking test 135 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.021784 - 0: The maximum resident set size (KB) = 1060604 + 0: The total amount of wall time = 154.455782 + 0: The maximum resident set size (KB) = 1075492 -Test 135 datm_cdeps_bulk_cfsr PASS +Test 138 datm_cdeps_bulk_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_bulk_gefs -Checking test 136 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.490454 - 0: The maximum resident set size (KB) = 962572 + 0: The total amount of wall time = 150.567531 + 0: The maximum resident set size (KB) = 967736 -Test 136 datm_cdeps_bulk_gefs PASS +Test 139 datm_cdeps_bulk_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 + 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 = 406.339559 - 0: The maximum resident set size (KB) = 877456 + 0: The total amount of wall time = 400.495339 + 0: The maximum resident set size (KB) = 877548 -Test 137 datm_cdeps_mx025_cfsr PASS +Test 140 datm_cdeps_mx025_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 + 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 = 404.817972 - 0: The maximum resident set size (KB) = 929776 + 0: The total amount of wall time = 394.005184 + 0: The maximum resident set size (KB) = 924784 -Test 138 datm_cdeps_mx025_gefs PASS +Test 141 datm_cdeps_mx025_gefs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_multiple_files_cfsr -Checking test 139 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 160.258705 - 0: The maximum resident set size (KB) = 1065512 + 0: The total amount of wall time = 155.717363 + 0: The maximum resident set size (KB) = 1060548 -Test 139 datm_cdeps_multiple_files_cfsr PASS +Test 142 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_3072x1536_cfsr -Checking test 140 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 219.951498 - 0: The maximum resident set size (KB) = 2362280 + 0: The total amount of wall time = 221.521510 + 0: The maximum resident set size (KB) = 2361124 -Test 140 datm_cdeps_3072x1536_cfsr PASS +Test 143 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_gfs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_gfs -Checking test 141 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_gfs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.241832 - 0: The maximum resident set size (KB) = 2356528 + 0: The total amount of wall time = 222.169043 + 0: The maximum resident set size (KB) = 2367728 -Test 141 datm_cdeps_gfs PASS +Test 144 datm_cdeps_gfs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_debug_cfsr -Checking test 142 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_debug_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.883844 - 0: The maximum resident set size (KB) = 983392 + 0: The total amount of wall time = 443.299562 + 0: The maximum resident set size (KB) = 1000340 + +Test 145 datm_cdeps_debug_cfsr PASS -Test 142 datm_cdeps_debug_cfsr PASS +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_lnd_gswp3 -Checking test 143 datm_cdeps_lnd_gswp3 results .... + 0: The total amount of wall time = 154.687695 + 0: The maximum resident set size (KB) = 1058908 + +Test 146 datm_cdeps_control_cfsr_faster PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.985120 - 0: The maximum resident set size (KB) = 254432 + 0: The total amount of wall time = 6.539819 + 0: The maximum resident set size (KB) = 255596 -Test 143 datm_cdeps_lnd_gswp3 PASS +Test 147 datm_cdeps_lnd_gswp3 PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_lnd_gswp3_rst -Checking test 144 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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.491484 - 0: The maximum resident set size (KB) = 255852 + 0: The total amount of wall time = 13.362678 + 0: The maximum resident set size (KB) = 258656 -Test 144 datm_cdeps_lnd_gswp3_rst PASS +Test 148 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_atmlnd_sbs -Checking test 145 control_p8_atmlnd_sbs results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_p8_atmlnd_sbs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 @@ -4290,38 +4451,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,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 = 201.899674 - 0: The maximum resident set size (KB) = 1612708 + 0: The total amount of wall time = 203.754732 + 0: The maximum resident set size (KB) = 1608220 -Test 145 control_p8_atmlnd_sbs PASS +Test 149 control_p8_atmlnd_sbs PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_atmwav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_atmwav -Checking test 146 control_atmwav results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/control_atmwav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/control_atmwav +Checking test 150 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4354,49 +4515,49 @@ 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.540065 - 0: The maximum resident set size (KB) = 656056 + 0: The total amount of wall time = 87.224475 + 0: The maximum resident set size (KB) = 663668 -Test 146 control_atmwav PASS +Test 150 control_atmwav PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8 -Checking test 147 atmaero_control_p8 results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/atmaero_control_p8 +Checking test 151 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4406,48 +4567,48 @@ 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 = 226.018108 - 0: The maximum resident set size (KB) = 2970896 - -Test 147 atmaero_control_p8 PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8_rad -Checking test 148 atmaero_control_p8_rad results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.803551 + 0: The maximum resident set size (KB) = 2979792 + +Test 151 atmaero_control_p8 PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/atmaero_control_p8_rad +Checking test 152 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4457,48 +4618,48 @@ 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 = 277.136230 - 0: The maximum resident set size (KB) = 3045484 - -Test 148 atmaero_control_p8_rad PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8_rad_micro -Checking test 149 atmaero_control_p8_rad_micro results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.979276 + 0: The maximum resident set size (KB) = 3044776 + +Test 152 atmaero_control_p8_rad PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad_micro +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 @@ -4508,89 +4669,112 @@ 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 = 281.377342 - 0: The maximum resident set size (KB) = 3055256 - -Test 149 atmaero_control_p8_rad_micro PASS - - -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_atmaq -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_atmaq -Checking test 150 regional_atmaq results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.626244 + 0: The maximum resident set size (KB) = 3048384 + +Test 153 atmaero_control_p8_rad_micro PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 - 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 = 605.726437 - 0: The maximum resident set size (KB) = 1560336 + 0: The total amount of wall time = 613.116658 + 0: The maximum resident set size (KB) = 1558540 -Test 150 regional_atmaq PASS +Test 154 regional_atmaq PASS -baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_atmaq_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_atmaq_debug -Checking test 151 regional_atmaq_debug results .... +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/regional_atmaq_debug +Checking test 155 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 = 1325.723742 + 0: The maximum resident set size (KB) = 1517344 + +Test 155 regional_atmaq_debug PASS + + +baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230403/INTEL/regional_atmaq_faster +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_16161/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 = 1307.530987 - 0: The maximum resident set size (KB) = 1513136 + 0: The total amount of wall time = 573.931765 + 0: The maximum resident set size (KB) = 1563172 -Test 151 regional_atmaq_debug PASS +Test 156 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Tue Mar 21 12:10:57 UTC 2023 -Elapsed time: 02h:56m:53s. Have a nice day! +Tue Apr 4 01:22:09 UTC 2023 +Elapsed time: 01h:11m:07s. Have a nice day! From d708a895fdbc4f27d1e47cb9b8678f4f17c6448b Mon Sep 17 00:00:00 2001 From: dustinswales Date: Wed, 5 Apr 2023 11:35:30 -0600 Subject: [PATCH 13/17] [AutoRT] cheyenne.gnu Job Completed. on-behalf-of @NCAR --- tests/RegressionTests_cheyenne.gnu.log | 2076 ++++++++++++------------ 1 file changed, 1038 insertions(+), 1038 deletions(-) diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index afdac90699..eb0ae122d1 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,67 +1,67 @@ -Mon Mar 20 20:46:19 MDT 2023 +Wed Apr 5 11:01:14 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 401 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 859 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 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 1089 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 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 676 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 367 seconds. -DAPP=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 309 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_c48 +Compile 001 elapsed time 394 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 884 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 209 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 371 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1102 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 869 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 882 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 653 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 584 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 381 seconds. -DAPP=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 313 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 820.115362 -0:The maximum resident set size (KB) = 675820 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.141152 +0:The maximum resident set size (KB) = 681216 Test 001 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.198476 -0:The maximum resident set size (KB) = 442564 +0:The total amount of wall time = 179.186751 +0:The maximum resident set size (KB) = 442604 Test 002 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_ras +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.718753 -0:The maximum resident set size (KB) = 461200 +0:The total amount of wall time = 297.796182 +0:The maximum resident set size (KB) = 452096 Test 003 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.818581 -0:The maximum resident set size (KB) = 1235192 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.882962 +0:The maximum resident set size (KB) = 1225708 Test 004 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 715.918508 -0:The maximum resident set size (KB) = 791816 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.918915 +0:The maximum resident set size (KB) = 791776 Test 005 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 725.728149 -0:The maximum resident set size (KB) = 791908 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.634141 +0:The maximum resident set size (KB) = 791284 Test 006 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 663.793881 -0:The maximum resident set size (KB) = 864028 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.502326 +0:The maximum resident set size (KB) = 864120 Test 007 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 357.227737 -0:The maximum resident set size (KB) = 540080 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.705414 +0:The maximum resident set size (KB) = 539688 Test 008 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 707.806625 -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 = 714.193631 +0:The maximum resident set size (KB) = 791696 Test 009 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 743.114300 -0:The maximum resident set size (KB) = 791672 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.130493 +0:The maximum resident set size (KB) = 791048 Test 010 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 528.852698 -0:The maximum resident set size (KB) = 539396 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.613486 +0:The maximum resident set size (KB) = 543968 Test 011 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 710.785487 -0:The maximum resident set size (KB) = 789268 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.993509 +0:The maximum resident set size (KB) = 789276 Test 012 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 642.039348 -0:The maximum resident set size (KB) = 859088 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.450494 +0:The maximum resident set size (KB) = 858860 Test 013 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 687.122060 -0:The maximum resident set size (KB) = 789320 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.601385 +0:The maximum resident set size (KB) = 788676 Test 014 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 511.657160 -0:The maximum resident set size (KB) = 535516 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.880593 +0:The maximum resident set size (KB) = 540032 Test 015 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_v1beta +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 698.414414 -0:The maximum resident set size (KB) = 788684 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.519584 +0:The maximum resident set size (KB) = 788664 Test 016 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.390551 -0:The maximum resident set size (KB) = 606912 +0:The total amount of wall time = 203.992251 +0:The maximum resident set size (KB) = 606820 Test 017 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.774895 -0:The maximum resident set size (KB) = 621044 +0:The total amount of wall time = 220.842095 +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/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.551313 -0:The maximum resident set size (KB) = 609676 +0:The total amount of wall time = 203.899655 +0:The maximum resident set size (KB) = 609960 Test 019 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.940282 -0:The maximum resident set size (KB) = 628076 +0:The total amount of wall time = 130.605984 +0:The maximum resident set size (KB) = 629076 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.357511 -0:The maximum resident set size (KB) = 497400 +0:The total amount of wall time = 88.645900 +0:The maximum resident set size (KB) = 494956 Test 021 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/regional_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/regional_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.896042 -0:The maximum resident set size (KB) = 570512 +0:The total amount of wall time = 483.062399 +0:The maximum resident set size (KB) = 570352 Test 022 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.112466 -0:The maximum resident set size (KB) = 814500 +0:The total amount of wall time = 150.475640 +0:The maximum resident set size (KB) = 808808 Test 023 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.088678 -0:The maximum resident set size (KB) = 809280 +0:The total amount of wall time = 147.877959 +0:The maximum resident set size (KB) = 804756 Test 024 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_diag_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.693058 -0:The maximum resident set size (KB) = 897676 +0:The total amount of wall time = 158.613286 +0:The maximum resident set size (KB) = 891996 Test 025 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_noah_sfcdiff_cires_ugwp_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 238.731784 -0:The maximum resident set size (KB) = 812992 +0:The total amount of wall time = 239.215367 +0:The maximum resident set size (KB) = 807308 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_progcld_thompson_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_progcld_thompson_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.637748 -0:The maximum resident set size (KB) = 814544 +0:The total amount of wall time = 152.120772 +0:The maximum resident set size (KB) = 808920 Test 027 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_v1beta_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_v1beta_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.575664 -0:The maximum resident set size (KB) = 809132 +0:The total amount of wall time = 150.053380 +0:The maximum resident set size (KB) = 804208 Test 028 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_ras_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_ras_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.086497 -0:The maximum resident set size (KB) = 449688 +0:The total amount of wall time = 85.601608 +0:The maximum resident set size (KB) = 449488 Test 029 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_stochy_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_stochy_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.230445 -0:The maximum resident set size (KB) = 444196 +0:The total amount of wall time = 93.410816 +0:The maximum resident set size (KB) = 441792 Test 030 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.044411 -0:The maximum resident set size (KB) = 1226824 +0:The total amount of wall time = 95.825427 +0:The maximum resident set size (KB) = 1224932 Test 031 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_hrrr_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 385.108825 -0:The maximum resident set size (KB) = 614060 +0:The total amount of wall time = 391.493300 +0:The maximum resident set size (KB) = 613884 Test 032 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_radar_tten_warm_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.726812 -0:The maximum resident set size (KB) = 617080 +0:The total amount of wall time = 392.171819 +0:The maximum resident set size (KB) = 616876 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_wam_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/control_wam_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.182987 -0:The maximum resident set size (KB) = 185804 +0:The total amount of wall time = 146.415451 +0:The maximum resident set size (KB) = 184780 Test 034 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.740932 -0:The maximum resident set size (KB) = 677948 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.823724 +0:The maximum resident set size (KB) = 673260 Test 035 rap_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 348.865917 -0:The maximum resident set size (KB) = 676092 + 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 = 352.033838 +0:The maximum resident set size (KB) = 671624 Test 036 hrrr_control_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.549075 -0:The maximum resident set size (KB) = 722952 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.997431 +0:The maximum resident set size (KB) = 719028 Test 037 rap_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_2threads_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 319.915001 -0:The maximum resident set size (KB) = 715468 + 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 = 320.988357 +0:The maximum resident set size (KB) = 715648 Test 038 hrrr_control_2threads_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_decomp_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 349.188111 -0:The maximum resident set size (KB) = 675504 + 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 = 349.349105 +0:The maximum resident set size (KB) = 670536 Test 039 hrrr_control_decomp_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 515.131708 -0:The maximum resident set size (KB) = 516232 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.619881 +0:The maximum resident set size (KB) = 511360 Test 040 rap_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_restart_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 176.703030 -0:The maximum resident set size (KB) = 513456 + 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.021801 +0:The maximum resident set size (KB) = 506916 Test 041 hrrr_control_restart_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_dyn64_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 522.955868 -0:The maximum resident set size (KB) = 698812 + 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 = 409.648192 +0:The maximum resident set size (KB) = 694020 Test 042 rap_control_dyn64_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.488515 -0:The maximum resident set size (KB) = 695644 +0:The total amount of wall time = 150.030471 +0:The maximum resident set size (KB) = 690888 Test 043 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_debug_dyn32_phy32 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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.270489 -0:The maximum resident set size (KB) = 692660 +0:The total amount of wall time = 150.366266 +0:The maximum resident set size (KB) = 687836 Test 044 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_dyn64_phy32_debug +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 183.802572 -0:The maximum resident set size (KB) = 715000 +0:The total amount of wall time = 156.226587 +0:The maximum resident set size (KB) = 711328 Test 045 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 534.776699 -0:The maximum resident set size (KB) = 3160004 +0:The total amount of wall time = 500.180367 +0:The maximum resident set size (KB) = 3161580 Test 046 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 245.436939 -0:The maximum resident set size (KB) = 1249568 +0:The total amount of wall time = 245.169738 +0:The maximum resident set size (KB) = 1239872 Test 047 cpld_control_nowave_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/cpld_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 274.828794 -0:The maximum resident set size (KB) = 3177860 +0:The total amount of wall time = 278.109284 +0:The maximum resident set size (KB) = 3178112 Test 048 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_52467/datm_cdeps_control_cfsr +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/GNU/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_37244/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 = 180.134869 -0:The maximum resident set size (KB) = 673784 +0:The total amount of wall time = 179.813052 +0:The maximum resident set size (KB) = 673576 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Mon Mar 20 21:22:13 MDT 2023 -Elapsed time: 00h:35m:54s. Have a nice day! +Wed Apr 5 11:35:27 MDT 2023 +Elapsed time: 00h:34m:13s. Have a nice day! From c59faf98ec47927987e41b2b5f7854b3ae56b944 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 6 Apr 2023 12:59:39 -0400 Subject: [PATCH 14/17] temporarily increase compilation wallclock time on Cheyenne --- tests/fv3_conf/compile_qsub.IN_cheyenne | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index c35a0d21b2..71e63be8c7 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -5,7 +5,7 @@ #PBS -A @[ACCNR] #PBS -q @[QUEUE] #PBS -l select=1:ncpus=8:mpiprocs=1 -#PBS -l walltime=00:30:00 +#PBS -l walltime=00:60:00 set -eux From 3f53ca53eb16a81e1ce7bebc7b3c34761dc30eff Mon Sep 17 00:00:00 2001 From: dustinswales Date: Thu, 6 Apr 2023 13:55:40 -0600 Subject: [PATCH 15/17] [AutoRT] cheyenne.intel Job Completed. on-behalf-of @NCAR --- tests/RegressionTests_cheyenne.intel.log | 5160 +++++++++++----------- 1 file changed, 2636 insertions(+), 2524 deletions(-) diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index a385201ee8..c7eeb7a3ae 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,38 +1,42 @@ -Fri Mar 24 12:16:28 MDT 2023 +Thu Apr 6 12:36:21 MDT 2023 Start Regression test -Compile 001 elapsed time 1394 seconds. -DAPP=S2SWA -D32BIT=ON -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 1392 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 484 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1101 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 1092 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1055 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_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 999 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 946 seconds. -DAPP=ATM -DCCPP_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 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 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 013 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 014 elapsed time 838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 836 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 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 017 elapsed time 288 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 371 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_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 1587 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_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 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 022 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 222 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 114 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 945 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_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 1003 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 028 elapsed time 890 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 325 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/NCAR/main-20230316/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_p8_mixedmode +Compile 001 elapsed time 1391 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1402 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1391 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 495 seconds. -DAPP=S2SWA -DDEBUG=ON -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 1093 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 1097 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1854 seconds. -DAPP=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 1037 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_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 1004 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 819 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 417 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_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 282 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 837 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 842 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 291 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 368 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_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 1579 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_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 1135 seconds. -DAPP=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 443 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 025 elapsed time 225 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 026 elapsed time 445 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 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 1000 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 030 elapsed time 898 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 031 elapsed time 901 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 032 elapsed time 327 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 033 elapsed time 1044 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/NCAR/main-20230403/INTEL/cpld_control_p8_mixedmode +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_p8_mixedmode Checking test 001 cpld_control_p8_mixedmode results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -59,52 +63,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 = 317.749514 -0:The maximum resident set size (KB) = 2698744 +0:The total amount of wall time = 324.806027 +0:The maximum resident set size (KB) = 2698372 Test 001 cpld_control_p8_mixedmode PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_gfsv17 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_gfsv17 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_gfsv17 Checking test 002 cpld_control_gfsv17 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -130,52 +134,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 = 283.293322 -0:The maximum resident set size (KB) = 1437696 +0:The total amount of wall time = 282.018163 +0:The maximum resident set size (KB) = 1437952 Test 002 cpld_control_gfsv17 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_p8 Checking test 003 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -202,52 +206,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 = 321.874589 -0:The maximum resident set size (KB) = 2716556 +0:The total amount of wall time = 323.030731 +0:The maximum resident set size (KB) = 2716692 Test 003 cpld_control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_restart_p8 Checking test 004 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,52 +266,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 = 185.165747 -0:The maximum resident set size (KB) = 2577420 +0:The total amount of wall time = 186.959128 +0:The maximum resident set size (KB) = 2577544 Test 004 cpld_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_2threads_p8 Checking test 005 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,52 +326,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 = 255.374946 -0:The maximum resident set size (KB) = 3177996 +0:The total amount of wall time = 259.636118 +0:The maximum resident set size (KB) = 3175656 Test 005 cpld_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_decomp_p8 Checking test 006 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -382,52 +386,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 = 321.427434 -0:The maximum resident set size (KB) = 2720512 +0:The total amount of wall time = 323.371835 +0:The maximum resident set size (KB) = 2721504 Test 006 cpld_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_mpi_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_mpi_p8 Checking test 007 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -442,52 +446,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 = 280.054976 -0:The maximum resident set size (KB) = 2682636 +0:The total amount of wall time = 277.688070 +0:The maximum resident set size (KB) = 2682800 Test 007 cpld_mpi_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_ciceC_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_ciceC_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_ciceC_p8 Checking test 008 cpld_control_ciceC_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -514,52 +518,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 = 320.675039 -0:The maximum resident set size (KB) = 2716428 +0:The total amount of wall time = 324.676131 +0:The maximum resident set size (KB) = 2716420 Test 008 cpld_control_ciceC_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_c192_p8 Checking test 009 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -574,52 +578,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 = 637.469591 -0:The maximum resident set size (KB) = 3347996 +0:The total amount of wall time = 615.929356 +0:The maximum resident set size (KB) = 3348168 Test 009 cpld_control_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_restart_c192_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_restart_c192_p8 Checking test 010 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -634,52 +638,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 = 395.256960 -0:The maximum resident set size (KB) = 3272032 +0:The total amount of wall time = 402.432500 +0:The maximum resident set size (KB) = 3271392 Test 010 cpld_restart_c192_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_noaero_p8 Checking test 011 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -705,52 +709,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 = 285.325785 -0:The maximum resident set size (KB) = 1436448 +0:The total amount of wall time = 297.076534 +0:The maximum resident set size (KB) = 1436460 Test 011 cpld_control_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_nowave_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_c96_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 +780,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 = 194.797303 -0:The maximum resident set size (KB) = 1452300 +0:The total amount of wall time = 195.103021 +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/NCAR/main-20230316/INTEL/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_debug_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_debug_p8 Checking test 013 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -834,52 +838,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 = 479.771359 -0:The maximum resident set size (KB) = 2788028 +0:The total amount of wall time = 474.842913 +0:The maximum resident set size (KB) = 2788328 Test 013 cpld_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_debug_noaero_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_debug_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_debug_noaero_p8 Checking test 014 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -893,52 +897,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 = 349.137447 -0:The maximum resident set size (KB) = 1460576 +0:The total amount of wall time = 350.943830 +0:The maximum resident set size (KB) = 1460616 Test 014 cpld_debug_noaero_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_noaero_p8_agrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 +968,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 = 252.417787 -0:The maximum resident set size (KB) = 1455888 +0:The total amount of wall time = 255.026365 +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/NCAR/main-20230316/INTEL/cpld_control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_control_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_control_c48 Checking test 016 cpld_control_c48 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1021,50 +1025,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.218913 -0:The maximum resident set size (KB) = 2580132 +0:The total amount of wall time = 607.502535 +0:The maximum resident set size (KB) = 2580492 Test 016 cpld_control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_warmstart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_warmstart_c48 Checking test 017 cpld_warmstart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1078,50 +1082,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.833338 +0:The total amount of wall time = 161.746171 0:The maximum resident set size (KB) = 2598868 Test 017 cpld_warmstart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_restart_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/cpld_restart_c48 Checking test 018 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1135,50 +1139,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 = 83.433681 -0:The maximum resident set size (KB) = 2015432 +0:The total amount of wall time = 84.691093 +0:The maximum resident set size (KB) = 2015548 Test 018 cpld_restart_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1205,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 = 144.212118 +0:The total amount of wall time = 144.418797 0:The maximum resident set size (KB) = 456804 Test 019 control_CubedSphereGrid PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_parallel +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 ............ALT CHECK......OK -0:The total amount of wall time = 142.022219 -0:The maximum resident set size (KB) = 456840 +0:The total amount of wall time = 140.257600 +0:The maximum resident set size (KB) = 456924 Test 020 control_CubedSphereGrid_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_latlon -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_latlon +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_latlon +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1237,78 +1241,78 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.529694 -0:The maximum resident set size (KB) = 456724 +0:The total amount of wall time = 144.527195 +0:The maximum resident set size (KB) = 456784 Test 021 control_latlon PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wrtGauss_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_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 Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.526261 -0:The maximum resident set size (KB) = 456876 +0:The total amount of wall time = 148.535130 +0:The maximum resident set size (KB) = 456716 Test 022 control_wrtGauss_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c48 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 452.268355 -0:The maximum resident set size (KB) = 628896 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.579874 +0:The maximum resident set size (KB) = 628884 Test 023 control_c48 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c192 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c192 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_c192 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1319,14 +1323,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 603.631478 -0:The maximum resident set size (KB) = 557012 +0:The total amount of wall time = 594.407286 +0:The maximum resident set size (KB) = 557092 Test 024 control_c192 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c384 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c384 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_c384 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1337,14 +1341,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 595.490510 -0:The maximum resident set size (KB) = 856988 +0:The total amount of wall time = 602.570972 +0:The maximum resident set size (KB) = 889072 Test 025 control_c384 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c384gdas -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c384gdas +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_c384gdas +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1354,47 +1358,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 = 519.773681 -0:The maximum resident set size (KB) = 991076 + 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 = 526.081403 +0:The maximum resident set size (KB) = 1014748 Test 026 control_c384gdas PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_stochy +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1405,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.149576 -0:The maximum resident set size (KB) = 455000 +0:The total amount of wall time = 98.560281 +0:The maximum resident set size (KB) = 454976 Test 027 control_stochy PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_stochy_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.198506 -0:The maximum resident set size (KB) = 222688 +0:The total amount of wall time = 52.685445 +0:The maximum resident set size (KB) = 225964 Test 028 control_stochy_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_lndp +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1437,14 +1441,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 89.595890 -0:The maximum resident set size (KB) = 456632 +0:The total amount of wall time = 91.041287 +0:The maximum resident set size (KB) = 456488 Test 029 control_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_iovr4 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_iovr4 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_iovr4 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_iovr4 Checking test 030 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1459,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.669882 -0:The maximum resident set size (KB) = 456680 +0:The total amount of wall time = 147.338230 +0:The maximum resident set size (KB) = 456620 Test 030 control_iovr4 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_iovr5 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_iovr5 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_iovr5 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_iovr5 Checking test 031 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1481,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.045570 -0:The maximum resident set size (KB) = 456784 +0:The total amount of wall time = 147.311992 +0:The maximum resident set size (KB) = 456724 Test 031 control_iovr5 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_p8 Checking test 032 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1502,47 +1506,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 = 180.592947 -0:The maximum resident set size (KB) = 1422856 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.456556 +0:The maximum resident set size (KB) = 1422900 Test 032 control_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_lndp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8_lndp +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_p8_lndp Checking test 033 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1561,60 +1565,60 @@ Checking test 033 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 335.690981 -0:The maximum resident set size (KB) = 1423132 +0:The total amount of wall time = 330.670231 +0:The maximum resident set size (KB) = 1423128 Test 033 control_p8_lndp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_restart_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 95.201965 -0:The maximum resident set size (KB) = 579892 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.392636 +0:The maximum resident set size (KB) = 582404 Test 034 control_restart_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_decomp_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_decomp_p8 Checking test 035 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1624,47 +1628,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.811011 -0:The maximum resident set size (KB) = 1417068 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.205970 +0:The maximum resident set size (KB) = 1417076 Test 035 control_decomp_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_2threads_p8 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_2threads_p8 Checking test 036 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1674,47 +1678,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 = 175.082209 -0:The maximum resident set size (KB) = 1505032 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.660251 +0:The maximum resident set size (KB) = 1508004 Test 036 control_2threads_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_rrtmgp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8_rrtmgp +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_p8_rrtmgp Checking test 037 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1728,47 +1732,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 = 255.284129 -0:The maximum resident set size (KB) = 1480716 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.603677 +0:The maximum resident set size (KB) = 1480728 Test 037 control_p8_rrtmgp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/merra2_thompson -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/merra2_thompson +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/merra2_thompson +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/merra2_thompson Checking test 038 merra2_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1782,47 +1786,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 = 205.968129 -0:The maximum resident set size (KB) = 1429760 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.444729 +0:The maximum resident set size (KB) = 1429784 Test 038 merra2_thompson PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_control Checking test 039 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1833,28 +1837,28 @@ Checking test 039 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.075326 -0:The maximum resident set size (KB) = 603140 +0:The total amount of wall time = 344.328871 +0:The maximum resident set size (KB) = 603168 Test 039 regional_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 172.619129 -0:The maximum resident set size (KB) = 591152 +0:The total amount of wall time = 175.535940 +0:The maximum resident set size (KB) = 593528 Test 040 regional_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_decomp Checking test 041 regional_decomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1865,14 +1869,14 @@ Checking test 041 regional_decomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 346.559201 -0:The maximum resident set size (KB) = 594964 +0:The total amount of wall time = 359.589162 +0:The maximum resident set size (KB) = 597204 Test 041 regional_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_2threads Checking test 042 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1883,14 +1887,14 @@ Checking test 042 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 201.570956 -0:The maximum resident set size (KB) = 601872 +0:The total amount of wall time = 205.724801 +0:The maximum resident set size (KB) = 609972 Test 042 regional_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_noquilt -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_noquilt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_noquilt +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_noquilt Checking test 043 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1898,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 = 363.177303 -0:The maximum resident set size (KB) = 598008 +0:The total amount of wall time = 366.978140 +0:The maximum resident set size (KB) = 597660 Test 043 regional_noquilt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_netcdf_parallel +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_netcdf_parallel +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_netcdf_parallel Checking test 044 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf006.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf006.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 = 339.016903 -0:The maximum resident set size (KB) = 588436 +0:The total amount of wall time = 335.705315 +0:The maximum resident set size (KB) = 595016 Test 044 regional_netcdf_parallel PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_2dwrtdecomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_2dwrtdecomp Checking test 045 regional_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1930,14 +1934,14 @@ Checking test 045 regional_2dwrtdecomp results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 337.280346 -0:The maximum resident set size (KB) = 603128 +0:The total amount of wall time = 340.099685 +0:The maximum resident set size (KB) = 603112 Test 045 regional_2dwrtdecomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/fv3_regional_wofs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_wofs +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/fv3_regional_wofs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_wofs Checking test 046 regional_wofs results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1948,14 +1952,14 @@ Checking test 046 regional_wofs results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 428.042907 -0:The maximum resident set size (KB) = 270428 +0:The total amount of wall time = 414.603039 +0:The maximum resident set size (KB) = 274468 Test 046 regional_wofs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_control Checking test 047 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1969,47 +1973,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 = 471.789263 -0:The maximum resident set size (KB) = 826272 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.563809 +0:The maximum resident set size (KB) = 826424 Test 047 rap_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_spp_sppt_shum_skeb +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_spp_sppt_shum_skeb Checking test 048 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -2020,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 = 325.004388 -0:The maximum resident set size (KB) = 949312 +0:The total amount of wall time = 328.326901 +0:The maximum resident set size (KB) = 949340 Test 048 regional_spp_sppt_shum_skeb PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_decomp Checking test 049 rap_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2041,47 +2045,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 = 503.886525 -0:The maximum resident set size (KB) = 823552 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.828039 +0:The maximum resident set size (KB) = 823664 Test 049 rap_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_2threads Checking test 050 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2095,93 +2099,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.275126 -0:The maximum resident set size (KB) = 892760 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.447391 +0:The maximum resident set size (KB) = 892692 Test 050 rap_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 243.332886 -0:The maximum resident set size (KB) = 572176 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.728925 +0:The maximum resident set size (KB) = 572636 Test 051 rap_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_sfcdiff Checking test 052 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2195,47 +2199,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 = 470.418869 -0:The maximum resident set size (KB) = 826464 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.879932 +0:The maximum resident set size (KB) = 826508 Test 052 rap_sfcdiff PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_sfcdiff_decomp Checking test 053 rap_sfcdiff_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2249,93 +2253,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 = 491.288708 -0:The maximum resident set size (KB) = 825420 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.004526 +0:The maximum resident set size (KB) = 825444 Test 053 rap_sfcdiff_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 354.555467 -0:The maximum resident set size (KB) = 569448 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.788180 +0:The maximum resident set size (KB) = 570004 Test 054 rap_sfcdiff_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/hrrr_control Checking test 055 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2349,47 +2353,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 = 454.702621 -0:The maximum resident set size (KB) = 821256 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.162172 +0:The maximum resident set size (KB) = 821364 Test 055 hrrr_control PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_decomp +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/hrrr_control_decomp Checking test 056 hrrr_control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2403,47 +2407,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 = 476.965306 -0:The maximum resident set size (KB) = 820444 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.257018 +0:The maximum resident set size (KB) = 820360 Test 056 hrrr_control_decomp PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/hrrr_control_2threads Checking test 057 hrrr_control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2457,93 +2461,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 = 429.205195 -0:The maximum resident set size (KB) = 887572 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.146874 +0:The maximum resident set size (KB) = 887788 Test 057 hrrr_control_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_restart +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.839843 -0:The maximum resident set size (KB) = 568352 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.676471 +0:The maximum resident set size (KB) = 568660 Test 058 hrrr_control_restart PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1beta +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_v1beta +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_v1beta Checking test 059 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2557,47 +2561,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.631701 -0:The maximum resident set size (KB) = 819824 + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.018745 +0:The maximum resident set size (KB) = 819972 Test 059 rrfs_v1beta PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1nssl +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_v1nssl Checking test 060 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2612,14 +2616,14 @@ Checking test 060 rrfs_v1nssl results .... Comparing GFSPRS.GrbF09 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 576.067151 -0:The maximum resident set size (KB) = 508184 +0:The total amount of wall time = 575.660351 +0:The maximum resident set size (KB) = 508248 Test 060 rrfs_v1nssl PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1nssl_nohailnoccn +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_v1nssl_nohailnoccn Checking test 061 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK @@ -2634,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 = 556.941154 -0:The maximum resident set size (KB) = 501236 +0:The total amount of wall time = 557.606832 +0:The maximum resident set size (KB) = 501252 Test 061 rrfs_v1nssl_nohailnoccn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_conus13km_hrrr_warm Checking test 062 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2650,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 = 128.197466 -0:The maximum resident set size (KB) = 639100 +0:The total amount of wall time = 125.610222 +0:The maximum resident set size (KB) = 639116 Test 062 rrfs_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_smoke_conus13km_hrrr_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_smoke_conus13km_hrrr_warm Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2666,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.548301 -0:The maximum resident set size (KB) = 652992 +0:The total amount of wall time = 144.225335 +0:The maximum resident set size (KB) = 652940 Test 063 rrfs_smoke_conus13km_hrrr_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_radar_tten_warm +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_conus13km_radar_tten_warm Checking test 064 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2682,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 = 129.900876 -0:The maximum resident set size (KB) = 641268 +0:The total amount of wall time = 128.281900 +0:The maximum resident set size (KB) = 641156 Test 064 rrfs_conus13km_radar_tten_warm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rrfs_conus13km_hrrr_warm_2threads Checking test 065 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2698,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 = 84.717616 -0:The maximum resident set size (KB) = 655336 +0:The total amount of wall time = 82.137649 +0:The maximum resident set size (KB) = 655504 Test 065 rrfs_conus13km_hrrr_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_radar_tten_warm_2threads +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 +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.818067 -0:The maximum resident set size (KB) = 658404 +0:The total amount of wall time = 81.956850 +0:The maximum resident set size (KB) = 658436 Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmg -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmg +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_csawmg +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_csawmg Checking test 067 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2732,14 +2736,14 @@ Checking test 067 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.767435 -0:The maximum resident set size (KB) = 529032 +0:The total amount of wall time = 395.997413 +0:The maximum resident set size (KB) = 529028 Test 067 control_csawmg PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmgt -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmgt +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_csawmgt +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_csawmgt Checking test 068 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2750,14 +2754,14 @@ Checking test 068 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 393.472513 -0:The maximum resident set size (KB) = 529044 +0:The total amount of wall time = 392.503161 +0:The maximum resident set size (KB) = 528960 Test 068 control_csawmgt PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_ras +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_ras +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_ras Checking test 069 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2768,55 +2772,127 @@ Checking test 069 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 204.424491 -0:The maximum resident set size (KB) = 487840 +0:The total amount of wall time = 204.788935 +0:The maximum resident set size (KB) = 487744 Test 069 control_ras PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wam -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wam +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_wam +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_wam Checking test 070 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 129.763090 -0:The maximum resident set size (KB) = 204220 +0:The total amount of wall time = 129.512954 +0:The maximum resident set size (KB) = 205296 Test 070 control_wam PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm_debug -Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8_faster +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 + 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.633433 +0:The maximum resident set size (KB) = 1422712 + +Test 071 control_p8_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_control_faster +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 320.953187 +0:The maximum resident set size (KB) = 602924 + +Test 072 regional_control_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_conus13km_hrrr_warm_debugs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.886155 -0:The maximum resident set size (KB) = 668320 +0:The total amount of wall time = 764.807555 +0:The maximum resident set size (KB) = 672140 -Test 071 rrfs_conus13km_hrrr_warm_debug PASS +Test 073 rrfs_conus13km_hrrr_warm_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 762.879134 -0:The maximum resident set size (KB) = 670740 +0:The total amount of wall time = 766.983038 +0:The maximum resident set size (KB) = 673952 -Test 072 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/NCAR/main-20230316/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid_debug -Checking test 073 control_CubedSphereGrid_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_CubedSphereGrid_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -2842,335 +2918,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 = 174.857922 -0:The maximum resident set size (KB) = 621728 +0:The total amount of wall time = 175.342645 +0:The maximum resident set size (KB) = 621788 -Test 073 control_CubedSphereGrid_debug PASS +Test 075 control_CubedSphereGrid_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wrtGauss_netcdf_parallel_debug -Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 162.903316 -0:The maximum resident set size (KB) = 621364 +0:The total amount of wall time = 164.649415 +0:The maximum resident set size (KB) = 621476 -Test 074 control_wrtGauss_netcdf_parallel_debug PASS +Test 076 control_wrtGauss_netcdf_parallel_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_stochy_debug -Checking test 075 control_stochy_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_stochy_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 182.585868 -0:The maximum resident set size (KB) = 625100 +0:The total amount of wall time = 183.557833 +0:The maximum resident set size (KB) = 625192 -Test 075 control_stochy_debug PASS +Test 077 control_stochy_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_lndp_debug -Checking test 076 control_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_lndp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 164.125572 -0:The maximum resident set size (KB) = 627208 +0:The total amount of wall time = 166.478318 +0:The maximum resident set size (KB) = 627144 -Test 076 control_lndp_debug PASS +Test 078 control_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmg_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmg_debug -Checking test 077 control_csawmg_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_csawmg_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 257.788120 -0:The maximum resident set size (KB) = 671276 +0:The total amount of wall time = 255.899559 +0:The maximum resident set size (KB) = 671408 -Test 077 control_csawmg_debug PASS +Test 079 control_csawmg_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmgt_debug -Checking test 078 control_csawmgt_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_csawmgt_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 256.653048 -0:The maximum resident set size (KB) = 671036 +0:The total amount of wall time = 252.093022 +0:The maximum resident set size (KB) = 671120 -Test 078 control_csawmgt_debug PASS +Test 080 control_csawmgt_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_ras_debug -Checking test 079 control_ras_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_ras_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.298986 -0:The maximum resident set size (KB) = 632388 +0:The total amount of wall time = 166.672138 +0:The maximum resident set size (KB) = 632464 -Test 079 control_ras_debug PASS +Test 081 control_ras_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_diag_debug -Checking test 080 control_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.616847 -0:The maximum resident set size (KB) = 677908 +0:The total amount of wall time = 168.939401 +0:The maximum resident set size (KB) = 677892 -Test 080 control_diag_debug PASS +Test 082 control_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_debug_p8 -Checking test 081 control_debug_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.363942 -0:The maximum resident set size (KB) = 1444204 +0:The total amount of wall time = 184.209146 +0:The maximum resident set size (KB) = 1444248 -Test 081 control_debug_p8 PASS +Test 083 control_debug_p8 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_debug -Checking test 082 regional_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 1038.418634 -0:The maximum resident set size (KB) = 621192 +0:The total amount of wall time = 1039.034417 +0:The maximum resident set size (KB) = 629008 -Test 082 regional_debug PASS +Test 084 regional_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_debug -Checking test 083 rap_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 297.353508 -0:The maximum resident set size (KB) = 989700 +0:The total amount of wall time = 295.965697 +0:The maximum resident set size (KB) = 989780 -Test 083 rap_control_debug PASS +Test 085 rap_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_debug -Checking test 084 hrrr_control_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.112619 -0:The maximum resident set size (KB) = 988860 +0:The total amount of wall time = 291.202997 +0:The maximum resident set size (KB) = 988896 -Test 084 hrrr_control_debug PASS +Test 086 hrrr_control_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_unified_drag_suite_debug -Checking test 085 rap_unified_drag_suite_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.429464 -0:The maximum resident set size (KB) = 989904 +0:The total amount of wall time = 295.247653 +0:The maximum resident set size (KB) = 990120 -Test 085 rap_unified_drag_suite_debug PASS +Test 087 rap_unified_drag_suite_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_diag_debug -Checking test 086 rap_diag_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 316.602170 -0:The maximum resident set size (KB) = 1074188 +0:The total amount of wall time = 308.681712 +0:The maximum resident set size (KB) = 1074092 -Test 086 rap_diag_debug PASS +Test 088 rap_diag_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_cires_ugwp_debug -Checking test 087 rap_cires_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 304.119304 -0:The maximum resident set size (KB) = 988612 +0:The total amount of wall time = 302.482768 +0:The maximum resident set size (KB) = 988620 -Test 087 rap_cires_ugwp_debug PASS +Test 089 rap_cires_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_unified_ugwp_debug -Checking test 088 rap_unified_ugwp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 303.938516 -0:The maximum resident set size (KB) = 991852 +0:The total amount of wall time = 300.744403 +0:The maximum resident set size (KB) = 991988 -Test 088 rap_unified_ugwp_debug PASS +Test 090 rap_unified_ugwp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_lndp_debug -Checking test 089 rap_lndp_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_lndp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 302.359988 -0:The maximum resident set size (KB) = 990512 +0:The total amount of wall time = 298.013018 +0:The maximum resident set size (KB) = 990652 -Test 089 rap_lndp_debug PASS +Test 091 rap_lndp_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_flake_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_flake_debug -Checking test 090 rap_flake_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_flake_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.182396 -0:The maximum resident set size (KB) = 989888 +0:The total amount of wall time = 294.781688 +0:The maximum resident set size (KB) = 989896 -Test 090 rap_flake_debug PASS +Test 092 rap_flake_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_progcld_thompson_debug -Checking test 091 rap_progcld_thompson_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_progcld_thompson_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 298.576563 -0:The maximum resident set size (KB) = 989876 +0:The total amount of wall time = 295.803441 +0:The maximum resident set size (KB) = 989960 -Test 091 rap_progcld_thompson_debug PASS +Test 093 rap_progcld_thompson_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_noah_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_noah_debug -Checking test 092 rap_noah_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_noah_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 291.435788 -0:The maximum resident set size (KB) = 988524 +0:The total amount of wall time = 289.346560 +0:The maximum resident set size (KB) = 988340 -Test 092 rap_noah_debug PASS +Test 094 rap_noah_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff_debug -Checking test 093 rap_sfcdiff_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_sfcdiff_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 298.335052 -0:The maximum resident set size (KB) = 991240 +0:The total amount of wall time = 295.645792 +0:The maximum resident set size (KB) = 991392 -Test 093 rap_sfcdiff_debug PASS +Test 095 rap_sfcdiff_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 484.775687 -0:The maximum resident set size (KB) = 989508 +0:The total amount of wall time = 479.992846 +0:The maximum resident set size (KB) = 989516 -Test 094 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/NCAR/main-20230316/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1beta_debug -Checking test 095 rrfs_v1beta_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rrfs_v1beta_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 290.015798 -0:The maximum resident set size (KB) = 986376 +0:The total amount of wall time = 290.851252 +0:The maximum resident set size (KB) = 986524 -Test 095 rrfs_v1beta_debug PASS +Test 097 rrfs_v1beta_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wam_debug -Checking test 096 control_wam_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_wam_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.765796 -0:The maximum resident set size (KB) = 238036 +0:The total amount of wall time = 298.015502 +0:The maximum resident set size (KB) = 238952 -Test 096 control_wam_debug PASS +Test 098 control_wam_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3180,15 +3256,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 = 300.815529 -0:The maximum resident set size (KB) = 848140 +0:The total amount of wall time = 301.645644 +0:The maximum resident set size (KB) = 848292 -Test 097 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/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_dyn32_phy32 -Checking test 098 rap_control_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_control_dyn32_phy32 +Checking test 100 rap_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3201,48 +3277,48 @@ 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 = 388.770717 -0:The maximum resident set size (KB) = 707124 - -Test 098 rap_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_dyn32_phy32 -Checking test 099 hrrr_control_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.444687 +0:The maximum resident set size (KB) = 707168 + +Test 100 rap_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/hrrr_control_dyn32_phy32 +Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3255,48 +3331,48 @@ 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 = 205.344010 -0:The maximum resident set size (KB) = 705624 - -Test 099 hrrr_control_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_2threads_dyn32_phy32 -Checking test 100 rap_2threads_dyn32_phy32 results .... + 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.176588 +0:The maximum resident set size (KB) = 705560 + +Test 101 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_2threads_dyn32_phy32 +Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3309,48 +3385,48 @@ 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 = 378.917047 -0:The maximum resident set size (KB) = 757044 - -Test 100 rap_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_2threads_dyn32_phy32 -Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.749783 +0:The maximum resident set size (KB) = 757216 + +Test 102 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3363,48 +3439,48 @@ 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 = 201.733579 -0:The maximum resident set size (KB) = 758300 - -Test 101 hrrr_control_2threads_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_decomp_dyn32_phy32 -Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... + 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 = 202.755605 +0:The maximum resident set size (KB) = 758360 + +Test 103 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3417,140 +3493,140 @@ 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.420683 -0:The maximum resident set size (KB) = 703920 - -Test 102 hrrr_control_decomp_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_restart_dyn32_phy32 -Checking test 103 rap_restart_dyn32_phy32 results .... + 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.898161 +0:The maximum resident set size (KB) = 704116 + +Test 104 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 287.467686 -0:The maximum resident set size (KB) = 545104 - -Test 103 rap_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_restart_dyn32_phy32 -Checking test 104 hrrr_control_restart_dyn32_phy32 results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.786715 +0:The maximum resident set size (KB) = 544820 + +Test 105 rap_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 106.354542 -0:The maximum resident set size (KB) = 540668 - -Test 104 hrrr_control_restart_dyn32_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_dyn64_phy32 -Checking test 105 rap_control_dyn64_phy32 results .... + 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.759133 +0:The maximum resident set size (KB) = 537096 + +Test 106 hrrr_control_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/rap_control_dyn64_phy32 +Checking test 107 rap_control_dyn64_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf009.nc .........OK Comparing sfcf012.nc .........OK @@ -3563,115 +3639,115 @@ 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 = 267.394198 -0:The maximum resident set size (KB) = 726836 - -Test 105 rap_control_dyn64_phy32 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_debug_dyn32_phy32 -Checking test 106 rap_control_debug_dyn32_phy32 results .... + 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.722635 +0:The maximum resident set size (KB) = 726808 + +Test 107 rap_control_dyn64_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 290.837877 -0:The maximum resident set size (KB) = 876092 +0:The total amount of wall time = 291.052568 +0:The maximum resident set size (KB) = 876212 -Test 106 rap_control_debug_dyn32_phy32 PASS +Test 108 rap_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_debug_dyn32_phy32 -Checking test 107 hrrr_control_debug_dyn32_phy32 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.134152 -0:The maximum resident set size (KB) = 874392 +0:The total amount of wall time = 286.135442 +0:The maximum resident set size (KB) = 874412 -Test 107 hrrr_control_debug_dyn32_phy32 PASS +Test 109 hrrr_control_debug_dyn32_phy32 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_dyn64_phy32_debug -Checking test 108 rap_control_dyn64_phy32_debug results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/rap_control_debug_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 299.007261 -0:The maximum resident set size (KB) = 893676 +0:The total amount of wall time = 295.373442 +0:The maximum resident set size (KB) = 893464 -Test 108 rap_control_dyn64_phy32_debug PASS +Test 110 rap_control_dyn64_phy32_debug PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm -Checking test 109 hafs_regional_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 254.581388 -0:The maximum resident set size (KB) = 715432 +0:The total amount of wall time = 265.815479 +0:The maximum resident set size (KB) = 739768 -Test 109 hafs_regional_atm PASS +Test 111 hafs_regional_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_thompson_gfdlsf -Checking test 110 hafs_regional_atm_thompson_gfdlsf results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 277.240855 -0:The maximum resident set size (KB) = 1070620 +0:The total amount of wall time = 295.788737 +0:The maximum resident set size (KB) = 1091244 -Test 110 hafs_regional_atm_thompson_gfdlsf PASS +Test 112 hafs_regional_atm_thompson_gfdlsf PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_ocn -Checking test 111 hafs_regional_atm_ocn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3679,15 +3755,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 = 445.314218 -0:The maximum resident set size (KB) = 719216 +0:The total amount of wall time = 453.256290 +0:The maximum resident set size (KB) = 738544 -Test 111 hafs_regional_atm_ocn PASS +Test 113 hafs_regional_atm_ocn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_wav -Checking test 112 hafs_regional_atm_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_wav +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3695,15 +3771,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 = 1058.418292 -0:The maximum resident set size (KB) = 746912 +0:The total amount of wall time = 1078.596126 +0:The maximum resident set size (KB) = 766328 -Test 112 hafs_regional_atm_wav PASS +Test 114 hafs_regional_atm_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_ocn_wav -Checking test 113 hafs_regional_atm_ocn_wav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3713,29 +3789,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 = 1117.614954 -0:The maximum resident set size (KB) = 768200 +0:The total amount of wall time = 1113.504674 +0:The maximum resident set size (KB) = 789528 -Test 113 hafs_regional_atm_ocn_wav PASS +Test 115 hafs_regional_atm_ocn_wav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_1nest_atm -Checking test 114 hafs_regional_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_1nest_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 371.737316 -0:The maximum resident set size (KB) = 284372 +0:The total amount of wall time = 379.051859 +0:The maximum resident set size (KB) = 293340 -Test 114 hafs_regional_1nest_atm PASS +Test 116 hafs_regional_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_telescopic_2nests_atm -Checking test 115 hafs_regional_telescopic_2nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3743,29 +3819,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 = 422.935362 -0:The maximum resident set size (KB) = 304856 +0:The total amount of wall time = 419.060486 +0:The maximum resident set size (KB) = 310788 -Test 115 hafs_regional_telescopic_2nests_atm PASS +Test 117 hafs_regional_telescopic_2nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_global_1nest_atm -Checking test 116 hafs_global_1nest_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_global_1nest_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 169.969509 -0:The maximum resident set size (KB) = 202072 +0:The total amount of wall time = 169.611094 +0:The maximum resident set size (KB) = 206212 -Test 116 hafs_global_1nest_atm PASS +Test 118 hafs_global_1nest_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_global_multiple_4nests_atm -Checking test 117 hafs_global_multiple_4nests_atm results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3782,15 +3858,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 = 491.891860 -0:The maximum resident set size (KB) = 290424 +0:The total amount of wall time = 486.781475 +0:The maximum resident set size (KB) = 292576 -Test 117 hafs_global_multiple_4nests_atm PASS +Test 119 hafs_global_multiple_4nests_atm PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_regional_specified_moving_1nest_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3798,29 +3874,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 = 239.275723 -0:The maximum resident set size (KB) = 303412 +0:The total amount of wall time = 235.492101 +0:The maximum resident set size (KB) = 306708 -Test 118 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/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 225.795426 -0:The maximum resident set size (KB) = 303204 +0:The total amount of wall time = 222.724719 +0:The maximum resident set size (KB) = 306760 -Test 119 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/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3828,43 +3904,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 = 273.163180 -0:The maximum resident set size (KB) = 347148 +0:The total amount of wall time = 279.695143 +0:The maximum resident set size (KB) = 353604 -Test 120 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/NCAR/main-20230316/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_global_storm_following_1nest_atm +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 65.990258 -0:The maximum resident set size (KB) = 217056 +0:The total amount of wall time = 67.032371 +0:The maximum resident set size (KB) = 221916 -Test 121 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/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 819.505148 -0:The maximum resident set size (KB) = 378280 +0:The total amount of wall time = 823.632879 +0:The maximum resident set size (KB) = 387508 -Test 122 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/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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/NCAR/main-20230403/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -3874,244 +3950,257 @@ 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 = 788.446945 -0:The maximum resident set size (KB) = 413088 +0:The total amount of wall time = 841.757162 +0:The maximum resident set size (KB) = 417188 -Test 123 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/NCAR/main-20230316/INTEL/hafs_regional_docn -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_docn -Checking test 124 hafs_regional_docn results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_docn +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 379.027475 -0:The maximum resident set size (KB) = 734888 +0:The total amount of wall time = 392.737059 +0:The maximum resident set size (KB) = 754204 -Test 124 hafs_regional_docn PASS +Test 126 hafs_regional_docn PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_docn_oisst -Checking test 125 hafs_regional_docn_oisst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_docn_oisst +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 379.883614 -0:The maximum resident set size (KB) = 714456 +0:The total amount of wall time = 391.468110 +0:The maximum resident set size (KB) = 733652 -Test 125 hafs_regional_docn_oisst PASS +Test 127 hafs_regional_docn_oisst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_datm_cdeps -Checking test 126 hafs_regional_datm_cdeps results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/hafs_regional_datm_cdeps +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 1277.377478 -0:The maximum resident set size (KB) = 888020 +0:The total amount of wall time = 1276.950611 +0:The maximum resident set size (KB) = 887856 -Test 126 hafs_regional_datm_cdeps PASS +Test 128 hafs_regional_datm_cdeps PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_control_cfsr -Checking test 127 datm_cdeps_control_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.343920 -0:The maximum resident set size (KB) = 727772 +0:The total amount of wall time = 167.675335 +0:The maximum resident set size (KB) = 716696 -Test 127 datm_cdeps_control_cfsr PASS +Test 129 datm_cdeps_control_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_restart_cfsr -Checking test 128 datm_cdeps_restart_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.233397 -0:The maximum resident set size (KB) = 716000 +0:The total amount of wall time = 100.574665 +0:The maximum resident set size (KB) = 704860 -Test 128 datm_cdeps_restart_cfsr PASS +Test 130 datm_cdeps_restart_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_control_gefs -Checking test 129 datm_cdeps_control_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_gefs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.584914 -0:The maximum resident set size (KB) = 607440 +0:The total amount of wall time = 161.404197 +0:The maximum resident set size (KB) = 607484 -Test 129 datm_cdeps_control_gefs PASS +Test 131 datm_cdeps_control_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_iau_gefs -Checking test 130 datm_cdeps_iau_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_iau_gefs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 165.487074 -0:The maximum resident set size (KB) = 607496 +0:The total amount of wall time = 164.196793 +0:The maximum resident set size (KB) = 607464 -Test 130 datm_cdeps_iau_gefs PASS +Test 132 datm_cdeps_iau_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_stochy_gefs -Checking test 131 datm_cdeps_stochy_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_stochy_gefs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 166.339776 -0:The maximum resident set size (KB) = 607452 +0:The total amount of wall time = 164.630413 +0:The maximum resident set size (KB) = 607492 -Test 131 datm_cdeps_stochy_gefs PASS +Test 133 datm_cdeps_stochy_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_ciceC_cfsr -Checking test 132 datm_cdeps_ciceC_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_ciceC_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 169.634443 -0:The maximum resident set size (KB) = 728776 +0:The total amount of wall time = 168.713113 +0:The maximum resident set size (KB) = 716716 -Test 132 datm_cdeps_ciceC_cfsr PASS +Test 134 datm_cdeps_ciceC_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_bulk_cfsr -Checking test 133 datm_cdeps_bulk_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 163.471691 -0:The maximum resident set size (KB) = 716708 +0:The total amount of wall time = 167.672937 +0:The maximum resident set size (KB) = 727848 -Test 133 datm_cdeps_bulk_cfsr PASS +Test 135 datm_cdeps_bulk_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_bulk_gefs -Checking test 134 datm_cdeps_bulk_gefs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 156.094240 -0:The maximum resident set size (KB) = 607956 +0:The total amount of wall time = 163.109453 +0:The maximum resident set size (KB) = 607472 -Test 134 datm_cdeps_bulk_gefs PASS +Test 136 datm_cdeps_bulk_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 + 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 = 414.434465 -0:The maximum resident set size (KB) = 514336 +0:The total amount of wall time = 424.865442 +0:The maximum resident set size (KB) = 514936 -Test 135 datm_cdeps_mx025_cfsr PASS +Test 137 datm_cdeps_mx025_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 + 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 = 417.305959 -0:The maximum resident set size (KB) = 494836 +0:The total amount of wall time = 420.097549 +0:The maximum resident set size (KB) = 494796 -Test 136 datm_cdeps_mx025_gefs PASS +Test 138 datm_cdeps_mx025_gefs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_multiple_files_cfsr -Checking test 137 datm_cdeps_multiple_files_cfsr results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 168.113967 -0:The maximum resident set size (KB) = 716860 +0:The total amount of wall time = 167.880224 +0:The maximum resident set size (KB) = 716732 -Test 137 datm_cdeps_multiple_files_cfsr PASS +Test 139 datm_cdeps_multiple_files_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_3072x1536_cfsr -Checking test 138 datm_cdeps_3072x1536_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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.731918 -0:The maximum resident set size (KB) = 1942108 +0:The total amount of wall time = 240.871973 +0:The maximum resident set size (KB) = 1940316 -Test 138 datm_cdeps_3072x1536_cfsr PASS +Test 140 datm_cdeps_3072x1536_cfsr PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_gfs -Checking test 139 datm_cdeps_gfs results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_gfs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 259.043974 -0:The maximum resident set size (KB) = 1940284 +0:The total amount of wall time = 269.309685 +0:The maximum resident set size (KB) = 1941572 -Test 139 datm_cdeps_gfs PASS +Test 141 datm_cdeps_gfs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_debug_cfsr -Checking test 140 datm_cdeps_debug_cfsr results .... - Comparing RESTART/MOM.res.nc .........OK +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 460.168976 -0:The maximum resident set size (KB) = 706724 +0:The total amount of wall time = 458.290559 +0:The maximum resident set size (KB) = 706740 + +Test 142 datm_cdeps_debug_cfsr PASS -Test 140 datm_cdeps_debug_cfsr PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_control_cfsr_faster +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 = 169.565486 +0:The maximum resident set size (KB) = 716816 -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_lnd_gswp3 -Checking test 141 datm_cdeps_lnd_gswp3 results .... +Test 143 datm_cdeps_control_cfsr_faster PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -4119,15 +4208,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 = 10.898450 -0:The maximum resident set size (KB) = 208260 +0:The total amount of wall time = 10.784996 +0:The maximum resident set size (KB) = 208208 -Test 141 datm_cdeps_lnd_gswp3 PASS +Test 144 datm_cdeps_lnd_gswp3 PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_lnd_gswp3_rst -Checking test 142 datm_cdeps_lnd_gswp3_rst results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -4135,15 +4224,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 = 15.996131 -0:The maximum resident set size (KB) = 210128 +0:The total amount of wall time = 16.270592 +0:The maximum resident set size (KB) = 208268 -Test 142 datm_cdeps_lnd_gswp3_rst PASS +Test 145 datm_cdeps_lnd_gswp3_rst PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_atmlnd_sbs -Checking test 143 control_p8_atmlnd_sbs results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_p8_atmlnd_sbs +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -4180,38 +4269,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,15 +4316,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 = 233.900666 -0:The maximum resident set size (KB) = 1462076 +0:The total amount of wall time = 233.486645 +0:The maximum resident set size (KB) = 1461972 -Test 143 control_p8_atmlnd_sbs PASS +Test 146 control_p8_atmlnd_sbs PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_atmwav -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_atmwav -Checking test 144 control_atmwav results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/control_atmwav +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/control_atmwav +Checking test 147 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -4244,49 +4333,49 @@ 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 = 99.104134 -0:The maximum resident set size (KB) = 474744 +0:The total amount of wall time = 99.820585 +0:The maximum resident set size (KB) = 474624 -Test 144 control_atmwav PASS +Test 147 control_atmwav PASS -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8 -Checking test 145 atmaero_control_p8 results .... +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/atmaero_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/atmaero_control_p8 +Checking test 148 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4296,48 +4385,48 @@ 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.713829 -0:The maximum resident set size (KB) = 2703300 - -Test 145 atmaero_control_p8 PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8_rad -Checking test 146 atmaero_control_p8_rad results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.174370 +0:The maximum resident set size (KB) = 2703348 + +Test 148 atmaero_control_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/atmaero_control_p8_rad +Checking test 149 atmaero_control_p8_rad results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -4347,48 +4436,48 @@ 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 = 303.490773 -0:The maximum resident set size (KB) = 2757568 - -Test 146 atmaero_control_p8_rad PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8_rad_micro -Checking test 147 atmaero_control_p8_rad_micro results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.089123 +0:The maximum resident set size (KB) = 2757480 + +Test 149 atmaero_control_p8_rad PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/atmaero_control_p8_rad_micro +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/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 @@ -4398,68 +4487,91 @@ 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 = 306.475800 -0:The maximum resident set size (KB) = 2763956 - -Test 147 atmaero_control_p8_rad_micro PASS - - -baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_atmaq -working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_atmaq -Checking test 148 regional_atmaq results .... + Comparing RESTART/20210323.060000.coupler.res .........OK + Comparing RESTART/20210323.060000.fv_core.res.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK + Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile4.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile5.nc .........OK + Comparing RESTART/20210323.060000.phy_data.tile6.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile1.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile2.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile3.nc .........OK + Comparing RESTART/20210323.060000.sfc_data.tile4.nc .........OK + Comparing 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.034343 +0:The maximum resident set size (KB) = 2763992 + +Test 150 atmaero_control_p8_rad_micro PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_atmaq +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_atmaq +Checking test 151 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 = 1009.599709 +0:The maximum resident set size (KB) = 1146092 + +Test 151 regional_atmaq PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230403/INTEL/regional_atmaq_faster +working dir = /glade/scratch/dswales/FV3_RT/rt_4707/regional_atmaq_faster +Checking test 152 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/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 = 982.454719 -0:The maximum resident set size (KB) = 1139824 +0:The total amount of wall time = 990.093135 +0:The maximum resident set size (KB) = 1145988 -Test 148 regional_atmaq PASS +Test 152 regional_atmaq_faster PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 24 15:38:28 MDT 2023 -Elapsed time: 03h:22m:00s. Have a nice day! +Thu Apr 6 13:55:37 MDT 2023 +Elapsed time: 01h:19m:16s. Have a nice day! From b2a8ff76198b76d5e17c42577f71ef2feab38e34 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 6 Apr 2023 16:27:19 -0400 Subject: [PATCH 16/17] revert Cheyenne compilation time change --- tests/fv3_conf/compile_qsub.IN_cheyenne | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne index 71e63be8c7..c35a0d21b2 100644 --- a/tests/fv3_conf/compile_qsub.IN_cheyenne +++ b/tests/fv3_conf/compile_qsub.IN_cheyenne @@ -5,7 +5,7 @@ #PBS -A @[ACCNR] #PBS -q @[QUEUE] #PBS -l select=1:ncpus=8:mpiprocs=1 -#PBS -l walltime=00:60:00 +#PBS -l walltime=00:30:00 set -eux From 5ba8e43ef3ea9c9832f73b85209f438dfc5e9a60 Mon Sep 17 00:00:00 2001 From: Grant Firl Date: Thu, 6 Apr 2023 16:41:27 -0400 Subject: [PATCH 17/17] update FV3 submodule pointer and .gitmodules --- .gitmodules | 6 ++---- FV3 | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index d4cd8a0f6a..51484d02ca 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,7 @@ [submodule "FV3"] path = FV3 - #url = https://github.com/NCAR/fv3atm - #branch = main - url = https://github.com/grantfirl/fv3atm - branch = ufs-dev-PR53 + url = https://github.com/NCAR/fv3atm + branch = main [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 9247c903dd..66c6ff19cf 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 9247c903ddf908e05dc26d926233c4b69dc3dcac +Subproject commit 66c6ff19cf6ab72fc2293f8ca2391231e451b680