diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index 530c2624df..94acf25b86 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit 530c2624df18b2e2b05cf1c639b073479f68f269 +Subproject commit 94acf25b8692e38b3c8314125278cdc2700fb869 diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 3990572168..7a9379d210 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -14,7 +14,6 @@ list(APPEND cdeps_share_files CDEPS/share/shr_const_mod.F90 CDEPS/share/shr_kind_mod.F90 CDEPS/share/shr_log_mod.F90 - CDEPS/share/shr_mpi_mod.F90 CDEPS/share/shr_orb_mod.F90 CDEPS/share/shr_precip_mod.F90 CDEPS/share/shr_strconvert_mod.F90 diff --git a/FV3 b/FV3 index 782d6dcf41..1433ff96b6 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 782d6dcf413f89e1bd5012a52c22ace7bb050231 +Subproject commit 1433ff96b6efabb31bb13f408bb2ae4c293cd3d7 diff --git a/doc/UsersGuide/source/FAQ.rst b/doc/UsersGuide/source/FAQ.rst index bc23d7e00f..71ee5dc234 100644 --- a/doc/UsersGuide/source/FAQ.rst +++ b/doc/UsersGuide/source/FAQ.rst @@ -15,7 +15,7 @@ and is described in the UFS WM GitHub `wiki `_. To +turn off point output, change the output frequency from 900 to 0 on +`line 296 +`_. To +turn off restart files, change the frequency from 3600 to 0 on `line +321 +`_. + + + ============================================================== How do I set the total number of tasks for my job? ============================================================== -The total number of MPI tasks used by the UFS Weather Model is a combination of compute and quilt tasks, and can be calculated using the following relationship: - * total tasks = ``compute tasks + quilt tasks`` - * compute tasks = ``x layout * y layout * number of tiles`` - * quilt tasks = ``write_groups * write_tasks_per_group`` if ``quilting==.true.`` +In the UFS WM, each component's MPI task information, including the +starting and ending tasks and the number of threads, are specified +using the component-specific ``petlist_bounds`` and +``omp_num_threads`` in ``nems.configure``. In general, the total +number of MPI tasks required is the sum of all the sub-component +tasks, as long as those components do not overlap (i.e., share the +same PETs). An example of a global 5 component coupled configuration +nems.configure at the end of this section. + +FV3atm +^^^^^^ + +The FV3atm component consists of one or more forecast grid components +and write grid components. + +The MPI tasks for the forecast grid components are specified in the +layout variable in one or more namelist files ``input*.nml`` +(e.g. input.nml and input_nest02.nml). The total number of mpi tasks +required is given by the product of the specified layout, summed over +all domains. For example, for a global domain with 6 tiles and +``layout = 6,8``, the total number required is ``6*6*8 = 288``. For +two regional domains using ``input.nml`` and ``input_nest02.nml``, +each with ``layout = 6,10``, the total required is the sum ``6*10 + +6*10 = 120``. + +For the global configuration, an additional requirement is that the +layout specified must be a multiple of the ``blocksize`` parameter in +``input.nml``. For example, using ``layout=8,8`` for C96 yields +subdomains of ``12 x 12``. The subdomain product is ``12*12 = 144``, +which is not divisible by a ``blocksize=32``. Therefore, the C96 does +not support an ``8,8`` layout for a blocksize of 32. If ``layout = +4,6``, the subdomain product is ``24*16 = 384``, which is divisible by +a ``blocksize=32``. A layout of ``4,6`` is supported for C96 with a +blocksize of 32. + +The FV3atm will utilize the write grid component if ``quilting`` is +set to .true. In this case, the required mpi tasks for the +write grid components is the product of the ``write_groups`` and the +``write_tasks_per_group`` in the ``model_configure`` file. + +:: + + quilting: .true. + write_groups: 1 + write_tasks_per_group: 60 + + +In the above case, the write grid component requires 60 tasks. + +The total number of MPI ranks for FV3atm is the sum of the forecast tasks and any +write grid component tasks. + +:: + + total_tasks_atm = forecast tasks + write grid component tasks + +If ESMF-managed threading is used, the total number of PETs for the +atmosphere component is given by the product of the number of threads +requested and the total number of MPI ranks (both forecast and write +grid component). If ``num_threads_atm`` is the number of threads +specified for the FV3atm component, in ``nems.configure`` the ATM PET +bounds are given by + +:: + + ATM_petlist_bounds 0 total_tasks_atm*num_threads_atm-1 + ATM_omp_num_threads num_threads_atm + +Note that in UWM, the ATM component is normally listed first in +``nems.configure`` so that the starting PET for the ATM is 0. + +GOCART +^^^^^^ + +GOCART shares the same grid and forecast tasks as FV3atm but it does +not have a separate write grid component in its NUOPC CAP. Also, while +GOCART does not have threading capability, it shares the same data +structure as FV3atm and so it has to use the same number of threads +used by FV3atm. Therefore, the total number of MPI ranks and threads +in GOCART is the same as the those for the FV3atm forecast component +(i.e., excluding any write grid component). Currently GOCART only runs +on the global forecast grid component, for which only one namelist is +needed. + +:: + + total_tasks_chm = FV3atm forecast tasks + + CHM_petlist_bounds: 0 total_tasks_chm*num_threads_atm-1 + CHM_omp_num_threads: num_threads_atm + +CMEPS +^^^^^ + +The mediator MPI tasks can overlap with other components and in UFS +the tasks are normally shared on the FV3atm forecast tasks. However, a +large number of tasks for the mediator is generally not recommended +since it may cause slow performance. This means that the number of +MPI tasks for CMEPS is given by + +:: + + total_tasks_med = smaller of (300, FV3atm forecast tasks) + +and in ``nems.configure`` + +:: + + MED_petlist_bounds: 0 total_tasks_med*num_threads_atm-1 + MED_omp_num_threads: num_threads_atm + +MOM6 +^^^^ + +For MOM6 the only restriction currently on the number of MPI ranks +used by MOM6 is that it is divisible by 2. The starting PET in +``nems.configure`` will be the last PET of the preceding component, +incremented by one. Threading in MOM6 is not recommended at this time. + +:: + + OCN_petlist_bounds: starting_OCN_PET total_tasks_ocn+starting_OCN_PET-1 + OCN_omp_num_threads: 1 + +CICE +^^^^ + +CICE requires setting the decomposition shape, the number of requested +processors and the calculated block sizes in the ``ice_in`` +namelist. In UFS, the decomposition shape is always ``SlenderX2``, +except for the 5 deg configuration, which is ``SlenderX1``. + +For ``SlenderX2`` decomposition, a given ``nprocs``, and global domain +``nx_global``, ``ny_global``, the block sizes are given by + +:: + + block_size_y = ny_global/2 + block_size_x = nx_global/(nprocs/2) + +Similarily, for ``SlenderX1`` + +:: + + block_size_y = ny_global + block_size_x = nx_global/nprocs + + +For the 1-deg CICE domain for example, ``ice_in`` would be + +:: + + nprocs = 10 + nx_global = 360 + ny_global = 320 + block_size_x = 72 + block_size_y = 160 + max_blocks = -1 + processor_shape = 'slenderX2' + + +In UFS, only a single thread is used for CICE so for ``nprocs`` set in +``ice_in``, the tasks in ``nems.configure`` are set as: + +:: + + ICE_petlist_bounds: starting_ICE_PET nprocs+starting_ICE_PET-1 + ICE_omp_num_threads: 1 + +The starting ICE PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + +WW3 +^^^ + +The WW3 component requires setting only the MPI ranks available +for WW3 and the number of threads to be used. + +:: + + WAV_petlist_bounds: starting_WAV_PET num_tasks_wav*num_threads_wav+starting_WAV_PET-1 + WAV_omp_num_threads: num_threads_wav + +The starting WAV PET in ``nems.configure`` will be the last PET of the +preceding component, incremented by one. + -The layout and tiles settings are in ``input.nml``, and the quilt task settings are in ``model_configure`` +Example: 5-component nems.configure +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +For the fully coupled S2SWA application, a sample ``nems.configure`` is shown below : + + +.. code-block:: console + + ############################################# + #### NEMS Run-Time Configuration File ##### + ############################################# + + # ESMF # + logKindFlag: ESMF_LOGKIND_MULTI + globalResourceControl: true + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 767 + MED_omp_num_threads: 2 + :: + + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 863 + ATM_omp_num_threads: 2 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # CHM # + CHM_model: gocart + CHM_petlist_bounds: 0 767 + CHM_omp_num_threads: 2 + CHM_attributes:: + Verbosity = 0 + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 864 983 + OCN_omp_num_threads: 1 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 984 1031 + ICE_omp_num_threads: 1 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 3 + stop_option = nhours + stop_ymd = -999 + :: + + # WAV # + WAV_model: ww3 + WAV_petlist_bounds: 1032 1191 + WAV_omp_num_threads: 2 + WAV_attributes:: + Verbosity = 0 + OverwriteSlice = false + diro = "." + logfile = wav.log + mesh_wav = mesh.gwes_30m.nc + multigrid = false + :: + + CMEPS warm run sequence + runSeq:: + @1800 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @300 + MED med_phases_prep_atm + MED med_phases_prep_ice + MED med_phases_prep_wav_accum + MED med_phases_prep_wav_avg + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + MED -> WAV :remapMethod=redist + ATM phase1 + ATM -> CHM + CHM + CHM -> ATM + ATM phase2 + ICE + WAV + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + WAV -> MED :remapMethod=redist + MED med_phases_post_wav + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + WAV_model = ww3 + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac + history_tile_atm = 384 + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 3 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 6 + stop_option = nhours + stop_ymd = -999 + :: diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index 7cb4099fb1..afdac90699 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,21 +1,21 @@ -Thu Mar 16 16:45:59 MDT 2023 +Mon Mar 20 20:46:19 MDT 2023 Start Regression test Compile 001 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 407 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 873 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 370 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 401 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 859 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 197 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 374 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 006 elapsed time 1089 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 869 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 874 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 673 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 582 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 375 seconds. -DAPP=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 312 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 864 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 868 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 676 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 576 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 367 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 309 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 816.709723 -0:The maximum resident set size (KB) = 675824 +0:The total amount of wall time = 820.115362 +0:The maximum resident set size (KB) = 675820 Test 001 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_stochy Checking test 002 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -72,14 +72,14 @@ Checking test 002 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 177.931164 -0:The maximum resident set size (KB) = 442688 +0:The total amount of wall time = 178.198476 +0:The maximum resident set size (KB) = 442564 Test 002 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_ras +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_ras Checking test 003 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -90,14 +90,14 @@ Checking test 003 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 292.802943 -0:The maximum resident set size (KB) = 461192 +0:The total amount of wall time = 292.718753 +0:The maximum resident set size (KB) = 461200 Test 003 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 309.794317 -0:The maximum resident set size (KB) = 1234752 +0:The total amount of wall time = 309.818581 +0:The maximum resident set size (KB) = 1235192 Test 004 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 715.621701 -0:The maximum resident set size (KB) = 791920 +0:The total amount of wall time = 715.918508 +0:The maximum resident set size (KB) = 791816 Test 005 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_decomp +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 728.721636 -0:The maximum resident set size (KB) = 791864 +0:The total amount of wall time = 725.728149 +0:The maximum resident set size (KB) = 791908 Test 006 rap_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_2threads +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 661.502435 -0:The maximum resident set size (KB) = 864012 +0:The total amount of wall time = 663.793881 +0:The maximum resident set size (KB) = 864028 Test 007 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_restart +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 358.448865 -0:The maximum resident set size (KB) = 539932 +0:The total amount of wall time = 357.227737 +0:The maximum resident set size (KB) = 540080 Test 008 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 711.320438 -0:The maximum resident set size (KB) = 791716 +0:The total amount of wall time = 707.806625 +0:The maximum resident set size (KB) = 791732 Test 009 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_sfcdiff_decomp +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 723.755948 -0:The maximum resident set size (KB) = 791704 +0:The total amount of wall time = 743.114300 +0:The maximum resident set size (KB) = 791672 Test 010 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_sfcdiff_restart +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 529.659070 -0:The maximum resident set size (KB) = 539456 +0:The total amount of wall time = 528.852698 +0:The maximum resident set size (KB) = 539396 Test 011 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 682.083720 -0:The maximum resident set size (KB) = 789316 +0:The total amount of wall time = 710.785487 +0:The maximum resident set size (KB) = 789268 Test 012 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_2threads +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 623.705150 -0:The maximum resident set size (KB) = 858884 +0:The total amount of wall time = 642.039348 +0:The maximum resident set size (KB) = 859088 Test 013 hrrr_control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_decomp +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 680.906667 -0:The maximum resident set size (KB) = 789372 +0:The total amount of wall time = 687.122060 +0:The maximum resident set size (KB) = 789320 Test 014 hrrr_control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_restart +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 515.466008 -0:The maximum resident set size (KB) = 535608 +0:The total amount of wall time = 511.657160 +0:The maximum resident set size (KB) = 535516 Test 015 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_v1beta +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 693.489142 -0:The maximum resident set size (KB) = 788736 +0:The total amount of wall time = 698.414414 +0:The maximum resident set size (KB) = 788684 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 204.172729 -0:The maximum resident set size (KB) = 606884 +0:The total amount of wall time = 202.390551 +0:The maximum resident set size (KB) = 606912 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.081517 -0:The maximum resident set size (KB) = 620912 +0:The total amount of wall time = 220.774895 +0:The maximum resident set size (KB) = 621044 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.414362 -0:The maximum resident set size (KB) = 609532 +0:The total amount of wall time = 204.551313 +0:The maximum resident set size (KB) = 609676 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_conus13km_radar_tten_warm_2threads +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.904877 -0:The maximum resident set size (KB) = 629168 +0:The total amount of wall time = 131.940282 +0:The maximum resident set size (KB) = 628076 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 89.283130 -0:The maximum resident set size (KB) = 497408 +0:The total amount of wall time = 88.357511 +0:The maximum resident set size (KB) = 497400 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/regional_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 484.417306 -0:The maximum resident set size (KB) = 570436 +0:The total amount of wall time = 487.896042 +0:The maximum resident set size (KB) = 570512 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 149.774805 -0:The maximum resident set size (KB) = 814524 +0:The total amount of wall time = 149.112466 +0:The maximum resident set size (KB) = 814500 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 147.403340 -0:The maximum resident set size (KB) = 809396 +0:The total amount of wall time = 147.088678 +0:The maximum resident set size (KB) = 809280 Test 024 hrrr_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_diag_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 159.704010 -0:The maximum resident set size (KB) = 897668 +0:The total amount of wall time = 158.693058 +0:The maximum resident set size (KB) = 897676 Test 025 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.075299 -0:The maximum resident set size (KB) = 812904 +0:The total amount of wall time = 238.731784 +0:The maximum resident set size (KB) = 812992 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_progcld_thompson_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_progcld_thompson_debug Checking test 027 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.141943 -0:The maximum resident set size (KB) = 814524 +0:The total amount of wall time = 150.637748 +0:The maximum resident set size (KB) = 814544 Test 027 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_v1beta_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 148.113663 -0:The maximum resident set size (KB) = 808864 +0:The total amount of wall time = 148.575664 +0:The maximum resident set size (KB) = 809132 Test 028 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_ras_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 88.418954 -0:The maximum resident set size (KB) = 449720 +0:The total amount of wall time = 84.086497 +0:The maximum resident set size (KB) = 449688 Test 029 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_stochy_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 92.543745 -0:The maximum resident set size (KB) = 443928 +0:The total amount of wall time = 92.230445 +0:The maximum resident set size (KB) = 444196 Test 030 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 96.061232 -0:The maximum resident set size (KB) = 1226380 +0:The total amount of wall time = 96.044411 +0:The maximum resident set size (KB) = 1226824 Test 031 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_conus13km_hrrr_warm_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_hrrr_warm_debug Checking test 032 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 389.234724 -0:The maximum resident set size (KB) = 614016 +0:The total amount of wall time = 385.108825 +0:The maximum resident set size (KB) = 614060 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rrfs_conus13km_radar_tten_warm_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 392.712594 -0:The maximum resident set size (KB) = 617072 +0:The total amount of wall time = 387.726812 +0:The maximum resident set size (KB) = 617080 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/control_wam_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/control_wam_debug Checking test 034 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 144.923052 -0:The maximum resident set size (KB) = 185912 +0:The total amount of wall time = 144.182987 +0:The maximum resident set size (KB) = 185804 Test 034 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 685.287977 -0:The maximum resident set size (KB) = 677716 +0:The total amount of wall time = 686.740932 +0:The maximum resident set size (KB) = 677948 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 346.674371 -0:The maximum resident set size (KB) = 676052 +0:The total amount of wall time = 348.865917 +0:The maximum resident set size (KB) = 676092 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_2threads_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 628.344450 -0:The maximum resident set size (KB) = 722964 +0:The total amount of wall time = 624.549075 +0:The maximum resident set size (KB) = 722952 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_2threads_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 320.968805 -0:The maximum resident set size (KB) = 715364 +0:The total amount of wall time = 319.915001 +0:The maximum resident set size (KB) = 715468 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_decomp_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 348.502735 -0:The maximum resident set size (KB) = 675000 +0:The total amount of wall time = 349.188111 +0:The maximum resident set size (KB) = 675504 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_restart_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.080519 -0:The maximum resident set size (KB) = 516004 +0:The total amount of wall time = 515.131708 +0:The maximum resident set size (KB) = 516232 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_restart_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 177.399492 -0:The maximum resident set size (KB) = 513424 +0:The total amount of wall time = 176.703030 +0:The maximum resident set size (KB) = 513456 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control_dyn64_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 408.067467 -0:The maximum resident set size (KB) = 698536 +0:The total amount of wall time = 522.955868 +0:The maximum resident set size (KB) = 698812 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.051123 -0:The maximum resident set size (KB) = 695520 +0:The total amount of wall time = 147.488515 +0:The maximum resident set size (KB) = 695644 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/hrrr_control_debug_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.775491 -0:The maximum resident set size (KB) = 692508 +0:The total amount of wall time = 144.270489 +0:The maximum resident set size (KB) = 692660 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/rap_control_dyn64_phy32_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 153.713241 -0:The maximum resident set size (KB) = 716076 +0:The total amount of wall time = 183.802572 +0:The maximum resident set size (KB) = 715000 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 496.166176 -0:The maximum resident set size (KB) = 3160948 +0:The total amount of wall time = 534.776699 +0:The maximum resident set size (KB) = 3160004 Test 046 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/cpld_control_nowave_noaero_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 249.194580 -0:The maximum resident set size (KB) = 1250888 +0:The total amount of wall time = 245.436939 +0:The maximum resident set size (KB) = 1249568 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/cpld_debug_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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 = 272.155740 -0:The maximum resident set size (KB) = 3177728 +0:The total amount of wall time = 274.828794 +0:The maximum resident set size (KB) = 3177860 Test 048 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_71909/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_52467/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.301891 -0:The maximum resident set size (KB) = 674204 +0:The total amount of wall time = 180.134869 +0:The maximum resident set size (KB) = 673784 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 16 17:19:54 MDT 2023 -Elapsed time: 00h:33m:55s. Have a nice day! +Mon Mar 20 21:22:13 MDT 2023 +Elapsed time: 00h:35m:54s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index b2942c7462..a385201ee8 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,3232 +1,4465 @@ -Thu Mar 16 20:01:28 MDT 2023 +Fri Mar 24 12:16:28 MDT 2023 Start Regression test -Compile 001 elapsed time 1393 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 1418 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 1382 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 472 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 423 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 006 elapsed time 1090 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 1105 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 1033 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_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 1008 seconds. -DAPP=ATM -DCCPP_SUITES=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 956 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 420 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_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 281 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 832 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 825 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 1394 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 1432 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 1392 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 484 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 420 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 1101 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 1092 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 1055 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 999 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 946 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 803 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 414 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 838 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 836 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 281 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 017 elapsed time 288 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 018 elapsed time 1131 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 019 elapsed time 362 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_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 1577 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_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 1107 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 441 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 230 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 113 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 elapsed time 955 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 018 elapsed time 1150 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 371 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 1587 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 1121 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 445 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 222 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 114 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 945 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 026 elapsed time 1003 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 906 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 892 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 324 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 027 elapsed time 909 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 890 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 325 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8_mixedmode -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_p8_mixedmode +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 319.289345 -0:The maximum resident set size (KB) = 2698564 + 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 = 317.749514 +0:The maximum resident set size (KB) = 2698744 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_gfsv17 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_gfsv17 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 284.417675 -0:The maximum resident set size (KB) = 1437948 + 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 = 283.293322 +0:The maximum resident set size (KB) = 1437696 Test 002 cpld_control_gfsv17 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 313.142698 -0:The maximum resident set size (KB) = 2716520 + 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 = 321.874589 +0:The maximum resident set size (KB) = 2716556 Test 003 cpld_control_p8 PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_restart_p8 +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 = 185.165747 +0:The maximum resident set size (KB) = 2577420 + +Test 004 cpld_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_2threads_p8 +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 = 255.374946 +0:The maximum resident set size (KB) = 3177996 + +Test 005 cpld_2threads_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_decomp_p8 +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 = 321.427434 +0:The maximum resident set size (KB) = 2720512 + +Test 006 cpld_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_mpi_p8 +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 = 280.054976 +0:The maximum resident set size (KB) = 2682636 + +Test 007 cpld_mpi_p8 PASS + + baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_ciceC_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/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 = 314.551412 -0:The maximum resident set size (KB) = 2716476 - -Test 004 cpld_control_ciceC_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 320.675039 +0:The maximum resident set size (KB) = 2716428 + +Test 008 cpld_control_ciceC_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_c192_p8 +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 = 637.469591 +0:The maximum resident set size (KB) = 3347996 + +Test 009 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/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 = 775.693920 -0:The maximum resident set size (KB) = 3348340 - -Test 005 cpld_control_c192_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.256960 +0:The maximum resident set size (KB) = 3272032 + +Test 010 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_noaero_p8 -Checking test 006 cpld_control_noaero_p8 results .... -Moving baseline 006 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 = 296.640271 -0:The maximum resident set size (KB) = 1436496 - -Test 006 cpld_control_noaero_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_noaero_p8 +Checking test 011 cpld_control_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 285.325785 +0:The maximum resident set size (KB) = 1436448 + +Test 011 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c96_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_nowave_noaero_p8 -Checking test 007 cpld_control_nowave_noaero_p8 results .... -Moving baseline 007 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 = 198.471936 -0:The maximum resident set size (KB) = 1452332 - -Test 007 cpld_control_nowave_noaero_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_nowave_noaero_p8 +Checking test 012 cpld_control_nowave_noaero_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 194.797303 +0:The maximum resident set size (KB) = 1452300 + +Test 012 cpld_control_nowave_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_debug_p8 -Checking test 008 cpld_debug_p8 results .... -Moving baseline 008 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 = 472.407396 -0:The maximum resident set size (KB) = 2788260 - -Test 008 cpld_debug_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_debug_p8 +Checking test 013 cpld_debug_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing gocart.inst_aod.20210322_0900z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 479.771359 +0:The maximum resident set size (KB) = 2788028 + +Test 013 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_debug_noaero_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_debug_noaero_p8 -Checking test 009 cpld_debug_noaero_p8 results .... -Moving baseline 009 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 = 349.101007 -0:The maximum resident set size (KB) = 1460252 - -Test 009 cpld_debug_noaero_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_debug_noaero_p8 +Checking test 014 cpld_debug_noaero_p8 results .... + Comparing sfcf003.tile1.nc .........OK + Comparing sfcf003.tile2.nc .........OK + Comparing sfcf003.tile3.nc .........OK + Comparing sfcf003.tile4.nc .........OK + Comparing sfcf003.tile5.nc .........OK + Comparing sfcf003.tile6.nc .........OK + Comparing atmf003.tile1.nc .........OK + Comparing atmf003.tile2.nc .........OK + Comparing atmf003.tile3.nc .........OK + Comparing atmf003.tile4.nc .........OK + Comparing atmf003.tile5.nc .........OK + Comparing atmf003.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 349.137447 +0:The maximum resident set size (KB) = 1460576 + +Test 014 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8_agrid -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_noaero_p8_agrid -Checking test 010 cpld_control_noaero_p8_agrid results .... -Moving baseline 010 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 = 267.210810 -0:The maximum resident set size (KB) = 1455928 - -Test 010 cpld_control_noaero_p8_agrid PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_noaero_p8_agrid +Checking test 015 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 252.417787 +0:The maximum resident set size (KB) = 1455888 + +Test 015 cpld_control_noaero_p8_agrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_control_c48 -Checking test 011 cpld_control_c48 results .... -Moving baseline 011 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 = 607.337787 -0:The maximum resident set size (KB) = 2580320 - -Test 011 cpld_control_c48 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_control_c48 +Checking test 016 cpld_control_c48 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 606.218913 +0:The maximum resident set size (KB) = 2580132 + +Test 016 cpld_control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/cpld_warmstart_c48 -Checking test 012 cpld_warmstart_c48 results .... -Moving baseline 012 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 = 162.007662 -0:The maximum resident set size (KB) = 2599020 - -Test 012 cpld_warmstart_c48 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_warmstart_c48 +Checking test 017 cpld_warmstart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 161.833338 +0:The maximum resident set size (KB) = 2598868 + +Test 017 cpld_warmstart_c48 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/cpld_restart_c48 +Checking test 018 cpld_restart_c48 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 83.433681 +0:The maximum resident set size (KB) = 2015432 + +Test 018 cpld_restart_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_CubedSphereGrid -Checking test 013 control_CubedSphereGrid results .... -Moving baseline 013 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 = 141.342947 -0:The maximum resident set size (KB) = 456852 - -Test 013 control_CubedSphereGrid PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid +Checking test 019 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 = 144.212118 +0:The maximum resident set size (KB) = 456804 + +Test 019 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_CubedSphereGrid_parallel -Checking test 014 control_CubedSphereGrid_parallel results .... -Moving baseline 014 control_CubedSphereGrid_parallel files .... - Moving sfcf000.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf024.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid_parallel +Checking test 020 control_CubedSphereGrid_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.650878 -0:The maximum resident set size (KB) = 456824 +0:The total amount of wall time = 142.022219 +0:The maximum resident set size (KB) = 456840 -Test 014 control_CubedSphereGrid_parallel PASS +Test 020 control_CubedSphereGrid_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_latlon -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_latlon -Checking test 015 control_latlon results .... -Moving baseline 015 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_latlon +Checking test 021 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 = 142.527291 -0:The maximum resident set size (KB) = 456768 +0:The total amount of wall time = 146.529694 +0:The maximum resident set size (KB) = 456724 -Test 015 control_latlon PASS +Test 021 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_wrtGauss_netcdf_parallel -Checking test 016 control_wrtGauss_netcdf_parallel results .... -Moving baseline 016 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_wrtGauss_netcdf_parallel +Checking test 022 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 148.081288 -0:The maximum resident set size (KB) = 456708 +0:The total amount of wall time = 148.526261 +0:The maximum resident set size (KB) = 456876 -Test 016 control_wrtGauss_netcdf_parallel PASS +Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c48 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_c48 -Checking test 017 control_c48 results .... -Moving baseline 017 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 = 442.679431 -0:The maximum resident set size (KB) = 628916 - -Test 017 control_c48 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c48 +Checking test 023 control_c48 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 452.268355 +0:The maximum resident set size (KB) = 628896 + +Test 023 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c192 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_c192 -Checking test 018 control_c192 results .... -Moving baseline 018 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_c192 +Checking test 024 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 = 589.746559 -0:The maximum resident set size (KB) = 556984 +0:The total amount of wall time = 603.631478 +0:The maximum resident set size (KB) = 557012 -Test 018 control_c192 PASS +Test 024 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c384 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_c384 -Checking test 019 control_c384 results .... -Moving baseline 019 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_c384 +Checking test 025 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 = 597.249792 -0:The maximum resident set size (KB) = 855264 +0:The total amount of wall time = 595.490510 +0:The maximum resident set size (KB) = 856988 -Test 019 control_c384 PASS +Test 025 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_c384gdas -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_c384gdas -Checking test 020 control_c384gdas results .... -Moving baseline 020 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 = 522.993738 -0:The maximum resident set size (KB) = 989596 - -Test 020 control_c384gdas PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_c384gdas +Checking test 026 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 = 519.773681 +0:The maximum resident set size (KB) = 991076 + +Test 026 control_c384gdas PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_stochy +Checking test 027 control_stochy results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +0:The total amount of wall time = 98.149576 +0:The maximum resident set size (KB) = 455000 + +Test 027 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_stochy -Checking test 021 control_stochy results .... -Moving baseline 021 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 95.528292 -0:The maximum resident set size (KB) = 454816 +0:The total amount of wall time = 52.198506 +0:The maximum resident set size (KB) = 222688 -Test 021 control_stochy PASS +Test 028 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_lndp -Checking test 022 control_lndp results .... -Moving baseline 022 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_lndp +Checking test 029 control_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.189128 -0:The maximum resident set size (KB) = 456492 +0:The total amount of wall time = 89.595890 +0:The maximum resident set size (KB) = 456632 -Test 022 control_lndp PASS +Test 029 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_iovr4 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_iovr4 -Checking test 023 control_iovr4 results .... -Moving baseline 023 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 = 144.059239 -0:The maximum resident set size (KB) = 456656 - -Test 023 control_iovr4 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_iovr4 +Checking test 030 control_iovr4 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 147.669882 +0:The maximum resident set size (KB) = 456680 + +Test 030 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_iovr5 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_iovr5 -Checking test 024 control_iovr5 results .... -Moving baseline 024 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 = 146.971046 -0:The maximum resident set size (KB) = 456660 - -Test 024 control_iovr5 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_iovr5 +Checking test 031 control_iovr5 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 147.045570 +0:The maximum resident set size (KB) = 456784 + +Test 031 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_p8 -Checking test 025 control_p8 results .... -Moving baseline 025 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 = 181.302676 -0:The maximum resident set size (KB) = 1422860 - -Test 025 control_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8 +Checking test 032 control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 180.592947 +0:The maximum resident set size (KB) = 1422856 + +Test 032 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_lndp -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_p8_lndp -Checking test 026 control_p8_lndp results .... -Moving baseline 026 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 = 332.746086 -0:The maximum resident set size (KB) = 1423100 - -Test 026 control_p8_lndp PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_lndp +Checking test 033 control_p8_lndp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing sfcf048.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing atmf048.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSFLX.GrbF48 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing GFSPRS.GrbF48 .........OK + +0:The total amount of wall time = 335.690981 +0:The maximum resident set size (KB) = 1423132 + +Test 033 control_p8_lndp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_restart_p8 +Checking test 034 control_restart_p8 results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 95.201965 +0:The maximum resident set size (KB) = 579892 + +Test 034 control_restart_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_decomp_p8 +Checking test 035 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 = 185.811011 +0:The maximum resident set size (KB) = 1417068 + +Test 035 control_decomp_p8 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_2threads_p8 +Checking test 036 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 = 175.082209 +0:The maximum resident set size (KB) = 1505032 + +Test 036 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_p8_rrtmgp -Checking test 027 control_p8_rrtmgp results .... -Moving baseline 027 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 = 249.506097 -0:The maximum resident set size (KB) = 1480700 - -Test 027 control_p8_rrtmgp PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_rrtmgp +Checking test 037 control_p8_rrtmgp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 255.284129 +0:The maximum resident set size (KB) = 1480716 + +Test 037 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/merra2_thompson -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/merra2_thompson -Checking test 028 merra2_thompson results .... -Moving baseline 028 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 = 208.539424 -0:The maximum resident set size (KB) = 1429736 - -Test 028 merra2_thompson PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/merra2_thompson +Checking test 038 merra2_thompson results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 205.968129 +0:The maximum resident set size (KB) = 1429760 + +Test 038 merra2_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_control -Checking test 029 regional_control results .... -Moving baseline 029 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 = /glade/scratch/dswales/FV3_RT/rt_28410/regional_control +Checking test 039 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 = 340.472318 -0:The maximum resident set size (KB) = 603184 +0:The total amount of wall time = 337.075326 +0:The maximum resident set size (KB) = 603140 -Test 029 regional_control PASS +Test 039 regional_control PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_restart +Checking test 040 regional_restart results .... + Comparing dynf006.nc .........OK + Comparing phyf006.nc .........OK + Comparing PRSLEV.GrbF06 .........OK + Comparing NATLEV.GrbF06 .........OK + +0:The total amount of wall time = 172.619129 +0:The maximum resident set size (KB) = 591152 + +Test 040 regional_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_decomp +Checking test 041 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 = 346.559201 +0:The maximum resident set size (KB) = 594964 + +Test 041 regional_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_2threads +Checking test 042 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 = 201.570956 +0:The maximum resident set size (KB) = 601872 + +Test 042 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_noquilt -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_noquilt -Checking test 030 regional_noquilt results .... -Moving baseline 030 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 = /glade/scratch/dswales/FV3_RT/rt_28410/regional_noquilt +Checking test 043 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 366.257817 -0:The maximum resident set size (KB) = 597616 +0:The total amount of wall time = 363.177303 +0:The maximum resident set size (KB) = 598008 -Test 030 regional_noquilt PASS +Test 043 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_netcdf_parallel -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_netcdf_parallel -Checking test 031 regional_netcdf_parallel results .... -Moving baseline 031 regional_netcdf_parallel files .... - Moving dynf000.nc .........OK - Moving dynf006.nc .........OK - Moving phyf000.nc .........OK - Moving phyf006.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_netcdf_parallel +Checking test 044 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf006.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf006.nc .........OK + +0:The total amount of wall time = 339.016903 +0:The maximum resident set size (KB) = 588436 + +Test 044 regional_netcdf_parallel PASS -0:The total amount of wall time = 338.396928 -0:The maximum resident set size (KB) = 588476 -Test 031 regional_netcdf_parallel PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_2dwrtdecomp +Checking test 045 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 = 337.280346 +0:The maximum resident set size (KB) = 603128 + +Test 045 regional_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/fv3_regional_wofs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_wofs -Checking test 032 regional_wofs results .... -Moving baseline 032 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 = /glade/scratch/dswales/FV3_RT/rt_28410/regional_wofs +Checking test 046 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 = 425.915517 -0:The maximum resident set size (KB) = 270408 +0:The total amount of wall time = 428.042907 +0:The maximum resident set size (KB) = 270428 -Test 032 regional_wofs PASS +Test 046 regional_wofs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control -Checking test 033 rap_control results .... -Moving baseline 033 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 = 477.275612 -0:The maximum resident set size (KB) = 826280 - -Test 033 rap_control PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control +Checking test 047 rap_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 471.789263 +0:The maximum resident set size (KB) = 826272 + +Test 047 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_spp_sppt_shum_skeb -Checking test 034 regional_spp_sppt_shum_skeb results .... -Moving baseline 034 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 = /glade/scratch/dswales/FV3_RT/rt_28410/regional_spp_sppt_shum_skeb +Checking test 048 regional_spp_sppt_shum_skeb results .... + Comparing dynf000.nc .........OK + Comparing dynf001.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf001.nc .........OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF01 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF01 .........OK + +0:The total amount of wall time = 325.004388 +0:The maximum resident set size (KB) = 949312 + +Test 048 regional_spp_sppt_shum_skeb PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_decomp +Checking test 049 rap_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 503.886525 +0:The maximum resident set size (KB) = 823552 + +Test 049 rap_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_2threads +Checking test 050 rap_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf021.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf021.nc .........OK + Comparing atmf024.nc .........OK + 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 = 464.275126 +0:The maximum resident set size (KB) = 892760 + +Test 050 rap_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_restart +Checking test 051 rap_restart results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 243.332886 +0:The maximum resident set size (KB) = 572176 + +Test 051 rap_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff +Checking test 052 rap_sfcdiff results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 470.418869 +0:The maximum resident set size (KB) = 826464 + +Test 052 rap_sfcdiff PASS -0:The total amount of wall time = 325.921086 -0:The maximum resident set size (KB) = 949340 -Test 034 regional_spp_sppt_shum_skeb PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff_decomp +Checking test 053 rap_sfcdiff_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 491.288708 +0:The maximum resident set size (KB) = 825420 + +Test 053 rap_sfcdiff_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_sfcdiff -Checking test 035 rap_sfcdiff results .... -Moving baseline 035 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 = 468.664653 -0:The maximum resident set size (KB) = 826508 - -Test 035 rap_sfcdiff PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_sfcdiff_restart +Checking test 054 rap_sfcdiff_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 354.555467 +0:The maximum resident set size (KB) = 569448 + +Test 054 rap_sfcdiff_restart PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control +Checking test 055 hrrr_control results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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.702621 +0:The maximum resident set size (KB) = 821256 + +Test 055 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hrrr_control -Checking test 036 hrrr_control results .... -Moving baseline 036 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 = 449.936603 -0:The maximum resident set size (KB) = 821228 - -Test 036 hrrr_control PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_decomp +Checking test 056 hrrr_control_decomp results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 476.965306 +0:The maximum resident set size (KB) = 820444 + +Test 056 hrrr_control_decomp PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_2threads +Checking test 057 hrrr_control_2threads results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 429.205195 +0:The maximum resident set size (KB) = 887572 + +Test 057 hrrr_control_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_restart +Checking test 058 hrrr_control_restart results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 340.839843 +0:The maximum resident set size (KB) = 568352 + +Test 058 hrrr_control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1beta -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_v1beta -Checking test 037 rrfs_v1beta results .... -Moving baseline 037 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 = 464.305429 -0:The maximum resident set size (KB) = 820024 - -Test 037 rrfs_v1beta PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1beta +Checking test 059 rrfs_v1beta results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 463.631701 +0:The maximum resident set size (KB) = 819824 + +Test 059 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_v1nssl -Checking test 038 rrfs_v1nssl results .... -Moving baseline 038 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 = 575.438414 -0:The maximum resident set size (KB) = 508256 - -Test 038 rrfs_v1nssl PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1nssl +Checking test 060 rrfs_v1nssl results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 576.067151 +0:The maximum resident set size (KB) = 508184 + +Test 060 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_v1nssl_nohailnoccn -Checking test 039 rrfs_v1nssl_nohailnoccn results .... -Moving baseline 039 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 = 554.512716 -0:The maximum resident set size (KB) = 501272 - -Test 039 rrfs_v1nssl_nohailnoccn PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_v1nssl_nohailnoccn +Checking test 061 rrfs_v1nssl_nohailnoccn results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 556.941154 +0:The maximum resident set size (KB) = 501236 + +Test 061 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_conus13km_hrrr_warm -Checking test 040 rrfs_conus13km_hrrr_warm results .... -Moving baseline 040 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 = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm +Checking test 062 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 129.092814 -0:The maximum resident set size (KB) = 639036 +0:The total amount of wall time = 128.197466 +0:The maximum resident set size (KB) = 639100 -Test 040 rrfs_conus13km_hrrr_warm PASS +Test 062 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_smoke_conus13km_hrrr_warm -Checking test 041 rrfs_smoke_conus13km_hrrr_warm results .... -Moving baseline 041 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 = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_smoke_conus13km_hrrr_warm +Checking test 063 rrfs_smoke_conus13km_hrrr_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK -0:The total amount of wall time = 143.923495 -0:The maximum resident set size (KB) = 652960 +0:The total amount of wall time = 143.548301 +0:The maximum resident set size (KB) = 652992 -Test 041 rrfs_smoke_conus13km_hrrr_warm PASS +Test 063 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_conus13km_radar_tten_warm -Checking test 042 rrfs_conus13km_radar_tten_warm results .... -Moving baseline 042 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 = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_radar_tten_warm +Checking test 064 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing sfcf002.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + Comparing atmf002.nc .........OK + +0:The total amount of wall time = 129.900876 +0:The maximum resident set size (KB) = 641268 + +Test 064 rrfs_conus13km_radar_tten_warm PASS -0:The total amount of wall time = 126.922658 -0:The maximum resident set size (KB) = 641160 -Test 042 rrfs_conus13km_radar_tten_warm PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm_2threads +Checking test 065 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 + +0:The total amount of wall time = 84.717616 +0:The maximum resident set size (KB) = 655336 + +Test 065 rrfs_conus13km_hrrr_warm_2threads PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_radar_tten_warm_2threads +Checking test 066 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 = 81.818067 +0:The maximum resident set size (KB) = 658404 + +Test 066 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmg -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_csawmg -Checking test 043 control_csawmg results .... -Moving baseline 043 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmg +Checking test 067 control_csawmg results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.183612 -0:The maximum resident set size (KB) = 529072 +0:The total amount of wall time = 398.767435 +0:The maximum resident set size (KB) = 529032 -Test 043 control_csawmg PASS +Test 067 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmgt -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_csawmgt -Checking test 044 control_csawmgt results .... -Moving baseline 044 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmgt +Checking test 068 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 = 392.901732 -0:The maximum resident set size (KB) = 529048 +0:The total amount of wall time = 393.472513 +0:The maximum resident set size (KB) = 529044 -Test 044 control_csawmgt PASS +Test 068 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_ras -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_ras -Checking test 045 control_ras results .... -Moving baseline 045 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 = /glade/scratch/dswales/FV3_RT/rt_28410/control_ras +Checking test 069 control_ras results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 202.773362 -0:The maximum resident set size (KB) = 487836 +0:The total amount of wall time = 204.424491 +0:The maximum resident set size (KB) = 487840 -Test 045 control_ras PASS +Test 069 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wam -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_wam -Checking test 046 control_wam results .... -Moving baseline 046 control_wam files .... - Moving sfcf024.nc .........OK - Moving atmf024.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wam +Checking test 070 control_wam results .... + Comparing sfcf024.nc .........OK + Comparing atmf024.nc .........OK -0:The total amount of wall time = 128.518628 -0:The maximum resident set size (KB) = 204320 +0:The total amount of wall time = 129.763090 +0:The maximum resident set size (KB) = 204220 -Test 046 control_wam PASS +Test 070 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_conus13km_hrrr_warm_debug -Checking test 047 rrfs_conus13km_hrrr_warm_debug results .... -Moving baseline 047 rrfs_conus13km_hrrr_warm_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_hrrr_warm_debug +Checking test 071 rrfs_conus13km_hrrr_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 757.420081 -0:The maximum resident set size (KB) = 668356 +0:The total amount of wall time = 764.886155 +0:The maximum resident set size (KB) = 668320 -Test 047 rrfs_conus13km_hrrr_warm_debug PASS +Test 071 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_conus13km_radar_tten_warm_debug -Checking test 048 rrfs_conus13km_radar_tten_warm_debug results .... -Moving baseline 048 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 = /glade/scratch/dswales/FV3_RT/rt_28410/rrfs_conus13km_radar_tten_warm_debug +Checking test 072 rrfs_conus13km_radar_tten_warm_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 758.666383 -0:The maximum resident set size (KB) = 670808 +0:The total amount of wall time = 762.879134 +0:The maximum resident set size (KB) = 670740 -Test 048 rrfs_conus13km_radar_tten_warm_debug PASS +Test 072 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_CubedSphereGrid_debug -Checking test 049 control_CubedSphereGrid_debug results .... -Moving baseline 049 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 = 174.611672 -0:The maximum resident set size (KB) = 621496 - -Test 049 control_CubedSphereGrid_debug PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_CubedSphereGrid_debug +Checking test 073 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + 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 = 174.857922 +0:The maximum resident set size (KB) = 621728 + +Test 073 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_wrtGauss_netcdf_parallel_debug -Checking test 050 control_wrtGauss_netcdf_parallel_debug results .... -Moving baseline 050 control_wrtGauss_netcdf_parallel_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wrtGauss_netcdf_parallel_debug +Checking test 074 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 163.390011 -0:The maximum resident set size (KB) = 621300 +0:The total amount of wall time = 162.903316 +0:The maximum resident set size (KB) = 621364 -Test 050 control_wrtGauss_netcdf_parallel_debug PASS +Test 074 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_stochy_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_stochy_debug -Checking test 051 control_stochy_debug results .... -Moving baseline 051 control_stochy_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_stochy_debug +Checking test 075 control_stochy_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 182.293880 -0:The maximum resident set size (KB) = 625092 +0:The total amount of wall time = 182.585868 +0:The maximum resident set size (KB) = 625100 -Test 051 control_stochy_debug PASS +Test 075 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_lndp_debug -Checking test 052 control_lndp_debug results .... -Moving baseline 052 control_lndp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_lndp_debug +Checking test 076 control_lndp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 165.377741 -0:The maximum resident set size (KB) = 626964 +0:The total amount of wall time = 164.125572 +0:The maximum resident set size (KB) = 627208 -Test 052 control_lndp_debug PASS +Test 076 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmg_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_csawmg_debug -Checking test 053 control_csawmg_debug results .... -Moving baseline 053 control_csawmg_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.263690 -0:The maximum resident set size (KB) = 671288 +0:The total amount of wall time = 257.788120 +0:The maximum resident set size (KB) = 671276 -Test 053 control_csawmg_debug PASS +Test 077 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_csawmgt_debug -Checking test 054 control_csawmgt_debug results .... -Moving baseline 054 control_csawmgt_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_csawmgt_debug +Checking test 078 control_csawmgt_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.998744 -0:The maximum resident set size (KB) = 671004 +0:The total amount of wall time = 256.653048 +0:The maximum resident set size (KB) = 671036 -Test 054 control_csawmgt_debug PASS +Test 078 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_ras_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_ras_debug -Checking test 055 control_ras_debug results .... -Moving baseline 055 control_ras_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 165.417221 -0:The maximum resident set size (KB) = 632408 +0:The total amount of wall time = 167.298986 +0:The maximum resident set size (KB) = 632388 -Test 055 control_ras_debug PASS +Test 079 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_diag_debug -Checking test 056 control_diag_debug results .... -Moving baseline 056 control_diag_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.669826 -0:The maximum resident set size (KB) = 677900 +0:The total amount of wall time = 169.616847 +0:The maximum resident set size (KB) = 677908 -Test 056 control_diag_debug PASS +Test 080 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_debug_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_debug_p8 -Checking test 057 control_debug_p8 results .... -Moving baseline 057 control_debug_p8 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 182.241572 -0:The maximum resident set size (KB) = 1444192 +0:The total amount of wall time = 182.363942 +0:The maximum resident set size (KB) = 1444204 -Test 057 control_debug_p8 PASS +Test 081 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_debug -Checking test 058 regional_debug results .... -Moving baseline 058 regional_debug files .... - Moving dynf000.nc .........OK - Moving dynf001.nc .........OK - Moving phyf000.nc .........OK - Moving phyf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 1033.969363 -0:The maximum resident set size (KB) = 621144 +0:The total amount of wall time = 1038.418634 +0:The maximum resident set size (KB) = 621192 -Test 058 regional_debug PASS +Test 082 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control_debug -Checking test 059 rap_control_debug results .... -Moving baseline 059 rap_control_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_debug +Checking test 083 rap_control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.168320 -0:The maximum resident set size (KB) = 989824 +0:The total amount of wall time = 297.353508 +0:The maximum resident set size (KB) = 989700 -Test 059 rap_control_debug PASS +Test 083 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hrrr_control_debug -Checking test 060 hrrr_control_debug results .... -Moving baseline 060 hrrr_control_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.112619 +0:The maximum resident set size (KB) = 988860 + +Test 084 hrrr_control_debug PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_unified_drag_suite_debug +Checking test 085 rap_unified_drag_suite_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.820875 -0:The maximum resident set size (KB) = 988824 +0:The total amount of wall time = 296.429464 +0:The maximum resident set size (KB) = 989904 -Test 060 hrrr_control_debug PASS +Test 085 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_diag_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_diag_debug -Checking test 061 rap_diag_debug results .... -Moving baseline 061 rap_diag_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 316.602170 +0:The maximum resident set size (KB) = 1074188 + +Test 086 rap_diag_debug PASS + -0:The total amount of wall time = 309.317398 -0:The maximum resident set size (KB) = 1074144 +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_cires_ugwp_debug +Checking test 087 rap_cires_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK + +0:The total amount of wall time = 304.119304 +0:The maximum resident set size (KB) = 988612 -Test 061 rap_diag_debug PASS +Test 087 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_cires_ugwp_debug -Checking test 062 rap_cires_ugwp_debug results .... -Moving baseline 062 rap_cires_ugwp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_unified_ugwp_debug +Checking test 088 rap_unified_ugwp_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 299.817407 -0:The maximum resident set size (KB) = 988496 +0:The total amount of wall time = 303.938516 +0:The maximum resident set size (KB) = 991852 -Test 062 rap_cires_ugwp_debug PASS +Test 088 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_lndp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_lndp_debug -Checking test 063 rap_lndp_debug results .... -Moving baseline 063 rap_lndp_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 296.165253 -0:The maximum resident set size (KB) = 990664 +0:The total amount of wall time = 302.359988 +0:The maximum resident set size (KB) = 990512 -Test 063 rap_lndp_debug PASS +Test 089 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_flake_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_flake_debug -Checking test 064 rap_flake_debug results .... -Moving baseline 064 rap_flake_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.826542 -0:The maximum resident set size (KB) = 989816 +0:The total amount of wall time = 295.182396 +0:The maximum resident set size (KB) = 989888 -Test 064 rap_flake_debug PASS +Test 090 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_progcld_thompson_debug -Checking test 065 rap_progcld_thompson_debug results .... -Moving baseline 065 rap_progcld_thompson_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.460849 -0:The maximum resident set size (KB) = 989804 +0:The total amount of wall time = 298.576563 +0:The maximum resident set size (KB) = 989876 -Test 065 rap_progcld_thompson_debug PASS +Test 091 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_noah_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_noah_debug -Checking test 066 rap_noah_debug results .... -Moving baseline 066 rap_noah_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_noah_debug +Checking test 092 rap_noah_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 288.103328 -0:The maximum resident set size (KB) = 988436 +0:The total amount of wall time = 291.435788 +0:The maximum resident set size (KB) = 988524 -Test 066 rap_noah_debug PASS +Test 092 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_sfcdiff_debug -Checking test 067 rap_sfcdiff_debug results .... -Moving baseline 067 rap_sfcdiff_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 293.565131 -0:The maximum resident set size (KB) = 991224 +0:The total amount of wall time = 298.335052 +0:The maximum resident set size (KB) = 991240 -Test 067 rap_sfcdiff_debug PASS +Test 093 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 068 rap_noah_sfcdiff_cires_ugwp_debug results .... -Moving baseline 068 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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.777202 -0:The maximum resident set size (KB) = 989412 +0:The total amount of wall time = 484.775687 +0:The maximum resident set size (KB) = 989508 -Test 068 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 094 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rrfs_v1beta_debug -Checking test 069 rrfs_v1beta_debug results .... -Moving baseline 069 rrfs_v1beta_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.632310 -0:The maximum resident set size (KB) = 986360 +0:The total amount of wall time = 290.015798 +0:The maximum resident set size (KB) = 986376 -Test 069 rrfs_v1beta_debug PASS +Test 095 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_wam_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_wam_debug -Checking test 070 control_wam_debug results .... -Moving baseline 070 control_wam_debug files .... - Moving sfcf019.nc .........OK - Moving atmf019.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_wam_debug +Checking test 096 control_wam_debug results .... + Comparing sfcf019.nc .........OK + Comparing atmf019.nc .........OK -0:The total amount of wall time = 297.127145 -0:The maximum resident set size (KB) = 237832 +0:The total amount of wall time = 296.765796 +0:The maximum resident set size (KB) = 238036 -Test 070 control_wam_debug PASS +Test 096 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_spp_sppt_shum_skeb_dyn32_phy32 -Checking test 071 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... -Moving baseline 071 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 = /glade/scratch/dswales/FV3_RT/rt_28410/regional_spp_sppt_shum_skeb_dyn32_phy32 +Checking test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... + 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 = 301.674599 -0:The maximum resident set size (KB) = 848376 +0:The total amount of wall time = 300.815529 +0:The maximum resident set size (KB) = 848140 -Test 071 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS +Test 097 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control_dyn32_phy32 -Checking test 072 rap_control_dyn32_phy32 results .... -Moving baseline 072 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 = 378.962512 -0:The maximum resident set size (KB) = 707368 - -Test 072 rap_control_dyn32_phy32 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_dyn32_phy32 +Checking test 098 rap_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 388.770717 +0:The maximum resident set size (KB) = 707124 + +Test 098 rap_control_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hrrr_control_dyn32_phy32 -Checking test 073 hrrr_control_dyn32_phy32 results .... -Moving baseline 073 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 = 204.968151 -0:The maximum resident set size (KB) = 705432 - -Test 073 hrrr_control_dyn32_phy32 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_dyn32_phy32 +Checking test 099 hrrr_control_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 205.344010 +0:The maximum resident set size (KB) = 705624 + +Test 099 hrrr_control_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_2threads_dyn32_phy32 +Checking test 100 rap_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + 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 = 378.917047 +0:The maximum resident set size (KB) = 757044 + +Test 100 rap_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_2threads_dyn32_phy32 +Checking test 101 hrrr_control_2threads_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + 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 = 201.733579 +0:The maximum resident set size (KB) = 758300 + +Test 101 hrrr_control_2threads_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_decomp_dyn32_phy32 +Checking test 102 hrrr_control_decomp_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + 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 = 214.420683 +0:The maximum resident set size (KB) = 703920 + +Test 102 hrrr_control_decomp_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_restart_dyn32_phy32 +Checking test 103 rap_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 287.467686 +0:The maximum resident set size (KB) = 545104 + +Test 103 rap_restart_dyn32_phy32 PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_restart_dyn32_phy32 +Checking test 104 hrrr_control_restart_dyn32_phy32 results .... + Comparing sfcf012.nc .........OK + Comparing atmf012.nc .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 106.354542 +0:The maximum resident set size (KB) = 540668 + +Test 104 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control_dyn64_phy32 -Checking test 074 rap_control_dyn64_phy32 results .... -Moving baseline 074 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 = 266.891139 -0:The maximum resident set size (KB) = 726748 - -Test 074 rap_control_dyn64_phy32 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/rap_control_dyn64_phy32 +Checking test 105 rap_control_dyn64_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf009.nc .........OK + Comparing sfcf012.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf009.nc .........OK + Comparing atmf012.nc .........OK + 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 = 267.394198 +0:The maximum resident set size (KB) = 726836 + +Test 105 rap_control_dyn64_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control_debug_dyn32_phy32 -Checking test 075 rap_control_debug_dyn32_phy32 results .... -Moving baseline 075 rap_control_debug_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.530407 -0:The maximum resident set size (KB) = 876536 +0:The total amount of wall time = 290.837877 +0:The maximum resident set size (KB) = 876092 -Test 075 rap_control_debug_dyn32_phy32 PASS +Test 106 rap_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hrrr_control_debug_dyn32_phy32 -Checking test 076 hrrr_control_debug_dyn32_phy32 results .... -Moving baseline 076 hrrr_control_debug_dyn32_phy32 files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hrrr_control_debug_dyn32_phy32 +Checking test 107 hrrr_control_debug_dyn32_phy32 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.491151 -0:The maximum resident set size (KB) = 874308 +0:The total amount of wall time = 286.134152 +0:The maximum resident set size (KB) = 874392 -Test 076 hrrr_control_debug_dyn32_phy32 PASS +Test 107 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn64_phy32 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/rap_control_dyn64_phy32_debug -Checking test 077 rap_control_dyn64_phy32_debug results .... -Moving baseline 077 rap_control_dyn64_phy32_debug files .... - Moving sfcf000.nc .........OK - Moving sfcf001.nc .........OK - Moving atmf000.nc .........OK - Moving atmf001.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.699988 -0:The maximum resident set size (KB) = 893348 +0:The total amount of wall time = 299.007261 +0:The maximum resident set size (KB) = 893676 -Test 077 rap_control_dyn64_phy32_debug PASS +Test 108 rap_control_dyn64_phy32_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_atm -Checking test 078 hafs_regional_atm results .... -Moving baseline 078 hafs_regional_atm files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK - Moving HURPRS.GrbF06 .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 254.882889 -0:The maximum resident set size (KB) = 720644 +0:The total amount of wall time = 254.581388 +0:The maximum resident set size (KB) = 715432 -Test 078 hafs_regional_atm PASS +Test 109 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_atm_thompson_gfdlsf -Checking test 079 hafs_regional_atm_thompson_gfdlsf results .... -Moving baseline 079 hafs_regional_atm_thompson_gfdlsf files .... - Moving atmf006.nc .........OK - Moving sfcf006.nc .........OK +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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.275679 -0:The maximum resident set size (KB) = 1070864 +0:The total amount of wall time = 277.240855 +0:The maximum resident set size (KB) = 1070620 -Test 079 hafs_regional_atm_thompson_gfdlsf PASS +Test 110 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_atm_ocn -Checking test 080 hafs_regional_atm_ocn results .... -Moving baseline 080 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_ocn +Checking test 111 hafs_regional_atm_ocn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + 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 = 446.424566 -0:The maximum resident set size (KB) = 719524 +0:The total amount of wall time = 445.314218 +0:The maximum resident set size (KB) = 719216 -Test 080 hafs_regional_atm_ocn PASS +Test 111 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_atm_wav -Checking test 081 hafs_regional_atm_wav results .... -Moving baseline 081 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_wav +Checking test 112 hafs_regional_atm_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing out_grd.ww3 .........OK + 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 = 974.412284 -0:The maximum resident set size (KB) = 747256 +0:The total amount of wall time = 1058.418292 +0:The maximum resident set size (KB) = 746912 -Test 081 hafs_regional_atm_wav PASS +Test 112 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_atm_ocn_wav -Checking test 082 hafs_regional_atm_ocn_wav results .... -Moving baseline 082 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_atm_ocn_wav +Checking test 113 hafs_regional_atm_ocn_wav results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing archv.2019_241_06.a .........OK + 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 = 1088.361727 -0:The maximum resident set size (KB) = 767780 +0:The total amount of wall time = 1117.614954 +0:The maximum resident set size (KB) = 768200 -Test 082 hafs_regional_atm_ocn_wav PASS +Test 113 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_1nest_atm -Checking test 083 hafs_regional_1nest_atm results .... -Moving baseline 083 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 370.441867 -0:The maximum resident set size (KB) = 284292 +0:The total amount of wall time = 371.737316 +0:The maximum resident set size (KB) = 284372 -Test 083 hafs_regional_1nest_atm PASS +Test 114 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_telescopic_2nests_atm -Checking test 084 hafs_regional_telescopic_2nests_atm results .... -Moving baseline 084 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_telescopic_2nests_atm +Checking test 115 hafs_regional_telescopic_2nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK -0:The total amount of wall time = 425.093473 -0:The maximum resident set size (KB) = 301636 +0:The total amount of wall time = 422.935362 +0:The maximum resident set size (KB) = 304856 -Test 084 hafs_regional_telescopic_2nests_atm PASS +Test 115 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_global_1nest_atm -Checking test 085 hafs_global_1nest_atm results .... -Moving baseline 085 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 171.448086 -0:The maximum resident set size (KB) = 202272 +0:The total amount of wall time = 169.969509 +0:The maximum resident set size (KB) = 202072 -Test 085 hafs_global_1nest_atm PASS +Test 116 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_global_multiple_4nests_atm -Checking test 086 hafs_global_multiple_4nests_atm results .... -Moving baseline 086 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 = 490.441889 -0:The maximum resident set size (KB) = 290668 - -Test 086 hafs_global_multiple_4nests_atm PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_global_multiple_4nests_atm +Checking test 117 hafs_global_multiple_4nests_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing atm.nest03.f006.nc .........OK + Comparing sfc.nest03.f006.nc .........OK + Comparing atm.nest04.f006.nc .........OK + Comparing sfc.nest04.f006.nc .........OK + Comparing atm.nest05.f006.nc .........OK + Comparing sfc.nest05.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK + Comparing HURPRS.GrbF06.nest03 .........OK + Comparing HURPRS.GrbF06.nest04 .........OK + Comparing HURPRS.GrbF06.nest05 .........OK + +0:The total amount of wall time = 491.891860 +0:The maximum resident set size (KB) = 290424 + +Test 117 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_specified_moving_1nest_atm -Checking test 087 hafs_regional_specified_moving_1nest_atm results .... -Moving baseline 087 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_specified_moving_1nest_atm +Checking test 118 hafs_regional_specified_moving_1nest_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing atm.nest02.f006.nc .........OK + Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + Comparing HURPRS.GrbF06.nest02 .........OK -0:The total amount of wall time = 237.661805 -0:The maximum resident set size (KB) = 303232 +0:The total amount of wall time = 239.275723 +0:The maximum resident set size (KB) = 303412 -Test 087 hafs_regional_specified_moving_1nest_atm PASS +Test 118 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_storm_following_1nest_atm -Checking test 088 hafs_regional_storm_following_1nest_atm results .... -Moving baseline 088 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 221.181832 -0:The maximum resident set size (KB) = 303216 +0:The total amount of wall time = 225.795426 +0:The maximum resident set size (KB) = 303204 -Test 088 hafs_regional_storm_following_1nest_atm PASS +Test 119 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_storm_following_1nest_atm_ocn -Checking test 089 hafs_regional_storm_following_1nest_atm_ocn results .... -Moving baseline 089 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_storm_following_1nest_atm_ocn +Checking test 120 hafs_regional_storm_following_1nest_atm_ocn results .... + 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 = 268.133293 -0:The maximum resident set size (KB) = 347644 +0:The total amount of wall time = 273.163180 +0:The maximum resident set size (KB) = 347148 -Test 089 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 120 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_global_storm_following_1nest_atm -Checking test 090 hafs_global_storm_following_1nest_atm results .... -Moving baseline 090 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 68.140451 -0:The maximum resident set size (KB) = 217256 +0:The total amount of wall time = 65.990258 +0:The maximum resident set size (KB) = 217056 -Test 090 hafs_global_storm_following_1nest_atm PASS +Test 121 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_storm_following_1nest_atm_ocn_debug -Checking test 091 hafs_regional_storm_following_1nest_atm_ocn_debug results .... -Moving baseline 091 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_storm_following_1nest_atm_ocn_debug +Checking test 122 hafs_regional_storm_following_1nest_atm_ocn_debug results .... + 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.735565 -0:The maximum resident set size (KB) = 378708 +0:The total amount of wall time = 819.505148 +0:The maximum resident set size (KB) = 378280 -Test 091 hafs_regional_storm_following_1nest_atm_ocn_debug PASS +Test 122 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 092 hafs_regional_storm_following_1nest_atm_ocn_wav results .... -Moving baseline 092 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 123 hafs_regional_storm_following_1nest_atm_ocn_wav results .... + 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 = 759.767179 -0:The maximum resident set size (KB) = 412860 +0:The total amount of wall time = 788.446945 +0:The maximum resident set size (KB) = 413088 -Test 092 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 123 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_docn -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_docn -Checking test 093 hafs_regional_docn results .... -Moving baseline 093 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_docn +Checking test 124 hafs_regional_docn results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 383.654961 -0:The maximum resident set size (KB) = 734964 +0:The total amount of wall time = 379.027475 +0:The maximum resident set size (KB) = 734888 -Test 093 hafs_regional_docn PASS +Test 124 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_docn_oisst -Checking test 094 hafs_regional_docn_oisst results .... -Moving baseline 094 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 = /glade/scratch/dswales/FV3_RT/rt_28410/hafs_regional_docn_oisst +Checking test 125 hafs_regional_docn_oisst results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK + Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 369.687104 -0:The maximum resident set size (KB) = 714576 +0:The total amount of wall time = 379.883614 +0:The maximum resident set size (KB) = 714456 -Test 094 hafs_regional_docn_oisst PASS +Test 125 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/hafs_regional_datm_cdeps -Checking test 095 hafs_regional_datm_cdeps results .... -Moving baseline 095 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 - -0:The total amount of wall time = 1158.556834 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/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 = 1277.377478 0:The maximum resident set size (KB) = 888020 -Test 095 hafs_regional_datm_cdeps PASS +Test 126 hafs_regional_datm_cdeps PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_control_cfsr +Checking test 127 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 168.343920 +0:The maximum resident set size (KB) = 727772 + +Test 127 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_control_cfsr -Checking test 096 datm_cdeps_control_cfsr results .... -Moving baseline 096 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_restart_cfsr +Checking test 128 datm_cdeps_restart_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-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.912690 -0:The maximum resident set size (KB) = 727752 +0:The total amount of wall time = 100.233397 +0:The maximum resident set size (KB) = 716000 -Test 096 datm_cdeps_control_cfsr PASS +Test 128 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_control_gefs -Checking test 097 datm_cdeps_control_gefs results .... -Moving baseline 097 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_control_gefs +Checking test 129 datm_cdeps_control_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 162.005607 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 160.584914 +0:The maximum resident set size (KB) = 607440 -Test 097 datm_cdeps_control_gefs PASS +Test 129 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_iau_gefs -Checking test 098 datm_cdeps_iau_gefs results .... -Moving baseline 098 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_iau_gefs +Checking test 130 datm_cdeps_iau_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-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.949439 -0:The maximum resident set size (KB) = 607480 +0:The total amount of wall time = 165.487074 +0:The maximum resident set size (KB) = 607496 -Test 098 datm_cdeps_iau_gefs PASS +Test 130 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_stochy_gefs -Checking test 099 datm_cdeps_stochy_gefs results .... -Moving baseline 099 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 - -0:The total amount of wall time = 164.584170 -0:The maximum resident set size (KB) = 607440 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_stochy_gefs +Checking test 131 datm_cdeps_stochy_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 166.339776 +0:The maximum resident set size (KB) = 607452 -Test 099 datm_cdeps_stochy_gefs PASS +Test 131 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_ciceC_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_ciceC_cfsr -Checking test 100 datm_cdeps_ciceC_cfsr results .... -Moving baseline 100 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_ciceC_cfsr +Checking test 132 datm_cdeps_ciceC_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 170.105424 -0:The maximum resident set size (KB) = 716656 +0:The total amount of wall time = 169.634443 +0:The maximum resident set size (KB) = 728776 -Test 100 datm_cdeps_ciceC_cfsr PASS +Test 132 datm_cdeps_ciceC_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_bulk_cfsr -Checking test 101 datm_cdeps_bulk_cfsr results .... -Moving baseline 101 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_bulk_cfsr +Checking test 133 datm_cdeps_bulk_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-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.036436 -0:The maximum resident set size (KB) = 716656 +0:The total amount of wall time = 163.471691 +0:The maximum resident set size (KB) = 716708 -Test 101 datm_cdeps_bulk_cfsr PASS +Test 133 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_bulk_gefs -Checking test 102 datm_cdeps_bulk_gefs results .... -Moving baseline 102 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_bulk_gefs +Checking test 134 datm_cdeps_bulk_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-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.908695 -0:The maximum resident set size (KB) = 607464 +0:The total amount of wall time = 156.094240 +0:The maximum resident set size (KB) = 607956 -Test 102 datm_cdeps_bulk_gefs PASS +Test 134 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_mx025_cfsr -Checking test 103 datm_cdeps_mx025_cfsr results .... -Moving baseline 103 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_mx025_cfsr +Checking test 135 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + 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 = 744.691586 -0:The maximum resident set size (KB) = 514312 +0:The total amount of wall time = 414.434465 +0:The maximum resident set size (KB) = 514336 -Test 103 datm_cdeps_mx025_cfsr PASS +Test 135 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_mx025_gefs -Checking test 104 datm_cdeps_mx025_gefs results .... -Moving baseline 104 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_mx025_gefs +Checking test 136 datm_cdeps_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-01-43200.nc .........OK + +0:The total amount of wall time = 417.305959 +0:The maximum resident set size (KB) = 494836 + +Test 136 datm_cdeps_mx025_gefs PASS -0:The total amount of wall time = 400.142320 -0:The maximum resident set size (KB) = 494772 -Test 104 datm_cdeps_mx025_gefs PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_multiple_files_cfsr +Checking test 137 datm_cdeps_multiple_files_cfsr results .... + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + +0:The total amount of wall time = 168.113967 +0:The maximum resident set size (KB) = 716860 + +Test 137 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_3072x1536_cfsr -Checking test 105 datm_cdeps_3072x1536_cfsr results .... -Moving baseline 105 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_3072x1536_cfsr +Checking test 138 datm_cdeps_3072x1536_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 240.322756 -0:The maximum resident set size (KB) = 1941432 +0:The total amount of wall time = 267.731918 +0:The maximum resident set size (KB) = 1942108 -Test 105 datm_cdeps_3072x1536_cfsr PASS +Test 138 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_gfs -Checking test 106 datm_cdeps_gfs results .... -Moving baseline 106 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 = /glade/scratch/dswales/FV3_RT/rt_28410/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.415693 -0:The maximum resident set size (KB) = 1940296 +0:The total amount of wall time = 259.043974 +0:The maximum resident set size (KB) = 1940284 -Test 106 datm_cdeps_gfs PASS +Test 139 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_debug_cfsr -Checking test 107 datm_cdeps_debug_cfsr results .... -Moving baseline 107 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_debug_cfsr +Checking test 140 datm_cdeps_debug_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-01-21600.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + +0:The total amount of wall time = 460.168976 +0:The maximum resident set size (KB) = 706724 + +Test 140 datm_cdeps_debug_cfsr PASS + + +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_lnd_gswp3 +Checking test 141 datm_cdeps_lnd_gswp3 results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 460.091926 -0:The maximum resident set size (KB) = 717856 +0:The total amount of wall time = 10.898450 +0:The maximum resident set size (KB) = 208260 -Test 107 datm_cdeps_debug_cfsr PASS +Test 141 datm_cdeps_lnd_gswp3 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/datm_cdeps_lnd_gswp3 -Checking test 108 datm_cdeps_lnd_gswp3 results .... -Moving baseline 108 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 = /glade/scratch/dswales/FV3_RT/rt_28410/datm_cdeps_lnd_gswp3_rst +Checking test 142 datm_cdeps_lnd_gswp3_rst results .... + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile1.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile2.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile3.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile4.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile5.nc .........OK + Comparing ufs.cpld.lnd.out.2000-01-02-00000.tile6.nc .........OK -0:The total amount of wall time = 10.516404 -0:The maximum resident set size (KB) = 208168 +0:The total amount of wall time = 15.996131 +0:The maximum resident set size (KB) = 210128 -Test 108 datm_cdeps_lnd_gswp3 PASS +Test 142 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_p8_atmlnd_sbs -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_p8_atmlnd_sbs -Checking test 109 control_p8_atmlnd_sbs results .... -Moving baseline 109 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 = 235.519765 -0:The maximum resident set size (KB) = 1462064 - -Test 109 control_p8_atmlnd_sbs PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_p8_atmlnd_sbs +Checking test 143 control_p8_atmlnd_sbs results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.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 = 233.900666 +0:The maximum resident set size (KB) = 1462076 + +Test 143 control_p8_atmlnd_sbs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/control_atmwav -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/control_atmwav -Checking test 110 control_atmwav results .... -Moving baseline 110 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 = 98.787058 -0:The maximum resident set size (KB) = 474696 - -Test 110 control_atmwav PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/control_atmwav +Checking test 144 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 = 99.104134 +0:The maximum resident set size (KB) = 474744 + +Test 144 control_atmwav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8 -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/atmaero_control_p8 -Checking test 111 atmaero_control_p8 results .... -Moving baseline 111 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 = 248.499058 -0:The maximum resident set size (KB) = 2703316 - -Test 111 atmaero_control_p8 PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8 +Checking test 145 atmaero_control_p8 results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + +0:The total amount of wall time = 249.713829 +0:The maximum resident set size (KB) = 2703300 + +Test 145 atmaero_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/atmaero_control_p8_rad -Checking test 112 atmaero_control_p8_rad results .... -Moving baseline 112 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 = 306.250921 -0:The maximum resident set size (KB) = 2757460 - -Test 112 atmaero_control_p8_rad PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8_rad +Checking test 146 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 = 303.490773 +0:The maximum resident set size (KB) = 2757568 + +Test 146 atmaero_control_p8_rad PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad_micro -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/atmaero_control_p8_rad_micro -Checking test 113 atmaero_control_p8_rad_micro results .... -Moving baseline 113 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 = 297.710100 -0:The maximum resident set size (KB) = 2763916 - -Test 113 atmaero_control_p8_rad_micro PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/atmaero_control_p8_rad_micro +Checking test 147 atmaero_control_p8_rad_micro results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + 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 = 306.475800 +0:The maximum resident set size (KB) = 2763956 + +Test 147 atmaero_control_p8_rad_micro PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NCAR/main-20230316/INTEL/regional_atmaq -working dir = /glade/scratch/dswales/FV3_RT/rt_4746/regional_atmaq -Checking test 114 regional_atmaq results .... -Moving baseline 114 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 = 1107.140995 -0:The maximum resident set size (KB) = 1139868 - -Test 114 regional_atmaq PASS +working dir = /glade/scratch/dswales/FV3_RT/rt_28410/regional_atmaq +Checking test 148 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 = 982.454719 +0:The maximum resident set size (KB) = 1139824 + +Test 148 regional_atmaq PASS REGRESSION TEST WAS SUCCESSFUL -Thu Mar 16 21:09:14 MDT 2023 -Elapsed time: 01h:07m:47s. Have a nice day! +Fri Mar 24 15:38:28 MDT 2023 +Elapsed time: 03h:22m:00s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 37ac5a3f9f..ef6ab406e4 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,21 +1,21 @@ -Fri Mar 17 00:26:12 UTC 2023 +Tue Mar 21 02:48:57 UTC 2023 Start Regression test -Compile 001 elapsed time 180 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 310 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 179 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 390 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 253 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 010 elapsed time 223 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 011 elapsed time 142 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 012 elapsed time 123 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 184 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 105 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 183 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 391 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 315 seconds. -DAPP=ATM -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 317 seconds. -DAPP=ATM -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 254 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 010 elapsed time 228 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 011 elapsed time 155 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 012 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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.625531 -0: The maximum resident set size (KB) = 701320 +0: The total amount of wall time = 685.337084 +0: The maximum resident set size (KB) = 701564 Test 001 control_c48 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 653.080267 - 0: The maximum resident set size (KB) = 479972 + 0: The total amount of wall time = 654.924625 + 0: The maximum resident set size (KB) = 478792 Test 002 control_stochy PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 829.088078 - 0: The maximum resident set size (KB) = 484812 + 0: The total amount of wall time = 826.133070 + 0: The maximum resident set size (KB) = 485744 Test 003 control_ras PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 893.876041 - 0: The maximum resident set size (KB) = 1235512 + 0: The total amount of wall time = 894.209857 + 0: The maximum resident set size (KB) = 1234296 Test 004 control_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1466.287427 - 0: The maximum resident set size (KB) = 830620 + 0: The total amount of wall time = 1516.583818 + 0: The maximum resident set size (KB) = 830748 Test 005 rap_control PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1417.997448 - 0: The maximum resident set size (KB) = 832504 + 0: The total amount of wall time = 1494.832087 + 0: The maximum resident set size (KB) = 833176 Test 006 rap_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1352.042235 - 0: The maximum resident set size (KB) = 898972 + 0: The total amount of wall time = 1410.346963 + 0: The maximum resident set size (KB) = 899472 Test 007 rap_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 724.031108 - 0: The maximum resident set size (KB) = 547084 + 0: The total amount of wall time = 722.069672 + 0: The maximum resident set size (KB) = 544784 Test 008 rap_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1469.187328 - 0: The maximum resident set size (KB) = 832372 + 0: The total amount of wall time = 1526.945705 + 0: The maximum resident set size (KB) = 829184 Test 009 rap_sfcdiff PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_sfcdiff_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1450.549350 - 0: The maximum resident set size (KB) = 830056 + 0: The total amount of wall time = 1513.777026 + 0: The maximum resident set size (KB) = 833164 Test 010 rap_sfcdiff_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_sfcdiff_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1099.915563 - 0: The maximum resident set size (KB) = 545156 + 0: The total amount of wall time = 1063.442617 + 0: The maximum resident set size (KB) = 546632 Test 011 rap_sfcdiff_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1418.867637 - 0: The maximum resident set size (KB) = 825660 + 0: The total amount of wall time = 1419.513586 + 0: The maximum resident set size (KB) = 832240 Test 012 hrrr_control PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1348.036749 - 0: The maximum resident set size (KB) = 890140 + 0: The total amount of wall time = 1380.248688 + 0: The maximum resident set size (KB) = 888744 Test 013 hrrr_control_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1411.501858 - 0: The maximum resident set size (KB) = 824400 + 0: The total amount of wall time = 1450.985125 + 0: The maximum resident set size (KB) = 826476 Test 014 hrrr_control_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1043.761481 - 0: The maximum resident set size (KB) = 541700 + 0: The total amount of wall time = 1058.166556 + 0: The maximum resident set size (KB) = 543076 Test 015 hrrr_control_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1412.824893 - 0: The maximum resident set size (KB) = 826408 + 0: The total amount of wall time = 1523.716179 + 0: The maximum resident set size (KB) = 823308 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -784,14 +784,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 761.241579 - 0: The maximum resident set size (KB) = 635080 + 0: The total amount of wall time = 761.366503 + 0: The maximum resident set size (KB) = 636608 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 785.892647 - 0: The maximum resident set size (KB) = 652044 + 0: The total amount of wall time = 792.971430 + 0: The maximum resident set size (KB) = 651604 Test 018 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 737.266202 - 0: The maximum resident set size (KB) = 640816 + 0: The total amount of wall time = 743.100640 + 0: The maximum resident set size (KB) = 640008 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 948.482063 - 0: The maximum resident set size (KB) = 635084 + 0: The total amount of wall time = 918.207861 + 0: The maximum resident set size (KB) = 624404 Test 020 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 127.322445 - 0: The maximum resident set size (KB) = 536048 + 0: The total amount of wall time = 125.068557 + 0: The maximum resident set size (KB) = 535308 Test 021 control_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 722.628877 - 0: The maximum resident set size (KB) = 592972 + 0: The total amount of wall time = 695.912020 + 0: The maximum resident set size (KB) = 592380 Test 022 regional_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.076638 - 0: The maximum resident set size (KB) = 851216 + 0: The total amount of wall time = 175.287817 + 0: The maximum resident set size (KB) = 854384 Test 023 rap_control_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_debug Checking test 024 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.436303 - 0: The maximum resident set size (KB) = 846268 + 0: The total amount of wall time = 169.417275 + 0: The maximum resident set size (KB) = 843188 Test 024 hrrr_control_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_diag_debug Checking test 025 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 212.755089 - 0: The maximum resident set size (KB) = 933268 + 0: The total amount of wall time = 218.586320 + 0: The maximum resident set size (KB) = 935996 Test 025 rap_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_noah_sfcdiff_cires_ugwp_debug Checking test 026 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.538310 - 0: The maximum resident set size (KB) = 852228 + 0: The total amount of wall time = 275.374301 + 0: The maximum resident set size (KB) = 854728 Test 026 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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.354520 - 0: The maximum resident set size (KB) = 854292 + 0: The total amount of wall time = 173.968349 + 0: The maximum resident set size (KB) = 854672 Test 027 rap_progcld_thompson_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_v1beta_debug Checking test 028 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.633465 - 0: The maximum resident set size (KB) = 853736 + 0: The total amount of wall time = 172.618352 + 0: The maximum resident set size (KB) = 844824 Test 028 rrfs_v1beta_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_ras_debug Checking test 029 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.120031 - 0: The maximum resident set size (KB) = 488208 + 0: The total amount of wall time = 103.819205 + 0: The maximum resident set size (KB) = 490420 Test 029 control_ras_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_stochy_debug Checking test 030 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 117.523990 - 0: The maximum resident set size (KB) = 484668 + 0: The total amount of wall time = 117.528704 + 0: The maximum resident set size (KB) = 481832 Test 030 control_stochy_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/control_debug_p8 Checking test 031 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 118.556713 - 0: The maximum resident set size (KB) = 1237020 + 0: The total amount of wall time = 120.960577 + 0: The maximum resident set size (KB) = 1238172 Test 031 control_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 560.193116 - 0: The maximum resident set size (KB) = 648956 + 0: The total amount of wall time = 568.164384 + 0: The maximum resident set size (KB) = 647836 Test 032 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rrfs_conus13km_radar_tten_warm_debug Checking test 033 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 584.413399 - 0: The maximum resident set size (KB) = 653252 + 0: The total amount of wall time = 559.969880 + 0: The maximum resident set size (KB) = 650800 Test 033 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 182.495933 - 0: The maximum resident set size (KB) = 193100 + 0: The total amount of wall time = 183.132970 + 0: The maximum resident set size (KB) = 193252 Test 034 control_wam_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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.056698 - 0: The maximum resident set size (KB) = 688776 + 0: The total amount of wall time = 1431.611216 + 0: The maximum resident set size (KB) = 684852 Test 035 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 722.293914 - 0: The maximum resident set size (KB) = 688848 + 0: The total amount of wall time = 710.574121 + 0: The maximum resident set size (KB) = 691084 Test 036 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_2threads_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1318.178862 - 0: The maximum resident set size (KB) = 731968 + 0: The total amount of wall time = 1398.584490 + 0: The maximum resident set size (KB) = 731676 Test 037 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 671.431685 - 0: The maximum resident set size (KB) = 730780 + 0: The total amount of wall time = 664.614174 + 0: The maximum resident set size (KB) = 731800 Test 038 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 731.373803 - 0: The maximum resident set size (KB) = 686460 + 0: The total amount of wall time = 752.403159 + 0: The maximum resident set size (KB) = 683232 Test 039 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_restart_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1089.381873 - 0: The maximum resident set size (KB) = 516816 + 0: The total amount of wall time = 1084.876133 + 0: The maximum resident set size (KB) = 514396 Test 040 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 360.749689 - 0: The maximum resident set size (KB) = 506656 + 0: The total amount of wall time = 368.111082 + 0: The maximum resident set size (KB) = 510528 Test 041 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1055.562965 - 0: The maximum resident set size (KB) = 709276 + 0: The total amount of wall time = 1073.283132 + 0: The maximum resident set size (KB) = 709144 Test 042 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_debug_dyn32_phy32 Checking test 043 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.359539 - 0: The maximum resident set size (KB) = 706224 + 0: The total amount of wall time = 176.447888 + 0: The maximum resident set size (KB) = 702840 Test 043 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/hrrr_control_debug_dyn32_phy32 Checking test 044 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.965323 - 0: The maximum resident set size (KB) = 701524 + 0: The total amount of wall time = 174.142370 + 0: The maximum resident set size (KB) = 703916 Test 044 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/rap_control_dyn64_phy32_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/rap_control_dyn64_phy32_debug Checking test 045 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 206.038406 - 0: The maximum resident set size (KB) = 721416 + 0: The total amount of wall time = 204.498946 + 0: The maximum resident set size (KB) = 721568 Test 045 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1735.197038 - 0: The maximum resident set size (KB) = 1429868 + 0: The total amount of wall time = 1708.277445 + 0: The maximum resident set size (KB) = 1430744 Test 046 cpld_control_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/cpld_control_nowave_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 1259.347920 - 0: The maximum resident set size (KB) = 1333372 + 0: The total amount of wall time = 1225.249079 + 0: The maximum resident set size (KB) = 1331808 Test 047 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 877.152063 - 0: The maximum resident set size (KB) = 1445812 + 0: The total amount of wall time = 1059.636986 + 0: The maximum resident set size (KB) = 1445100 Test 048 cpld_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_13039/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15757/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 = 174.007834 - 0: The maximum resident set size (KB) = 666720 + 0: The total amount of wall time = 177.478030 + 0: The maximum resident set size (KB) = 662488 Test 049 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 17 03:30:29 UTC 2023 -Elapsed time: 03h:04m:18s. Have a nice day! +Tue Mar 21 09:11:33 UTC 2023 +Elapsed time: 06h:22m:36s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 5a91145759..1210e94d04 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,38 +1,38 @@ -Fri Mar 17 08:12:24 UTC 2023 +Tue Mar 21 09:14:04 UTC 2023 Start Regression test -Compile 001 elapsed time 597 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 604 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 003 elapsed time 560 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 004 elapsed time 232 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 005 elapsed time 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 512 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 007 elapsed time 502 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 008 elapsed time 484 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 009 elapsed time 474 seconds. -DAPP=ATM -DCCPP_SUITES=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 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 434 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 213 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 013 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 014 elapsed time 436 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 154 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 163 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 188 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 020 elapsed time 627 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 021 elapsed time 572 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 022 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 023 elapsed time 111 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 024 elapsed time 67 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 025 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 026 elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 027 elapsed time 464 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 028 elapsed time 468 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 029 elapsed time 167 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 594 seconds. -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 596 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 003 elapsed time 568 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 224 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_cpld_rasmgshocnsstnoahmp_ugwp -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 005 elapsed time 210 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 006 elapsed time 501 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 007 elapsed time 497 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 008 elapsed time 480 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km,FV3_WoFS_v0 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 465 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 429 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 012 elapsed time 204 seconds. -DAPP=ATM -DDEBUG=ON -D32BIT=ON -DCCPP_SUITES=FV3_HRRR,FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_ras,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km,FV3_RAP,FV3_HRRR,FV3_RAP_unified_ugwp,FV3_RAP_cires_ugwp,FV3_RAP_flake,FV3_RAP_noah,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 013 elapsed time 162 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 014 elapsed time 426 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 444 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 016 elapsed time 158 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -D32BIT=ON -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 017 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_HRRR -DCCPP_32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 018 elapsed time 537 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 019 elapsed time 194 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 020 elapsed time 624 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v1_thompson_noahmp_nonsst,FV3_HAFS_v1_thompson_noahmp,FV3_HAFS_v1_thompson_nonsst,FV3_HAFS_v1_thompson,FV3_HAFS_v1_gfdlmp_tedmf_nonsst,FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_thompson_tedmf_gfdlsf -D32BIT=ON -DFASTER=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 021 elapsed time 558 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v1_gfdlmp_tedmf,FV3_HAFS_v1_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 022 elapsed time 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 023 elapsed time 123 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 024 elapsed time 75 seconds. -DAPP=LND -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 025 elapsed time 474 seconds. -DAPP=ATML -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v15_thompson_mynn_lam3km -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 026 elapsed time 528 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 027 elapsed time 482 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 028 elapsed time 481 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 029 elapsed time 193 seconds. -DAPP=ATMAQ -DCCPP_SUITES=FV3_GFS_v15p2 -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8_mixedmode -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_p8_mixedmode +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 302.842187 - 0: The maximum resident set size (KB) = 3142088 + 0: The total amount of wall time = 305.040932 + 0: The maximum resident set size (KB) = 3148920 Test 001 cpld_control_p8_mixedmode PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_gfsv17 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_gfsv17 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 221.054871 - 0: The maximum resident set size (KB) = 1729092 + 0: The total amount of wall time = 221.188881 + 0: The maximum resident set size (KB) = 1729716 Test 002 cpld_control_gfsv17 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 338.139900 - 0: The maximum resident set size (KB) = 3180680 + 0: The total amount of wall time = 335.190596 + 0: The maximum resident set size (KB) = 3173488 Test 003 cpld_control_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_restart_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 194.532886 - 0: The maximum resident set size (KB) = 3050168 + 0: The total amount of wall time = 192.578940 + 0: The maximum resident set size (KB) = 3043968 Test 004 cpld_restart_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_2threads_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 352.043885 - 0: The maximum resident set size (KB) = 3514496 + 0: The total amount of wall time = 348.619849 + 0: The maximum resident set size (KB) = 3517348 Test 005 cpld_2threads_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_decomp_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 337.925403 - 0: The maximum resident set size (KB) = 3165452 + 0: The total amount of wall time = 337.155308 + 0: The maximum resident set size (KB) = 3171940 Test 006 cpld_decomp_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_mpi_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 275.737389 - 0: The maximum resident set size (KB) = 3020296 + 0: The total amount of wall time = 276.054354 + 0: The maximum resident set size (KB) = 3018156 Test 007 cpld_mpi_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_ciceC_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_ciceC_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 339.487475 - 0: The maximum resident set size (KB) = 3178932 + 0: The total amount of wall time = 333.357215 + 0: The maximum resident set size (KB) = 3179364 Test 008 cpld_control_ciceC_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 574.314547 - 0: The maximum resident set size (KB) = 3251420 + 0: The total amount of wall time = 572.572902 + 0: The maximum resident set size (KB) = 3252668 Test 009 cpld_control_c192_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c192_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_restart_c192_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 400.238394 - 0: The maximum resident set size (KB) = 3157252 + 0: The total amount of wall time = 402.585472 + 0: The maximum resident set size (KB) = 3150288 Test 010 cpld_restart_c192_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 695.191007 - 0: The maximum resident set size (KB) = 4026880 + 0: The total amount of wall time = 688.763719 + 0: The maximum resident set size (KB) = 4035212 Test 011 cpld_bmark_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_bmark_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_restart_bmark_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 434.850448 - 0: The maximum resident set size (KB) = 3971800 + 0: The total amount of wall time = 442.451115 + 0: The maximum resident set size (KB) = 3971040 Test 012 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_noaero_p8 Checking test 013 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -853,14 +853,14 @@ Checking test 013 cpld_control_noaero_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 261.310387 - 0: The maximum resident set size (KB) = 1720200 + 0: The total amount of wall time = 259.297296 + 0: The maximum resident set size (KB) = 1722844 Test 013 cpld_control_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c96_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_nowave_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.087601 - 0: The maximum resident set size (KB) = 1771240 + 0: The total amount of wall time = 254.614524 + 0: The maximum resident set size (KB) = 1770072 Test 014 cpld_control_nowave_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 655.289783 - 0: The maximum resident set size (KB) = 3238156 + 0: The total amount of wall time = 661.033284 + 0: The maximum resident set size (KB) = 3243500 Test 015 cpld_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_debug_noaero_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_debug_noaero_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 408.167401 - 0: The maximum resident set size (KB) = 1734772 + 0: The total amount of wall time = 405.512555 + 0: The maximum resident set size (KB) = 1730068 Test 016 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_noaero_p8_agrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_noaero_p8_agrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_control_noaero_p8_agrid Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1110,14 +1110,14 @@ Checking test 017 cpld_control_noaero_p8_agrid results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 264.098904 - 0: The maximum resident set size (KB) = 1769740 + 0: The total amount of wall time = 265.131202 + 0: The maximum resident set size (KB) = 1764320 Test 017 cpld_control_noaero_p8_agrid PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 583.296859 - 0: The maximum resident set size (KB) = 2799588 + 0: The total amount of wall time = 582.545568 + 0: The maximum resident set size (KB) = 2798700 Test 018 cpld_control_c48 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_warmstart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 159.037048 - 0: The maximum resident set size (KB) = 2805284 + 0: The total amount of wall time = 156.707939 + 0: The maximum resident set size (KB) = 2806724 Test 019 cpld_warmstart_c48 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/cpld_warmstart_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/cpld_restart_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/cpld_restart_c48 Checking test 020 cpld_restart_c48 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1281,14 +1281,14 @@ Checking test 020 cpld_restart_c48 results .... Comparing RESTART/iced.2021-03-23-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc .........OK - 0: The total amount of wall time = 83.491929 - 0: The maximum resident set size (KB) = 2246700 + 0: The total amount of wall time = 84.844273 + 0: The maximum resident set size (KB) = 2238044 Test 020 cpld_restart_c48 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_CubedSphereGrid +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1315,28 +1315,28 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 128.224806 - 0: The maximum resident set size (KB) = 634136 + 0: The total amount of wall time = 128.713117 + 0: The maximum resident set size (KB) = 627696 Test 021 control_CubedSphereGrid PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_CubedSphereGrid_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid_parallel Checking test 022 control_CubedSphereGrid_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 127.324186 - 0: The maximum resident set size (KB) = 626044 + 0: The total amount of wall time = 126.544426 + 0: The maximum resident set size (KB) = 623468 Test 022 control_CubedSphereGrid_parallel PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_latlon -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_latlon +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_latlon Checking test 023 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1347,16 +1347,16 @@ Checking test 023 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.640110 - 0: The maximum resident set size (KB) = 628200 + 0: The total amount of wall time = 131.794875 + 0: The maximum resident set size (KB) = 627464 Test 023 control_latlon PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_wrtGauss_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wrtGauss_netcdf_parallel Checking test 024 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.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 = 134.500508 - 0: The maximum resident set size (KB) = 626516 + 0: The total amount of wall time = 134.670386 + 0: The maximum resident set size (KB) = 626196 Test 024 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c48 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_c48 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 370.164446 -0: The maximum resident set size (KB) = 816840 +0: The total amount of wall time = 369.620097 +0: The maximum resident set size (KB) = 805592 Test 025 control_c48 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c192 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_c192 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c192 Checking test 026 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1429,14 +1429,14 @@ Checking test 026 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 524.300719 - 0: The maximum resident set size (KB) = 759512 + 0: The total amount of wall time = 525.836495 + 0: The maximum resident set size (KB) = 762268 Test 026 control_c192 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c384 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_c384 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_c384 Checking test 027 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1447,14 +1447,14 @@ Checking test 027 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 527.879992 - 0: The maximum resident set size (KB) = 1194424 + 0: The total amount of wall time = 525.135481 + 0: The maximum resident set size (KB) = 1205864 Test 027 control_c384 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_c384gdas -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_c384gdas +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 454.513833 - 0: The maximum resident set size (KB) = 1341420 + 0: The total amount of wall time = 461.023145 + 0: The maximum resident set size (KB) = 1337188 Test 028 control_c384gdas PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_stochy +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_stochy Checking test 029 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1515,28 +1515,28 @@ Checking test 029 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 87.871702 - 0: The maximum resident set size (KB) = 627268 + 0: The total amount of wall time = 87.702097 + 0: The maximum resident set size (KB) = 635280 Test 029 control_stochy PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_stochy_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.393521 - 0: The maximum resident set size (KB) = 478540 + 0: The total amount of wall time = 46.957004 + 0: The maximum resident set size (KB) = 480420 Test 030 control_stochy_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_lndp Checking test 031 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1547,14 +1547,14 @@ Checking test 031 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.065638 - 0: The maximum resident set size (KB) = 629168 + 0: The total amount of wall time = 80.291861 + 0: The maximum resident set size (KB) = 629124 Test 031 control_lndp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_iovr4 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_iovr4 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.472241 - 0: The maximum resident set size (KB) = 619620 + 0: The total amount of wall time = 132.921945 + 0: The maximum resident set size (KB) = 631980 Test 032 control_iovr4 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_iovr5 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_iovr5 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.437506 - 0: The maximum resident set size (KB) = 623656 + 0: The total amount of wall time = 134.632213 + 0: The maximum resident set size (KB) = 631664 Test 033 control_iovr5 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 166.175795 - 0: The maximum resident set size (KB) = 1601340 + 0: The total amount of wall time = 165.390225 + 0: The maximum resident set size (KB) = 1595820 Test 034 control_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_lndp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_p8_lndp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_lndp Checking test 035 control_p8_lndp results .... Comparing 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 = 311.300988 - 0: The maximum resident set size (KB) = 1601016 + 0: The total amount of wall time = 309.079465 + 0: The maximum resident set size (KB) = 1591684 Test 035 control_p8_lndp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_restart_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.293717 - 0: The maximum resident set size (KB) = 866884 + 0: The total amount of wall time = 86.273838 + 0: The maximum resident set size (KB) = 859500 Test 036 control_restart_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_decomp_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_decomp_p8 Checking test 037 control_decomp_p8 results .... Comparing 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 = 171.723138 - 0: The maximum resident set size (KB) = 1590048 + 0: The total amount of wall time = 170.182024 + 0: The maximum resident set size (KB) = 1583388 Test 037 control_decomp_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_2threads_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_2threads_p8 Checking test 038 control_2threads_p8 results .... Comparing 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 = 164.215176 - 0: The maximum resident set size (KB) = 1685412 + 0: The total amount of wall time = 162.031494 + 0: The maximum resident set size (KB) = 1685884 Test 038 control_2threads_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_rrtmgp -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_p8_rrtmgp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_rrtmgp Checking test 039 control_p8_rrtmgp results .... Comparing 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 = 222.695276 - 0: The maximum resident set size (KB) = 1662212 + 0: The total amount of wall time = 221.549982 + 0: The maximum resident set size (KB) = 1665484 Test 039 control_p8_rrtmgp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/merra2_thompson -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/merra2_thompson +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 188.709357 - 0: The maximum resident set size (KB) = 1611332 + 0: The total amount of wall time = 186.927940 + 0: The maximum resident set size (KB) = 1614072 Test 040 merra2_thompson PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_control Checking test 041 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1943,28 +1943,28 @@ Checking test 041 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 293.086149 - 0: The maximum resident set size (KB) = 860788 + 0: The total amount of wall time = 290.657603 + 0: The maximum resident set size (KB) = 866324 Test 041 regional_control PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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.413238 - 0: The maximum resident set size (KB) = 858264 + 0: The total amount of wall time = 148.385937 + 0: The maximum resident set size (KB) = 857416 Test 042 regional_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 311.734527 - 0: The maximum resident set size (KB) = 851492 + 0: The total amount of wall time = 311.779246 + 0: The maximum resident set size (KB) = 854508 Test 043 regional_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_2threads Checking test 044 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1993,14 +1993,14 @@ Checking test 044 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 182.239355 - 0: The maximum resident set size (KB) = 840024 + 0: The total amount of wall time = 180.930510 + 0: The maximum resident set size (KB) = 832620 Test 044 regional_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_noquilt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_noquilt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_noquilt Checking test 045 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -2008,28 +2008,28 @@ Checking test 045 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 319.925305 - 0: The maximum resident set size (KB) = 854092 + 0: The total amount of wall time = 321.613220 + 0: The maximum resident set size (KB) = 857156 Test 045 regional_noquilt PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_netcdf_parallel -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_netcdf_parallel +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_netcdf_parallel Checking test 046 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK Comparing phyf006.nc .........OK - 0: The total amount of wall time = 291.889111 - 0: The maximum resident set size (KB) = 854956 + 0: The total amount of wall time = 289.260310 + 0: The maximum resident set size (KB) = 849284 Test 046 regional_netcdf_parallel PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_2dwrtdecomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 295.913332 - 0: The maximum resident set size (KB) = 866804 + 0: The total amount of wall time = 295.072220 + 0: The maximum resident set size (KB) = 869188 Test 047 regional_2dwrtdecomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/fv3_regional_wofs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_wofs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 373.999385 - 0: The maximum resident set size (KB) = 621336 + 0: The total amount of wall time = 373.307837 + 0: The maximum resident set size (KB) = 622428 Test 048 regional_wofs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 455.295143 - 0: The maximum resident set size (KB) = 1057272 + 0: The total amount of wall time = 458.097483 + 0: The maximum resident set size (KB) = 1054100 Test 049 rap_control PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_spp_sppt_shum_skeb +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_spp_sppt_shum_skeb Checking test 050 regional_spp_sppt_shum_skeb results .... Comparing 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 = 281.941395 - 0: The maximum resident set size (KB) = 1179368 + 0: The total amount of wall time = 282.077469 + 0: The maximum resident set size (KB) = 1177540 Test 050 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 477.687981 - 0: The maximum resident set size (KB) = 1009672 + 0: The total amount of wall time = 479.371894 + 0: The maximum resident set size (KB) = 1004428 Test 051 rap_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 439.642643 - 0: The maximum resident set size (KB) = 1125804 + 0: The total amount of wall time = 438.802362 + 0: The maximum resident set size (KB) = 1130424 Test 052 rap_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 232.087156 - 0: The maximum resident set size (KB) = 965432 + 0: The total amount of wall time = 231.312694 + 0: The maximum resident set size (KB) = 966180 Test 053 rap_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_sfcdiff +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 451.125975 - 0: The maximum resident set size (KB) = 1063584 + 0: The total amount of wall time = 454.034776 + 0: The maximum resident set size (KB) = 1078576 Test 054 rap_sfcdiff PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_sfcdiff_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 480.634450 - 0: The maximum resident set size (KB) = 1001588 + 0: The total amount of wall time = 480.012399 + 0: The maximum resident set size (KB) = 1005788 Test 055 rap_sfcdiff_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_sfcdiff_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 339.426734 - 0: The maximum resident set size (KB) = 981024 + 0: The total amount of wall time = 340.996945 + 0: The maximum resident set size (KB) = 979748 Test 056 rap_sfcdiff_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 441.414872 - 0: The maximum resident set size (KB) = 1068728 + 0: The total amount of wall time = 434.285321 + 0: The maximum resident set size (KB) = 1055344 Test 057 hrrr_control PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_decomp +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 457.395120 - 0: The maximum resident set size (KB) = 1004304 + 0: The total amount of wall time = 457.299751 + 0: The maximum resident set size (KB) = 1002900 Test 058 hrrr_control_decomp PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 417.270689 - 0: The maximum resident set size (KB) = 1135628 + 0: The total amount of wall time = 416.500209 + 0: The maximum resident set size (KB) = 1126932 Test 059 hrrr_control_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_restart +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 327.858763 - 0: The maximum resident set size (KB) = 979884 + 0: The total amount of wall time = 328.027001 + 0: The maximum resident set size (KB) = 985772 Test 060 hrrr_control_restart PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1beta -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_v1beta +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 448.448342 + 0: The total amount of wall time = 448.025278 0: The maximum resident set size (KB) = 1057368 Test 061 rrfs_v1beta PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_v1nssl +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 530.930916 - 0: The maximum resident set size (KB) = 692732 + 0: The total amount of wall time = 526.065486 + 0: The maximum resident set size (KB) = 693432 Test 062 rrfs_v1nssl PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1nssl_nohailnoccn Checking test 063 rrfs_v1nssl_nohailnoccn results .... 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.583399 - 0: The maximum resident set size (KB) = 757536 + 0: The total amount of wall time = 516.459513 + 0: The maximum resident set size (KB) = 756064 Test 063 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2760,14 +2760,14 @@ Checking test 064 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 122.634660 - 0: The maximum resident set size (KB) = 930836 + 0: The total amount of wall time = 122.930152 + 0: The maximum resident set size (KB) = 930468 Test 064 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_smoke_conus13km_hrrr_warm Checking test 065 rrfs_smoke_conus13km_hrrr_warm results .... 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 = 139.112752 - 0: The maximum resident set size (KB) = 955588 + 0: The total amount of wall time = 138.843229 + 0: The maximum resident set size (KB) = 957376 Test 065 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm Checking test 066 rrfs_conus13km_radar_tten_warm results .... 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 = 124.037854 - 0: The maximum resident set size (KB) = 936588 + 0: The total amount of wall time = 123.420319 + 0: The maximum resident set size (KB) = 934872 Test 066 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_hrrr_warm_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm_2threads Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2808,14 +2808,14 @@ Checking test 067 rrfs_conus13km_hrrr_warm_2threads results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 77.632459 - 0: The maximum resident set size (KB) = 838396 + 0: The total amount of wall time = 77.743505 + 0: The maximum resident set size (KB) = 840752 Test 067 rrfs_conus13km_hrrr_warm_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_radar_tten_warm_2threads +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm_2threads Checking test 068 rrfs_conus13km_radar_tten_warm_2threads results .... 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 = 78.437471 - 0: The maximum resident set size (KB) = 882660 + 0: The total amount of wall time = 77.671508 + 0: The maximum resident set size (KB) = 888844 Test 068 rrfs_conus13km_radar_tten_warm_2threads PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmg -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_csawmg +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 338.352114 - 0: The maximum resident set size (KB) = 721924 + 0: The total amount of wall time = 340.529552 + 0: The maximum resident set size (KB) = 729736 Test 069 control_csawmg PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmgt -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_csawmgt +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmgt Checking test 070 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2860,14 +2860,14 @@ Checking test 070 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 337.504566 - 0: The maximum resident set size (KB) = 725096 + 0: The total amount of wall time = 334.406967 + 0: The maximum resident set size (KB) = 725608 Test 070 control_csawmgt PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_ras -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_ras +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 178.127856 - 0: The maximum resident set size (KB) = 708612 + 0: The total amount of wall time = 178.929745 + 0: The maximum resident set size (KB) = 714280 Test 071 control_ras PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wam -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_wam +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wam Checking test 072 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 111.375666 - 0: The maximum resident set size (KB) = 630236 + 0: The total amount of wall time = 111.792100 + 0: The maximum resident set size (KB) = 637300 Test 072 control_wam PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_hrrr_warm_debugs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_hrrr_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_hrrr_warm_debug Checking test 073 rrfs_conus13km_hrrr_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 716.256934 - 0: The maximum resident set size (KB) = 953868 + 0: The total amount of wall time = 726.300432 + 0: The maximum resident set size (KB) = 957988 Test 073 rrfs_conus13km_hrrr_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_conus13km_radar_tten_warm_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_conus13km_radar_tten_warm_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_conus13km_radar_tten_warm_debug Checking test 074 rrfs_conus13km_radar_tten_warm_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 702.316353 - 0: The maximum resident set size (KB) = 965488 + 0: The total amount of wall time = 722.673801 + 0: The maximum resident set size (KB) = 960940 Test 074 rrfs_conus13km_radar_tten_warm_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_CubedSphereGrid_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_CubedSphereGrid_debug Checking test 075 control_CubedSphereGrid_debug results .... 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 = 162.603083 - 0: The maximum resident set size (KB) = 794860 + 0: The total amount of wall time = 161.495636 + 0: The maximum resident set size (KB) = 799476 Test 075 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wrtGauss_netcdf_parallel_debug Checking test 076 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.879641 - 0: The maximum resident set size (KB) = 799156 + 0: The total amount of wall time = 148.746683 + 0: The maximum resident set size (KB) = 798644 Test 076 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_stochy_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_stochy_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_stochy_debug Checking test 077 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.576282 - 0: The maximum resident set size (KB) = 798924 + 0: The total amount of wall time = 168.903505 + 0: The maximum resident set size (KB) = 799604 Test 077 control_stochy_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_lndp_debug Checking test 078 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.382307 - 0: The maximum resident set size (KB) = 801016 + 0: The total amount of wall time = 152.160683 + 0: The maximum resident set size (KB) = 797552 Test 078 control_lndp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmg_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_csawmg_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmg_debug Checking test 079 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.550055 - 0: The maximum resident set size (KB) = 848100 + 0: The total amount of wall time = 228.717975 + 0: The maximum resident set size (KB) = 841992 Test 079 control_csawmg_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_csawmgt_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_csawmgt_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_csawmgt_debug Checking test 080 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 231.871553 - 0: The maximum resident set size (KB) = 846356 + 0: The total amount of wall time = 226.359342 + 0: The maximum resident set size (KB) = 844008 Test 080 control_csawmgt_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_ras_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_ras_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_ras_debug Checking test 081 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 151.576647 - 0: The maximum resident set size (KB) = 807656 + 0: The total amount of wall time = 151.769036 + 0: The maximum resident set size (KB) = 804188 Test 081 control_ras_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_diag_debug Checking test 082 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.944919 - 0: The maximum resident set size (KB) = 851660 + 0: The total amount of wall time = 155.951646 + 0: The maximum resident set size (KB) = 849356 Test 082 control_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_debug_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_debug_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_debug_p8 Checking test 083 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 169.598821 - 0: The maximum resident set size (KB) = 1623040 + 0: The total amount of wall time = 169.619689 + 0: The maximum resident set size (KB) = 1620648 Test 083 control_debug_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 977.192450 - 0: The maximum resident set size (KB) = 884028 + 0: The total amount of wall time = 973.395352 + 0: The maximum resident set size (KB) = 882628 Test 084 regional_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_debug Checking test 085 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.936121 - 0: The maximum resident set size (KB) = 1181984 + 0: The total amount of wall time = 276.841043 + 0: The maximum resident set size (KB) = 1178008 Test 085 rap_control_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_debug Checking test 086 hrrr_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.597681 - 0: The maximum resident set size (KB) = 1172056 + 0: The total amount of wall time = 267.768028 + 0: The maximum resident set size (KB) = 1174380 Test 086 hrrr_control_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_unified_drag_suite_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_unified_drag_suite_debug Checking test 087 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.838950 - 0: The maximum resident set size (KB) = 1174912 + 0: The total amount of wall time = 272.889457 + 0: The maximum resident set size (KB) = 1172320 Test 087 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_diag_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_diag_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_diag_debug Checking test 088 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.275694 - 0: The maximum resident set size (KB) = 1258020 + 0: The total amount of wall time = 293.182140 + 0: The maximum resident set size (KB) = 1257752 Test 088 rap_diag_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_cires_ugwp_debug Checking test 089 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.450005 - 0: The maximum resident set size (KB) = 1175296 + 0: The total amount of wall time = 283.530943 + 0: The maximum resident set size (KB) = 1177104 Test 089 rap_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_unified_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_unified_ugwp_debug Checking test 090 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.358661 - 0: The maximum resident set size (KB) = 1176768 + 0: The total amount of wall time = 278.424257 + 0: The maximum resident set size (KB) = 1177848 Test 090 rap_unified_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_lndp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_lndp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_lndp_debug Checking test 091 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 276.699531 - 0: The maximum resident set size (KB) = 1175304 + 0: The total amount of wall time = 277.165493 + 0: The maximum resident set size (KB) = 1174896 Test 091 rap_lndp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_flake_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_flake_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_flake_debug Checking test 092 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.762765 - 0: The maximum resident set size (KB) = 1174884 + 0: The total amount of wall time = 274.274413 + 0: The maximum resident set size (KB) = 1178696 Test 092 rap_flake_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_progcld_thompson_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_progcld_thompson_debug Checking test 093 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.673054 - 0: The maximum resident set size (KB) = 1177220 + 0: The total amount of wall time = 275.566192 + 0: The maximum resident set size (KB) = 1182504 Test 093 rap_progcld_thompson_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_noah_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_noah_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_noah_debug Checking test 094 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.291867 - 0: The maximum resident set size (KB) = 1176004 + 0: The total amount of wall time = 268.933471 + 0: The maximum resident set size (KB) = 1177168 Test 094 rap_noah_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_sfcdiff_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_sfcdiff_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_sfcdiff_debug Checking test 095 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.211937 - 0: The maximum resident set size (KB) = 1172728 + 0: The total amount of wall time = 274.158566 + 0: The maximum resident set size (KB) = 1179028 Test 095 rap_sfcdiff_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_noah_sfcdiff_cires_ugwp_debug Checking test 096 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.435022 - 0: The maximum resident set size (KB) = 1172564 + 0: The total amount of wall time = 452.005060 + 0: The maximum resident set size (KB) = 1174256 Test 096 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rrfs_v1beta_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rrfs_v1beta_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rrfs_v1beta_debug Checking test 097 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.490356 - 0: The maximum resident set size (KB) = 1171196 + 0: The total amount of wall time = 268.923443 + 0: The maximum resident set size (KB) = 1173540 Test 097 rrfs_v1beta_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_wam_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_wam_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_wam_debug Checking test 098 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 274.194037 - 0: The maximum resident set size (KB) = 516448 + 0: The total amount of wall time = 283.100604 + 0: The maximum resident set size (KB) = 520876 Test 098 control_wam_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_spp_sppt_shum_skeb_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_spp_sppt_shum_skeb_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_spp_sppt_shum_skeb_dyn32_phy32 Checking test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 results .... 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 = 262.206517 - 0: The maximum resident set size (KB) = 1066888 + 0: The total amount of wall time = 262.927667 + 0: The maximum resident set size (KB) = 1078388 Test 099 regional_spp_sppt_shum_skeb_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn32_phy32 Checking test 100 rap_control_dyn32_phy32 results .... 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 = 371.162343 - 0: The maximum resident set size (KB) = 1009844 + 0: The total amount of wall time = 370.002626 + 0: The maximum resident set size (KB) = 1007656 Test 100 rap_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_dyn32_phy32 Checking test 101 hrrr_control_dyn32_phy32 results .... Comparing 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.903937 - 0: The maximum resident set size (KB) = 959144 + 0: The total amount of wall time = 194.009600 + 0: The maximum resident set size (KB) = 957700 Test 101 hrrr_control_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_2threads_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_2threads_dyn32_phy32 Checking test 102 rap_2threads_dyn32_phy32 results .... Comparing 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 = 362.410886 - 0: The maximum resident set size (KB) = 1018676 + 0: The total amount of wall time = 358.823961 + 0: The maximum resident set size (KB) = 1020236 Test 102 rap_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_2threads_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_2threads_dyn32_phy32 Checking test 103 hrrr_control_2threads_dyn32_phy32 results .... Comparing 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 = 192.907160 - 0: The maximum resident set size (KB) = 1008468 + 0: The total amount of wall time = 189.849926 + 0: The maximum resident set size (KB) = 1013072 Test 103 hrrr_control_2threads_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_decomp_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_decomp_dyn32_phy32 Checking test 104 hrrr_control_decomp_dyn32_phy32 results .... Comparing 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 = 206.357756 - 0: The maximum resident set size (KB) = 896412 + 0: The total amount of wall time = 203.253390 + 0: The maximum resident set size (KB) = 898424 Test 104 hrrr_control_decomp_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_restart_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_restart_dyn32_phy32 Checking test 105 rap_restart_dyn32_phy32 results .... Comparing 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 = 280.315758 - 0: The maximum resident set size (KB) = 950956 + 0: The total amount of wall time = 277.519162 + 0: The maximum resident set size (KB) = 943160 Test 105 rap_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_restart_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_restart_dyn32_phy32 Checking test 106 hrrr_control_restart_dyn32_phy32 results .... Comparing 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 = 101.140134 - 0: The maximum resident set size (KB) = 858520 + 0: The total amount of wall time = 100.343143 + 0: The maximum resident set size (KB) = 855588 Test 106 hrrr_control_restart_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control_dyn64_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn64_phy32 Checking test 107 rap_control_dyn64_phy32 results .... Comparing 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 = 242.024839 - 0: The maximum resident set size (KB) = 969288 + 0: The total amount of wall time = 241.253002 + 0: The maximum resident set size (KB) = 960080 Test 107 rap_control_dyn64_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_debug_dyn32_phy32 Checking test 108 rap_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.374032 - 0: The maximum resident set size (KB) = 1057324 + 0: The total amount of wall time = 267.917573 + 0: The maximum resident set size (KB) = 1058452 Test 108 rap_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hrrr_control_debug_dyn32_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hrrr_control_debug_dyn32_phy32 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hrrr_control_debug_dyn32_phy32 Checking test 109 hrrr_control_debug_dyn32_phy32 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.220180 - 0: The maximum resident set size (KB) = 1053844 + 0: The total amount of wall time = 265.686816 + 0: The maximum resident set size (KB) = 1055492 Test 109 hrrr_control_debug_dyn32_phy32 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/rap_control_debug_dyn64_phy32 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/rap_control_dyn64_phy32_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/rap_control_dyn64_phy32_debug Checking test 110 rap_control_dyn64_phy32_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.142566 - 0: The maximum resident set size (KB) = 1101508 + 0: The total amount of wall time = 277.892042 + 0: The maximum resident set size (KB) = 1108336 Test 110 rap_control_dyn64_phy32_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm Checking test 111 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 219.888485 - 0: The maximum resident set size (KB) = 1027016 + 0: The total amount of wall time = 219.755309 + 0: The maximum resident set size (KB) = 1022796 Test 111 hafs_regional_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_thompson_gfdlsf Checking test 112 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 329.517651 - 0: The maximum resident set size (KB) = 1395708 + 0: The total amount of wall time = 319.746288 + 0: The maximum resident set size (KB) = 1400408 Test 112 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_ocn Checking test 113 hafs_regional_atm_ocn results .... 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 = 362.269413 - 0: The maximum resident set size (KB) = 1201620 + 0: The total amount of wall time = 362.126443 + 0: The maximum resident set size (KB) = 1193300 Test 113 hafs_regional_atm_ocn PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_atm_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_wav Checking test 114 hafs_regional_atm_wav results .... 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 = 715.709484 - 0: The maximum resident set size (KB) = 1228500 + 0: The total amount of wall time = 724.416809 + 0: The maximum resident set size (KB) = 1235572 Test 114 hafs_regional_atm_wav PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_atm_ocn_wav Checking test 115 hafs_regional_atm_ocn_wav results .... 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 = 822.911309 - 0: The maximum resident set size (KB) = 1247920 + 0: The total amount of wall time = 823.215567 + 0: The maximum resident set size (KB) = 1249128 Test 115 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_1nest_atm Checking test 116 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 318.753685 - 0: The maximum resident set size (KB) = 499564 + 0: The total amount of wall time = 317.113046 + 0: The maximum resident set size (KB) = 496220 Test 116 hafs_regional_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_telescopic_2nests_atm Checking test 117 hafs_regional_telescopic_2nests_atm results .... 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 = 361.458385 - 0: The maximum resident set size (KB) = 510640 + 0: The total amount of wall time = 357.096568 + 0: The maximum resident set size (KB) = 511136 Test 117 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_global_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_1nest_atm Checking test 118 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 144.208970 - 0: The maximum resident set size (KB) = 343732 + 0: The total amount of wall time = 146.521975 + 0: The maximum resident set size (KB) = 342668 Test 118 hafs_global_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_global_multiple_4nests_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_multiple_4nests_atm Checking test 119 hafs_global_multiple_4nests_atm results .... 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 = 413.564435 - 0: The maximum resident set size (KB) = 448744 + 0: The total amount of wall time = 418.714147 + 0: The maximum resident set size (KB) = 418520 Test 119 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_specified_moving_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_specified_moving_1nest_atm Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -3908,28 +3908,28 @@ Checking test 120 hafs_regional_specified_moving_1nest_atm results .... Comparing HURPRS.GrbF06 .........OK Comparing HURPRS.GrbF06.nest02 .........OK - 0: The total amount of wall time = 198.625107 - 0: The maximum resident set size (KB) = 507884 + 0: The total amount of wall time = 198.115055 + 0: The maximum resident set size (KB) = 509424 Test 120 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm Checking test 121 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 188.313827 - 0: The maximum resident set size (KB) = 514660 + 0: The total amount of wall time = 187.555077 + 0: The maximum resident set size (KB) = 508300 Test 121 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_storm_following_1nest_atm_ocn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn Checking test 122 hafs_regional_storm_following_1nest_atm_ocn results .... 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 = 216.861904 - 0: The maximum resident set size (KB) = 544208 + 0: The total amount of wall time = 218.101232 + 0: The maximum resident set size (KB) = 546832 Test 122 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_global_storm_following_1nest_atm +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_global_storm_following_1nest_atm Checking test 123 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 58.306532 - 0: The maximum resident set size (KB) = 361388 + 0: The total amount of wall time = 58.207078 + 0: The maximum resident set size (KB) = 363368 Test 123 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_storm_following_1nest_atm_ocn_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn_debug Checking test 124 hafs_regional_storm_following_1nest_atm_ocn_debug results .... Comparing atmf001.nc .........OK Comparing sfcf001.nc .........OK Comparing atm.nest02.f001.nc .........OK Comparing sfc.nest02.f001.nc .........OK - 0: The total amount of wall time = 760.650195 - 0: The maximum resident set size (KB) = 575612 + 0: The total amount of wall time = 762.243071 + 0: The maximum resident set size (KB) = 576828 Test 124 hafs_regional_storm_following_1nest_atm_ocn_debug PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 125 hafs_regional_storm_following_1nest_atm_ocn_wav results .... 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 = 507.938638 - 0: The maximum resident set size (KB) = 614756 + 0: The total amount of wall time = 510.360983 + 0: The maximum resident set size (KB) = 626484 Test 125 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_docn -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_docn +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_docn Checking test 126 hafs_regional_docn results .... 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 = 340.460191 - 0: The maximum resident set size (KB) = 1213296 + 0: The total amount of wall time = 334.977745 + 0: The maximum resident set size (KB) = 1213348 Test 126 hafs_regional_docn PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_docn_oisst +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_docn_oisst Checking test 127 hafs_regional_docn_oisst results .... 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 = 339.693418 - 0: The maximum resident set size (KB) = 1190700 + 0: The total amount of wall time = 338.730417 + 0: The maximum resident set size (KB) = 1197128 Test 127 hafs_regional_docn_oisst PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/hafs_regional_datm_cdeps +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/hafs_regional_datm_cdeps Checking test 128 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 945.546232 - 0: The maximum resident set size (KB) = 1038548 + 0: The total amount of wall time = 950.932613 + 0: The maximum resident set size (KB) = 1037260 Test 128 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_control_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_control_cfsr Checking test 129 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.289102 - 0: The maximum resident set size (KB) = 1068432 + 0: The total amount of wall time = 162.158073 + 0: The maximum resident set size (KB) = 1058372 Test 129 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_restart_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_restart_cfsr Checking test 130 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 93.678867 - 0: The maximum resident set size (KB) = 1017648 + 0: The total amount of wall time = 93.023799 + 0: The maximum resident set size (KB) = 1018252 Test 130 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_control_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_control_gefs Checking test 131 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.913058 - 0: The maximum resident set size (KB) = 966464 + 0: The total amount of wall time = 151.486894 + 0: The maximum resident set size (KB) = 963552 Test 131 datm_cdeps_control_gefs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_iau_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_iau_gefs Checking test 132 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-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.020727 - 0: The maximum resident set size (KB) = 970088 + 0: The total amount of wall time = 150.574501 + 0: The maximum resident set size (KB) = 974400 Test 132 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_stochy_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_stochy_gefs Checking test 133 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.625239 - 0: The maximum resident set size (KB) = 967400 + 0: The total amount of wall time = 152.855545 + 0: The maximum resident set size (KB) = 959624 Test 133 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_ciceC_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_ciceC_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_ciceC_cfsr Checking test 134 datm_cdeps_ciceC_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 157.270780 - 0: The maximum resident set size (KB) = 1057376 + 0: The total amount of wall time = 152.464666 + 0: The maximum resident set size (KB) = 1065824 Test 134 datm_cdeps_ciceC_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_bulk_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_bulk_cfsr Checking test 135 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 158.823022 - 0: The maximum resident set size (KB) = 1069912 + 0: The total amount of wall time = 156.021784 + 0: The maximum resident set size (KB) = 1060604 Test 135 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_bulk_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_bulk_gefs Checking test 136 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS_NEW.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.490601 - 0: The maximum resident set size (KB) = 969064 + 0: The total amount of wall time = 147.490454 + 0: The maximum resident set size (KB) = 962572 Test 136 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_mx025_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_mx025_cfsr Checking test 137 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -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 = 404.966356 - 0: The maximum resident set size (KB) = 881572 + 0: The total amount of wall time = 406.339559 + 0: The maximum resident set size (KB) = 877456 Test 137 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_mx025_gefs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_mx025_gefs Checking test 138 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -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 = 399.990127 - 0: The maximum resident set size (KB) = 938224 + 0: The total amount of wall time = 404.817972 + 0: The maximum resident set size (KB) = 929776 Test 138 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_multiple_files_cfsr Checking test 139 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 155.761485 - 0: The maximum resident set size (KB) = 1068320 + 0: The total amount of wall time = 160.258705 + 0: The maximum resident set size (KB) = 1065512 Test 139 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_3072x1536_cfsr Checking test 140 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 221.237937 - 0: The maximum resident set size (KB) = 2370580 + 0: The total amount of wall time = 219.951498 + 0: The maximum resident set size (KB) = 2362280 Test 140 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_gfs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_gfs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_gfs Checking test 141 datm_cdeps_gfs results .... Comparing RESTART/MOM.res.nc .........OK 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.784545 - 0: The maximum resident set size (KB) = 2373268 + 0: The total amount of wall time = 223.241832 + 0: The maximum resident set size (KB) = 2356528 Test 141 datm_cdeps_gfs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_debug_cfsr +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_debug_cfsr Checking test 142 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK 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.142539 - 0: The maximum resident set size (KB) = 982008 + 0: The total amount of wall time = 444.883844 + 0: The maximum resident set size (KB) = 983392 Test 142 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_lnd_gswp3 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_lnd_gswp3 Checking test 143 datm_cdeps_lnd_gswp3 results .... 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.274964 - 0: The maximum resident set size (KB) = 268716 + 0: The total amount of wall time = 6.985120 + 0: The maximum resident set size (KB) = 254432 Test 143 datm_cdeps_lnd_gswp3 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/datm_cdeps_lnd_gswp3 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/datm_cdeps_lnd_gswp3_rst +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/datm_cdeps_lnd_gswp3_rst Checking test 144 datm_cdeps_lnd_gswp3_rst results .... 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.127068 - 0: The maximum resident set size (KB) = 258948 + 0: The total amount of wall time = 12.491484 + 0: The maximum resident set size (KB) = 255852 Test 144 datm_cdeps_lnd_gswp3_rst PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_p8_atmlnd_sbs -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_p8_atmlnd_sbs +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/control_p8_atmlnd_sbs Checking test 145 control_p8_atmlnd_sbs results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -4337,14 +4337,14 @@ Checking test 145 control_p8_atmlnd_sbs results .... Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile5.nc .........OK Comparing ufs.cpld.lnd.out.2021-03-23-21600.tile6.nc .........OK - 0: The total amount of wall time = 203.662445 - 0: The maximum resident set size (KB) = 1610668 + 0: The total amount of wall time = 201.899674 + 0: The maximum resident set size (KB) = 1612708 Test 145 control_p8_atmlnd_sbs PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/control_atmwav -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/control_atmwav +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 88.148293 - 0: The maximum resident set size (KB) = 655960 + 0: The total amount of wall time = 86.540065 + 0: The maximum resident set size (KB) = 656056 Test 146 control_atmwav PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8 -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/atmaero_control_p8 +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8 Checking test 147 atmaero_control_p8 results .... 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 = 226.528014 - 0: The maximum resident set size (KB) = 2981164 + 0: The total amount of wall time = 226.018108 + 0: The maximum resident set size (KB) = 2970896 Test 147 atmaero_control_p8 PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/atmaero_control_p8_rad +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8_rad Checking test 148 atmaero_control_p8_rad results .... Comparing 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 = 277.253173 - 0: The maximum resident set size (KB) = 3041352 + 0: The total amount of wall time = 277.136230 + 0: The maximum resident set size (KB) = 3045484 Test 148 atmaero_control_p8_rad PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/atmaero_control_p8_rad_micro -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/atmaero_control_p8_rad_micro +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/atmaero_control_p8_rad_micro Checking test 149 atmaero_control_p8_rad_micro results .... Comparing 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 = 283.204132 - 0: The maximum resident set size (KB) = 3054892 + 0: The total amount of wall time = 281.377342 + 0: The maximum resident set size (KB) = 3055256 Test 149 atmaero_control_p8_rad_micro PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_atmaq -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_atmaq +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/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 = 620.398439 - 0: The maximum resident set size (KB) = 1553448 + 0: The total amount of wall time = 605.726437 + 0: The maximum resident set size (KB) = 1560336 Test 150 regional_atmaq PASS baseline dir = /scratch1/BMC/gmtb/RT/NCAR/main-20230316/INTEL/regional_atmaq_debug -working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_8138/regional_atmaq_debug +working dir = /scratch1/BMC/gmtb/RT/stmp2/Dustin.Swales/FV3_RT/rt_15296/regional_atmaq_debug Checking test 151 regional_atmaq_debug results .... 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 = 1304.887436 - 0: The maximum resident set size (KB) = 1512264 + 0: The total amount of wall time = 1307.530987 + 0: The maximum resident set size (KB) = 1513136 Test 151 regional_atmaq_debug PASS REGRESSION TEST WAS SUCCESSFUL -Fri Mar 17 11:28:05 UTC 2023 -Elapsed time: 03h:15m:42s. Have a nice day! +Tue Mar 21 12:10:57 UTC 2023 +Elapsed time: 02h:56m:53s. Have a nice day!