From 71a6dac7f722b9cc192bb3dcc47dc3177517c31f Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Mon, 30 Jan 2023 14:12:39 +0000 Subject: [PATCH 01/14] update cdeps --- .gitmodules | 6 ++++-- CDEPS-interface/CDEPS | 2 +- CDEPS-interface/cdeps_files.cmake | 1 - 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitmodules b/.gitmodules index a3775fc12d..ba80516363 100644 --- a/.gitmodules +++ b/.gitmodules @@ -32,8 +32,10 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - url = https://github.com/NOAA-EMC/CDEPS - branch = develop + #url = https://github.com/NOAA-EMC/CDEPS + #branch = develop + url = https://github.com/binli2337/CDEPS + branch = update_cdeps [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 530c2624df..0d073f8e34 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 530c2624df18b2e2b05cf1c639b073479f68f269 +Subproject commit 0d073f8e349cfdbe5bd91f1fa296a9d3706ba412 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 From 22c36a9ca71096a40c32e8a6a084e7499546a55b Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Sat, 18 Feb 2023 19:09:53 +0000 Subject: [PATCH 02/14] use fv3atm from PR 1612 --- .gitmodules | 2 ++ FV3 | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index ba80516363..1df8492e80 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,6 +2,8 @@ path = FV3 url = https://github.com/NOAA-EMC/fv3atm branch = develop + url = https://github.com/mdtoyNOAA/fv3atm + branch = develop_drag_suite_intent_mods [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 8b84603c59..65a9348ec6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 8b84603c592150110da68fcdb598ddc1debee181 +Subproject commit 65a9348ec65cdfbde9ce86ef246e388407993851 From 40f31681bdcc1977e65b0b63ee35ae8284fc8cd4 Mon Sep 17 00:00:00 2001 From: Denise Worthen Date: Mon, 20 Feb 2023 18:29:36 -0500 Subject: [PATCH 03/14] Docs/faqupdate (#8) * update FAQ about setting resources * add mom6 settings, add more specific component info * remove reference to nemsio in FAQ * add section to FAQ about turning off I/O * clarify FV3 IO settings * clarify FV3 IO output options --- doc/UsersGuide/source/FAQ.rst | 444 ++++++++++++++++++++++++++++++++-- 1 file changed, 429 insertions(+), 15 deletions(-) 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 + :: From 0d84946a9ae9667d113df479f649a736824935a8 Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Mon, 20 Feb 2023 17:40:22 -0700 Subject: [PATCH 04/14] [AutoRT] cheyenne.gnu Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.gnu.log | 322 ++++++++++++------------- 1 file changed, 161 insertions(+), 161 deletions(-) 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! From 93e5500ac976f9b1229964065a4495c98d8a80ce Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Mon, 20 Feb 2023 18:03:18 -0700 Subject: [PATCH 05/14] [AutoRT] cheyenne.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_cheyenne.intel.log | 958 +++++++++++------------ 1 file changed, 479 insertions(+), 479 deletions(-) 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! From 85bddd971c9988139a739e3ec37d8854d3a7e01e Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Mon, 20 Feb 2023 19:12:51 -0600 Subject: [PATCH 06/14] [AutoRT] orion.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_orion.intel.log | 978 +++++++++++++------------- 1 file changed, 489 insertions(+), 489 deletions(-) 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! From d2fff32a5ba2a5c9c59dc6c68f22ceb784f464cc Mon Sep 17 00:00:00 2001 From: jkbk2004 Date: Tue, 21 Feb 2023 01:17:14 +0000 Subject: [PATCH 07/14] [AutoRT] hera.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_hera.intel.log | 6876 +++++++++++++++----------- 1 file changed, 4081 insertions(+), 2795 deletions(-) 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! From 7f627802f567a5f8b33969dfa19fab76ecdd9228 Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Tue, 21 Feb 2023 02:17:24 +0000 Subject: [PATCH 08/14] [AutoRT] jet.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_jet.intel.log | 886 ++++++++++++++-------------- 1 file changed, 443 insertions(+), 443 deletions(-) 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! From dd24358b743d84fc3c15f8371e8a081360018791 Mon Sep 17 00:00:00 2001 From: epic-cicd-jenkins Date: Mon, 20 Feb 2023 22:20:40 -0500 Subject: [PATCH 09/14] [AutoRT] gaea.intel Job Completed. on-behalf-of @ufs-community --- tests/RegressionTests_gaea.intel.log | 954 +++++++++++++-------------- 1 file changed, 477 insertions(+), 477 deletions(-) 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! From f8fe8faaafb640a49f010b47be51b96886e0208e Mon Sep 17 00:00:00 2001 From: Jong Kim Date: Tue, 21 Feb 2023 13:56:10 +0000 Subject: [PATCH 10/14] add hera.gnu RT log: passed --- tests/RegressionTests_hera.gnu.log | 466 +++++++++++++++-------------- 1 file changed, 239 insertions(+), 227 deletions(-) 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! From d6cf8c2ae0788b301d26c8f20f363854fdfa5525 Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 21 Feb 2023 16:31:36 +0000 Subject: [PATCH 11/14] Acorn Intel RT Log --- tests/RegressionTests_acorn.intel.log | 926 +++++++++++++------------- 1 file changed, 466 insertions(+), 460 deletions(-) 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! From 42f30d190694a57c9a798c29c92fb090ba49dd3a Mon Sep 17 00:00:00 2001 From: Brian Curtis Date: Tue, 21 Feb 2023 18:28:48 +0000 Subject: [PATCH 12/14] WCOSS2 Intel RT Log --- tests/RegressionTests_wcoss2.intel.log | 800 ++++++++++++------------- 1 file changed, 400 insertions(+), 400 deletions(-) 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 bf0180571080b9c6407ebf9504e5ed59663f00eb Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Tue, 21 Feb 2023 21:14:22 +0000 Subject: [PATCH 13/14] revert CDEPS submodule --- .gitmodules | 6 ++---- CDEPS-interface/CDEPS | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.gitmodules b/.gitmodules index 1df8492e80..05943dd9de 100644 --- a/.gitmodules +++ b/.gitmodules @@ -34,10 +34,8 @@ branch = emc/develop [submodule "CDEPS"] path = CDEPS-interface/CDEPS - #url = https://github.com/NOAA-EMC/CDEPS - #branch = develop - url = https://github.com/binli2337/CDEPS - branch = update_cdeps + url = https://github.com/NOAA-EMC/CDEPS + branch = develop [submodule "GOCART"] path = GOCART url = https://github.com/GEOS-ESM/GOCART diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 0d073f8e34..94acf25b86 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 0d073f8e349cfdbe5bd91f1fa296a9d3706ba412 +Subproject commit 94acf25b8692e38b3c8314125278cdc2700fb869 From 60f469a5761e950566f9bbe7937528266c05723e Mon Sep 17 00:00:00 2001 From: "Bin.Li" Date: Wed, 22 Feb 2023 21:01:16 +0000 Subject: [PATCH 14/14] revert .gitmodules --- .gitmodules | 2 -- FV3 | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 05943dd9de..a3775fc12d 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,8 +2,6 @@ path = FV3 url = https://github.com/NOAA-EMC/fv3atm branch = develop - url = https://github.com/mdtoyNOAA/fv3atm - branch = develop_drag_suite_intent_mods [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/FV3 b/FV3 index 65a9348ec6..d9e619ed4a 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 65a9348ec65cdfbde9ce86ef246e388407993851 +Subproject commit d9e619ed4a5e685b3558e0b1bf6929880960864b