diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 763405c02a..424a08638d 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 763405c02a8f7eec8c1e1a360fcb5bf3570604e1 +Subproject commit 424a08638dc34828b2aa64fbb75e7f368f52bf3d diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index 60104f0dc5..19d530c074 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -1,4 +1,7 @@ -# CMEPS compiler flags +############################################################################### +### CMEPS compiler flags +############################################################################### + if(CMAKE_Fortran_COMPILER_ID MATCHES "GNU") set(CMAKE_Fortran_FLAGS "-g -fbacktrace -ffree-line-length-none") if(${CMAKE_Fortran_COMPILER_VERSION} VERSION_GREATER_EQUAL 10) @@ -18,6 +21,10 @@ else() message(WARNING "Fortran compiler with ID ${CMAKE_Fortran_COMPILER_ID} will be used with CMake default options") endif() +############################################################################### +### Source files +############################################################################### + list(APPEND _nems_util_files CMEPS/ufs/flux_atmocn_mod.F90 CMEPS/ufs/glc_elevclass_mod.F90 @@ -62,12 +69,104 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_post_rof_mod.F90 CMEPS/mediator/med_phases_post_wav_mod.F90) -### Create target library and set PUBLIC interfaces on the library -add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files}) +############################################################################### +### Host model for CCPP +############################################################################### + +if(CMEPS_AOFLUX) + ### Query CCPP path + get_filename_component(FV3_PATH "../FV3" REALPATH) + + ### If FV3 is available build CCPP host model under CMEPS too + if(EXISTS ${FV3_PATH}) + ### Print out information + message("FV3_PATH = ${FV3_PATH}") + message("Compiling CMEPS with CCPP support.") + + ### Set environment variable for FV3 directory, used by config file + set(ENV{FV3_PATH} ${FV3_PATH}) + + ### Set suite file that needs to be compiled + set(_ccpp_suites_arg "--suites=FV3_sfc_ocean") + + ### Set options for ccpp_prebuild.py + if(DEBUG) + ### Enable debugging features in auto-generated physics caps + set(_ccpp_debug_arg "--debug") + ### Enable verbose output from ccpp_prebuild.py + set(_ccpp_verbose_arg "--verbose") + endif() + + ### Trigger ccpp_prebuild.py script to connect host model with CCPP physics + message("Calling CCPP code generator (ccpp_prebuild.py) for suites ${_ccpp_suites_arg} ...") + execute_process( + COMMAND ${Python_EXECUTABLE} + "${FV3_PATH}/ccpp/framework/scripts/ccpp_prebuild.py" + "--config=CMEPS/ufs/ccpp/config/ccpp_prebuild_config.py" + "--builddir=${CMAKE_CURRENT_BINARY_DIR}" + "--namespace=med" + ${_ccpp_suites_arg} + ${_ccpp_debug_arg} + ${_ccpp_verbose_arg} + WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} + OUTPUT_FILE ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.out + ERROR_FILE ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.err + RESULT_VARIABLE return_code) + + ### Check return code from CCPP prebuild.py + if(return_code EQUAL 0) + message (STATUS "CCPP prebuild step completed successfully") + else(return_code EQUAL 0) + message (FATAL_ERROR "CCPP prebuild step failed, check ${CMAKE_CURRENT_BINARY_DIR}/ccpp_prebuild.{out,err}") + endif(return_code EQUAL 0) + + ### Add extra driver file to the source + list(APPEND _nems_util_files + CMEPS/ufs/ccpp/driver/med_ccpp_driver.F90 + CMEPS/ufs/flux_atmocn_ccpp_mod.F90 + CMEPS/ufs/ufs_io_mod.F90) + + ### Set the sources: type definitions + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_TYPEDEFS.cmake) + foreach(typedef_module ${TYPEDEFS}) + list(APPEND MODULES_F90 ${CMAKE_CURRENT_BINARY_DIR}/${typedef_module}) + endforeach() + + ### Set the sources: physics schemes + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_SCHEMES.cmake) + + ### Set the sources: static API + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_STATIC_API.cmake) + + ### Set the sources: cap + include(${CMAKE_CURRENT_BINARY_DIR}/physics/CCPP_CAPS.cmake) + + ### Generate list of Fortran modules from defined sources + foreach(source_f90 ${CAPS} ${API}) + get_filename_component(tmp_source_f90 ${source_f90} NAME) + string(REGEX REPLACE ".F90" ".mod" tmp_module_f90 ${tmp_source_f90}) + string(TOLOWER ${tmp_module_f90} module_f90) + list(APPEND MODULES_F90 ${CMAKE_CURRENT_BINARY_DIR}/${module_f90}) + endforeach() + + ### Add special CPP flag for CMEPS/CCPP support + add_definitions(-DUFS_AOFLUX) + endif() +endif() + +############################################################################### +### Libraries +############################################################################### + +### Create target library +add_library(cmeps STATIC ${_nems_util_files} ${_mediator_files} ${SCHEMES} ${CAPS} ${API}) + +### Set PUBLIC interfaces on the library set_target_properties(cmeps PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(cmeps PUBLIC $ $) -target_link_libraries(cmeps PUBLIC esmf +target_link_libraries(cmeps PUBLIC fms + esmf PIO::PIO_Fortran) if(OpenMP_Fortran_FOUND) target_link_libraries(cmeps PRIVATE OpenMP::OpenMP_Fortran) diff --git a/CMakeLists.txt b/CMakeLists.txt index bab9487c8b..35b7cd47b3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,6 +66,7 @@ set(MOVING_NEST OFF CACHE BOOL "Enable moving nest code") set(OPENMP ON CACHE BOOL "Enable OpenMP threading") set(PARALLEL_NETCDF OFF CACHE BOOL "Enable parallel NetCDF") set(JEDI_DRIVER OFF CACHE BOOL "Enable JEDI as top level driver") +set(CMEPS_AOFLUX OFF CACHE BOOL "Enable atmosphere-ocean flux calculation in mediator") set(CMAKE_Platform $ENV{CMAKE_Platform}) if(CMAKE_Platform) @@ -90,6 +91,8 @@ message("MOVING_NEST ...... ${MOVING_NEST}") message("OPENMP ........... ${OPENMP}") message("PARALLEL_NETCDF .. ${PARALLEL_NETCDF}") message("JEDI_DRIVER ...... ${JEDI_DRIVER}") +message("CMEPS_AOFLUX ..... ${CMEPS_AOFLUX}") + message("") ############################################################################### diff --git a/FV3 b/FV3 index ca1d0c0d75..5117434a99 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit ca1d0c0d751d97936369346bdbce4b95e3dda599 +Subproject commit 5117434a991168ca758f1071b06ec7d2f1849043 diff --git a/doc/UsersGuide/source/BuildingAndRunning.rst b/doc/UsersGuide/source/BuildingAndRunning.rst index 89b780fa8e..7cdf573172 100644 --- a/doc/UsersGuide/source/BuildingAndRunning.rst +++ b/doc/UsersGuide/source/BuildingAndRunning.rst @@ -146,6 +146,12 @@ For the ufs-weather-model S2S app (atm/ice/ocean) with debugging flags turned on export CMAKE_FLAGS="-DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_2017_coupled,FV3_GFS_2017_satmedmf_coupled,FV3_GFS_v15p2_coupled,FV3_GFS_v16_coupled,FV3_GFS_v16_couplednsst" export BUILD_VERBOSE=1 +For the ufs-weather-model S2S app (atm/ice/ocean) with activating CCPP host model under CMEPS and receiving atmosphere-ocean fluxes from mediator: + +.. code-block:: console + + export CMAKE_FLAGS="-DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON" + For the ufs-weather-model S2SW app (atm/ice/ocean/wave): .. code-block:: console diff --git a/doc/UsersGuide/source/InputNML.inc b/doc/UsersGuide/source/InputNML.inc index ca30d6cfc0..7f2ac5c38d 100644 --- a/doc/UsersGuide/source/InputNML.inc +++ b/doc/UsersGuide/source/InputNML.inc @@ -299,3 +299,42 @@ A sample of this namelist is shown below: / The namelist section relating to the FMS diagnostic manager ``&diag_manager_nml`` is described in :numref:`Section %s `. + +--------------- +gfs_physics_nml +--------------- + +The namelist section ``&gfs_physics_nml`` contains physics-related information used by the atmosphere model and +some of the variables are only relevant for specific parameterizations and/or configurations. +The small set of variables used in ``&gfs_physics_nml`` are described in :numref:`Table %s `. + +.. _gfs_physics_nml: + +.. list-table:: *List of common variables in the *gfs_physics_nml* namelist section. + :widths: 10 40 15 15 + :header-rows: 1 + + * - Variable Name + - Description + - Data Type + - Default Value + * - cplflx + - Flag to activate atmosphere-ocean coupling. If true, turn on receiving exchange fields from other components such as ocean. + - logical + - .false. + * - use_med_flux + - Flag to receive atmosphere-ocean fluxes from mediator. If true, atmosphere-ocean fluxes will be received into the CCPP physics and used there, instead of calculating them. + - logical + - .false. + +A sample subset of this namelist is shown below: + +.. code-block:: console + + &gfs_physics_nml + use_med_flux = .true. + cplflx = .true. + / + +Additional variables for the ``&gfs_physics_nml`` namelist can be found in the ``FV3/ccpp/data/GFS_typedefs.F90`` +file. diff --git a/doc/UsersGuide/source/InputsOutputs.rst b/doc/UsersGuide/source/InputsOutputs.rst index 0a282e323d..08ff71177c 100644 --- a/doc/UsersGuide/source/InputsOutputs.rst +++ b/doc/UsersGuide/source/InputsOutputs.rst @@ -1809,6 +1809,131 @@ For the coupled GOCART in S2SAW application, a sample *nems.configure* is shown stop_ymd = -999 :: +For the fully coupled S2S application that receives atmosphere-ocean fluxes from mediator, a sample *nems.configure* is shown below : + +.. code-block:: console + + # EARTH # + EARTH_component_list: MED ATM CHM OCN ICE WAV + EARTH_attributes:: + Verbosity = 0 + :: + + # MED # + MED_model: cmeps + MED_petlist_bounds: 0 143 + :: + + # ATM # + ATM_model: fv3 + ATM_petlist_bounds: 0 149 + ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + :: + + # OCN # + OCN_model: mom6 + OCN_petlist_bounds: 150 269 + OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = mesh.mx025.nc + :: + + # ICE # + ICE_model: cice6 + ICE_petlist_bounds: 270 317 + ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = mesh.mx025.nc + stop_n = 840 + stop_option = nhours + stop_ymd = -999 + :: + + # CMEPS warm run sequence + runSeq:: + @720 + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @720 + MED med_phases_aofluxes_run + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + MED med_phases_history_write + @ + :: + + # CMEPS variables + + DRIVER_attributes:: + :: + + MED_attributes:: + ATM_model = fv3 + ICE_model = cice6 + OCN_model = mom6 + history_n = 3 + history_option = nhours + history_ymd = -999 + coupling_mode = nems_frac_aoflux + history_tile_atm = 96 + aoflux_grid = 'xgrid' + aoflux_code = 'ccpp' + aoflux_ccpp_suite = 'FV3_sfc_ocean' + ccpp_restart_interval = -1 + ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' + ccpp_input_dir = 'INPUT/' + ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' + ccpp_nstf_name = 2,1,0,0,0 + ccpp_ini_read = true + :: + ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = startup + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = 12 + restart_option = nhours + restart_ymd = -999 + dbug_flag = 0 + use_coldstart = false + use_mommesh = true + eps_imesh = 1.0e-1 + stop_n = 840 + stop_option = nhours + stop_ymd = -999 + :: + +.. note:: The *aoflux_grid* option is used to select the grid/mesh to perform atmosphere-ocean flux calculation. The possible options are *xgrid* (exchange grid), *agrid* (atmosphere model grid) and *ogrid* (ocean model grid). + +.. note:: The *aoflux_code* option is used to define the algorithm that will be used to calculate atmosphere-ocean fluxes. The possible options are *cesm* and *ccpp*. If *ccpp* is selected then the suite file provided in the *aoflux_ccpp_suite* option is used to calculate atmosphere-ocean fluxes through the use of CCPP host model. + --------------------------------------- *The SDF (Suite Definition File) file* --------------------------------------- diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index cb5a2ca1c5..5a24724fda 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Fri Jun 3 16:46:28 MDT 2022 +Tue Jun 7 20:26:03 MDT 2022 Start Regression test -Compile 001 elapsed time 405 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 414 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 815 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 205 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 556 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 315 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 404 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 411 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 833 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 554 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 307 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON Compile 007 elapsed time 299 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 274.818645 -0:The maximum resident set size (KB) = 433520 +0:The total amount of wall time = 274.853084 +0:The maximum resident set size (KB) = 433684 Test 001 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_restart +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.600503 -0:The maximum resident set size (KB) = 183524 +0:The total amount of wall time = 138.031134 +0:The maximum resident set size (KB) = 183620 Test 002 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_c48 +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 817.831961 -0:The maximum resident set size (KB) = 676212 +0:The total amount of wall time = 818.745455 +0:The maximum resident set size (KB) = 676604 Test 003 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_stochy +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 175.906823 -0:The maximum resident set size (KB) = 427796 +0:The total amount of wall time = 175.419428 +0:The maximum resident set size (KB) = 427824 Test 004 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_flake +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 338.420263 -0:The maximum resident set size (KB) = 485756 +0:The total amount of wall time = 337.380478 +0:The maximum resident set size (KB) = 486192 Test 005 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 378.060280 -0:The maximum resident set size (KB) = 796052 +0:The total amount of wall time = 377.926481 +0:The maximum resident set size (KB) = 796048 Test 006 control_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson_no_aero +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 359.488253 -0:The maximum resident set size (KB) = 789952 +0:The total amount of wall time = 358.264748 +0:The maximum resident set size (KB) = 789800 Test 007 control_thompson_no_aero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_ras +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_ras Checking test 008 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 291.227220 -0:The maximum resident set size (KB) = 446392 +0:The total amount of wall time = 285.226235 +0:The maximum resident set size (KB) = 446232 Test 008 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_p8 +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_p8 Checking test 009 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -293,14 +293,14 @@ Checking test 009 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 323.660018 -0:The maximum resident set size (KB) = 818624 +0:The total amount of wall time = 313.581819 +0:The maximum resident set size (KB) = 818664 Test 009 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_control +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_control Checking test 010 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -347,14 +347,14 @@ Checking test 010 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 704.627777 -0:The maximum resident set size (KB) = 774908 +0:The total amount of wall time = 699.990486 +0:The maximum resident set size (KB) = 774868 Test 010 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_2threads +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_2threads Checking test 011 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -401,14 +401,14 @@ Checking test 011 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1242.506099 -0:The maximum resident set size (KB) = 843108 +0:The total amount of wall time = 1237.668512 +0:The maximum resident set size (KB) = 843064 Test 011 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_restart +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_restart Checking test 012 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -447,14 +447,14 @@ Checking test 012 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 352.143954 -0:The maximum resident set size (KB) = 522952 +0:The total amount of wall time = 349.514210 +0:The maximum resident set size (KB) = 522856 Test 012 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_sfcdiff +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_sfcdiff Checking test 013 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 013 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 707.302121 -0:The maximum resident set size (KB) = 774752 +0:The total amount of wall time = 706.610662 +0:The maximum resident set size (KB) = 774740 Test 013 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_sfcdiff_restart +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_sfcdiff_restart Checking test 014 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -547,14 +547,14 @@ Checking test 014 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 = 353.647174 -0:The maximum resident set size (KB) = 523324 +0:The total amount of wall time = 349.642755 +0:The maximum resident set size (KB) = 522576 Test 014 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/hrrr_control +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/hrrr_control Checking test 015 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -601,14 +601,14 @@ Checking test 015 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 683.664537 -0:The maximum resident set size (KB) = 772240 +0:The total amount of wall time = 675.487512 +0:The maximum resident set size (KB) = 772208 Test 015 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rrfs_v1beta +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -655,14 +655,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 = 698.214150 -0:The maximum resident set size (KB) = 771892 +0:The total amount of wall time = 701.134300 +0:The maximum resident set size (KB) = 771864 Test 016 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -671,14 +671,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 320.471021 -0:The maximum resident set size (KB) = 593380 +0:The total amount of wall time = 320.640652 +0:The maximum resident set size (KB) = 593112 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rrfs_conus13km_radar_tten_warm Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -687,14 +687,14 @@ Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 321.575719 -0:The maximum resident set size (KB) = 596036 +0:The total amount of wall time = 322.256736 +0:The maximum resident set size (KB) = 596080 Test 018 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rrfs_smoke_conus13km_hrrr_warm Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -703,236 +703,236 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 347.505261 -0:The maximum resident set size (KB) = 607320 +0:The total amount of wall time = 342.587935 +0:The maximum resident set size (KB) = 607268 Test 019 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 81.249799 -0:The maximum resident set size (KB) = 424896 +0:The total amount of wall time = 82.225878 +0:The maximum resident set size (KB) = 424852 Test 020 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_diag_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.430705 -0:The maximum resident set size (KB) = 482144 +0:The total amount of wall time = 87.716524 +0:The maximum resident set size (KB) = 482140 Test 021 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/regional_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/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 = 134.107634 -0:The maximum resident set size (KB) = 536580 +0:The total amount of wall time = 132.099942 +0:The maximum resident set size (KB) = 536952 Test 022 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_control_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/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.896923 -0:The maximum resident set size (KB) = 796928 +0:The total amount of wall time = 147.483918 +0:The maximum resident set size (KB) = 797328 Test 023 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_diag_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_diag_debug Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 158.833827 -0:The maximum resident set size (KB) = 879848 +0:The total amount of wall time = 156.790283 +0:The maximum resident set size (KB) = 879712 Test 024 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 237.904162 -0:The maximum resident set size (KB) = 795512 +0:The total amount of wall time = 238.799008 +0:The maximum resident set size (KB) = 795864 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rap_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rap_progcld_thompson_debug Checking test 026 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 = 148.843237 -0:The maximum resident set size (KB) = 796956 +0:The total amount of wall time = 148.486730 +0:The maximum resident set size (KB) = 797312 Test 026 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/rrfs_v1beta_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 150.399689 -0:The maximum resident set size (KB) = 791252 +0:The total amount of wall time = 147.920027 +0:The maximum resident set size (KB) = 791692 Test 027 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson_debug Checking test 028 control_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 = 96.054580 -0:The maximum resident set size (KB) = 782636 +0:The total amount of wall time = 97.735934 +0:The maximum resident set size (KB) = 783024 Test 028 control_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson_no_aero_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.241901 -0:The maximum resident set size (KB) = 778408 +0:The total amount of wall time = 92.671175 +0:The maximum resident set size (KB) = 778452 Test 029 control_thompson_no_aero_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson_extdiag_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 104.534037 -0:The maximum resident set size (KB) = 824396 +0:The total amount of wall time = 104.124408 +0:The maximum resident set size (KB) = 824336 Test 030 control_thompson_extdiag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 97.075761 -0:The maximum resident set size (KB) = 783064 +0:The total amount of wall time = 96.357603 +0:The maximum resident set size (KB) = 783076 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_ras_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 84.097378 -0:The maximum resident set size (KB) = 434724 +0:The total amount of wall time = 84.291444 +0:The maximum resident set size (KB) = 434692 Test 032 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_stochy_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_stochy_debug Checking test 033 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.567232 -0:The maximum resident set size (KB) = 428868 +0:The total amount of wall time = 92.272859 +0:The maximum resident set size (KB) = 428840 Test 033 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_debug_p8 +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_debug_p8 Checking test 034 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.803461 -0:The maximum resident set size (KB) = 809356 +0:The total amount of wall time = 93.843772 +0:The maximum resident set size (KB) = 809420 Test 034 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/control_wam_debug +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/control_wam_debug Checking test 035 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 145.093572 -0:The maximum resident set size (KB) = 171804 +0:The total amount of wall time = 142.742833 +0:The maximum resident set size (KB) = 171596 Test 035 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/cpld_control_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/cpld_control_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/cpld_control_noaero_p8 Checking test 036 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -996,14 +996,14 @@ Checking test 036 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 = 540.672542 -0:The maximum resident set size (KB) = 795804 +0:The total amount of wall time = 538.903560 +0:The maximum resident set size (KB) = 796388 Test 036 cpld_control_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/cpld_debug_noaero_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/cpld_debug_noaero_p8 +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/cpld_debug_noaero_p8 Checking test 037 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1055,25 +1055,25 @@ Checking test 037 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 = 214.384593 -0:The maximum resident set size (KB) = 811240 +0:The total amount of wall time = 211.128334 +0:The maximum resident set size (KB) = 811484 Test 037 cpld_debug_noaero_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/GNU/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/datm_cdeps_control_cfsr +working dir = /glade/scratch/jongkim/rt-1157-gnu/jongkim/FV3_RT/rt_2110/datm_cdeps_control_cfsr Checking test 038 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.178359 -0:The maximum resident set size (KB) = 643316 +0:The total amount of wall time = 173.650664 +0:The maximum resident set size (KB) = 644000 Test 038 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 17:21:42 MDT 2022 -Elapsed time: 00h:35m:15s. Have a nice day! +Tue Jun 7 20:59:55 MDT 2022 +Elapsed time: 00h:33m:52s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 825f8c6771..cb903e7d04 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,25 +1,26 @@ -Fri Jun 3 16:31:34 MDT 2022 +Tue Jun 7 17:35:37 MDT 2022 Start Regression test -Compile 001 elapsed time 1162 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 467 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 719 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 784 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 619 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 385 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 345 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 359 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 317 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 909 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 876 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 453 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 235 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 771 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 636 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1173 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 441 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 873 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 712 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 800 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 772 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 600 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 380 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 324 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 344 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 271 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 910 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 879 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 430 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 015 elapsed time 209 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 789 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 640 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_control_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -0:The total amount of wall time = 374.230743 -0:The maximum resident set size (KB) = 4407120 +0:The total amount of wall time = 392.201505 +0:The maximum resident set size (KB) = 4406560 Test 001 cpld_control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +145,14 @@ Checking test 002 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 = 227.142715 -0:The maximum resident set size (KB) = 4365824 +0:The total amount of wall time = 227.075099 +0:The maximum resident set size (KB) = 4365712 Test 002 cpld_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_2threads_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +205,14 @@ Checking test 003 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 = 656.797403 -0:The maximum resident set size (KB) = 4812152 +0:The total amount of wall time = 679.170051 +0:The maximum resident set size (KB) = 4812308 Test 003 cpld_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_decomp_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +265,14 @@ Checking test 004 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 = 379.552483 -0:The maximum resident set size (KB) = 4395132 +0:The total amount of wall time = 393.665984 +0:The maximum resident set size (KB) = 4394536 Test 004 cpld_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_mpi_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 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 = 342.492523 -0:The maximum resident set size (KB) = 4279236 +0:The total amount of wall time = 342.186729 +0:The maximum resident set size (KB) = 4279496 Test 005 cpld_mpi_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_control_c192_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +385,14 @@ Checking test 006 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 = 1438.389864 -0:The maximum resident set size (KB) = 4741292 +0:The total amount of wall time = 1440.774407 +0:The maximum resident set size (KB) = 4744476 Test 006 cpld_control_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_c192_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +445,14 @@ Checking test 007 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 = 862.824702 -0:The maximum resident set size (KB) = 4708504 +0:The total amount of wall time = 839.817256 +0:The maximum resident set size (KB) = 4709392 Test 007 cpld_restart_c192_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_bmark_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +498,14 @@ Checking test 008 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 = 1490.466708 -0:The maximum resident set size (KB) = 5055136 +0:The total amount of wall time = 1796.741250 +0:The maximum resident set size (KB) = 5053208 -Test 008 cpld_bmark_p8 PASS +Test 008 cpld_bmark_p8 PASS Tries: 2 baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_bmark_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +551,14 @@ Checking test 009 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 = 1152.498375 -0:The maximum resident set size (KB) = 5019812 +0:The total amount of wall time = 1134.091348 +0:The maximum resident set size (KB) = 5021696 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_debug_p8 +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,15 +611,84 @@ Checking test 010 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 = 545.255333 -0:The maximum resident set size (KB) = 4494828 +0:The total amount of wall time = 542.712536 +0:The maximum resident set size (KB) = 4494796 Test 010 cpld_debug_p8 PASS +baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/cpld_control_noaero_p8_agrid +Checking test 011 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 = 302.359704 +0:The maximum resident set size (KB) = 884252 + +Test 011 cpld_control_noaero_p8_agrid PASS + + baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control -Checking test 011 control results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control +Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 140.721400 -0:The maximum resident set size (KB) = 452616 +0:The total amount of wall time = 141.228375 +0:The maximum resident set size (KB) = 452692 -Test 011 control PASS +Test 012 control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_decomp -Checking test 012 control_decomp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_decomp +Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -714,29 +784,29 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 146.878613 -0:The maximum resident set size (KB) = 450552 +0:The total amount of wall time = 148.947186 +0:The maximum resident set size (KB) = 453320 -Test 012 control_decomp PASS +Test 013 control_decomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2dwrtdecomp -Checking test 013 control_2dwrtdecomp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_2dwrtdecomp +Checking test 014 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 133.744273 -0:The maximum resident set size (KB) = 453312 +0:The total amount of wall time = 134.839305 +0:The maximum resident set size (KB) = 453432 -Test 013 control_2dwrtdecomp PASS +Test 014 control_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2threads -Checking test 014 control_2threads results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_2threads +Checking test 015 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -778,15 +848,15 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 360.839301 -0:The maximum resident set size (KB) = 499988 +0:The total amount of wall time = 361.810776 +0:The maximum resident set size (KB) = 500256 -Test 014 control_2threads PASS +Test 015 control_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_restart -Checking test 015 control_restart results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_restart +Checking test 016 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -824,15 +894,15 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 73.874397 -0:The maximum resident set size (KB) = 193548 +0:The total amount of wall time = 72.844372 +0:The maximum resident set size (KB) = 193164 -Test 015 control_restart PASS +Test 016 control_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_fhzero -Checking test 016 control_fhzero results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_fhzero +Checking test 017 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -874,15 +944,15 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 132.647682 +0:The total amount of wall time = 129.688216 0:The maximum resident set size (KB) = 452772 -Test 016 control_fhzero PASS +Test 017 control_fhzero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -908,15 +978,15 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 137.073648 -0:The maximum resident set size (KB) = 452580 +0:The total amount of wall time = 135.129753 +0:The maximum resident set size (KB) = 453048 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_latlon -Checking test 018 control_latlon results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -926,15 +996,15 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 138.955596 -0:The maximum resident set size (KB) = 452872 +0:The total amount of wall time = 139.090298 +0:The maximum resident set size (KB) = 453320 -Test 018 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -944,15 +1014,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 143.075972 -0:The maximum resident set size (KB) = 452684 +0:The total amount of wall time = 142.878191 +0:The maximum resident set size (KB) = 452716 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c48 -Checking test 020 control_c48 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -990,15 +1060,15 @@ Checking test 020 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 427.784699 -0:The maximum resident set size (KB) = 627564 +0:The total amount of wall time = 427.580277 +0:The maximum resident set size (KB) = 627744 -Test 020 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c192 -Checking test 021 control_c192 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1008,15 +1078,15 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 569.992624 -0:The maximum resident set size (KB) = 557880 +0:The total amount of wall time = 551.090272 +0:The maximum resident set size (KB) = 557696 -Test 021 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384 -Checking test 022 control_c384 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1026,15 +1096,15 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1239.988267 -0:The maximum resident set size (KB) = 834040 +0:The total amount of wall time = 1247.244959 +0:The maximum resident set size (KB) = 834136 -Test 022 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384gdas -Checking test 023 control_c384gdas results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1076,15 +1146,15 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1320.827052 -0:The maximum resident set size (KB) = 970748 +0:The total amount of wall time = 1319.299328 +0:The maximum resident set size (KB) = 970552 -Test 023 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384_progsigma -Checking test 024 control_c384_progsigma results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_c384_progsigma +Checking test 025 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1094,15 +1164,15 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1282.733468 -0:The maximum resident set size (KB) = 854700 +0:The total amount of wall time = 1264.854497 +0:The maximum resident set size (KB) = 855448 -Test 024 control_c384_progsigma PASS +Test 025 control_c384_progsigma PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_stochy -Checking test 025 control_stochy results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1112,29 +1182,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 92.839139 -0:The maximum resident set size (KB) = 454960 +0:The total amount of wall time = 92.297444 +0:The maximum resident set size (KB) = 456728 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 48.525794 -0:The maximum resident set size (KB) = 225792 +0:The total amount of wall time = 50.673604 +0:The maximum resident set size (KB) = 223276 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_lndp -Checking test 027 control_lndp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1144,15 +1214,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 84.391642 -0:The maximum resident set size (KB) = 455576 +0:The total amount of wall time = 85.329128 +0:The maximum resident set size (KB) = 455848 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1166,15 +1236,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 140.808168 -0:The maximum resident set size (KB) = 452588 +0:The total amount of wall time = 141.508588 +0:The maximum resident set size (KB) = 452840 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,15 +1258,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 141.372329 -0:The maximum resident set size (KB) = 452608 +0:The total amount of wall time = 139.856545 +0:The maximum resident set size (KB) = 452812 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8 -Checking test 030 control_p8 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1312,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.744846 -0:The maximum resident set size (KB) = 849880 +0:The total amount of wall time = 187.434468 +0:The maximum resident set size (KB) = 850028 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1268,15 +1338,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 347.949638 -0:The maximum resident set size (KB) = 850112 +0:The total amount of wall time = 346.489132 +0:The maximum resident set size (KB) = 850276 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1314,15 +1384,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.585829 -0:The maximum resident set size (KB) = 579320 +0:The total amount of wall time = 99.085992 +0:The maximum resident set size (KB) = 580076 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1434,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 188.359310 -0:The maximum resident set size (KB) = 842012 +0:The total amount of wall time = 187.383606 +0:The maximum resident set size (KB) = 844328 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1414,15 +1484,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 496.646922 -0:The maximum resident set size (KB) = 919056 +0:The total amount of wall time = 491.980546 +0:The maximum resident set size (KB) = 919164 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1538,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 246.021944 -0:The maximum resident set size (KB) = 965440 +0:The total amount of wall time = 232.289681 +0:The maximum resident set size (KB) = 968480 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_control -Checking test 036 regional_control results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1486,58 +1556,58 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 362.872014 -0:The maximum resident set size (KB) = 564700 +0:The total amount of wall time = 363.260305 +0:The maximum resident set size (KB) = 564868 -Test 036 regional_control PASS +Test 037 regional_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_restart -Checking test 037 regional_restart results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 198.900775 -0:The maximum resident set size (KB) = 558272 +0:The total amount of wall time = 199.259641 +0:The maximum resident set size (KB) = 557152 -Test 037 regional_restart PASS +Test 038 regional_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_control_2dwrtdecomp -Checking test 038 regional_control_2dwrtdecomp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 352.889457 -0:The maximum resident set size (KB) = 563444 +0:The total amount of wall time = 361.568055 +0:The maximum resident set size (KB) = 563888 -Test 038 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_noquilt -Checking test 039 regional_noquilt results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 386.977899 -0:The maximum resident set size (KB) = 559780 +0:The total amount of wall time = 383.870241 +0:The maximum resident set size (KB) = 557492 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1547,29 +1617,29 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 1173.009142 -0:The maximum resident set size (KB) = 557480 +0:The total amount of wall time = 1183.295812 +0:The maximum resident set size (KB) = 557648 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 361.831231 -0:The maximum resident set size (KB) = 554584 +0:The total amount of wall time = 358.788800 +0:The maximum resident set size (KB) = 555096 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_3km -Checking test 042 regional_3km results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1579,15 +1649,15 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 298.745369 -0:The maximum resident set size (KB) = 594992 +0:The total amount of wall time = 286.975509 +0:The maximum resident set size (KB) = 595668 -Test 042 regional_3km PASS +Test 043 regional_3km PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_control -Checking test 043 rap_control results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1633,15 +1703,15 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 460.851949 -0:The maximum resident set size (KB) = 821476 +0:The total amount of wall time = 455.727664 +0:The maximum resident set size (KB) = 823204 -Test 043 rap_control PASS +Test 044 rap_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_rrtmgp -Checking test 044 rap_rrtmgp results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1687,15 +1757,15 @@ Checking test 044 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 526.794528 -0:The maximum resident set size (KB) = 948444 +0:The total amount of wall time = 542.237929 +0:The maximum resident set size (KB) = 948816 -Test 044 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1705,15 +1775,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 701.257030 -0:The maximum resident set size (KB) = 931020 +0:The total amount of wall time = 709.727743 +0:The maximum resident set size (KB) = 931564 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_2threads -Checking test 046 rap_2threads results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1829,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1093.155334 -0:The maximum resident set size (KB) = 879880 +0:The total amount of wall time = 1097.350988 +0:The maximum resident set size (KB) = 880840 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_restart -Checking test 047 rap_restart results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1805,15 +1875,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 233.966155 -0:The maximum resident set size (KB) = 566544 +0:The total amount of wall time = 235.821627 +0:The maximum resident set size (KB) = 567524 -Test 047 rap_restart PASS +Test 048 rap_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1859,15 +1929,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 464.643772 -0:The maximum resident set size (KB) = 821372 +0:The total amount of wall time = 455.080390 +0:The maximum resident set size (KB) = 823112 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1905,15 +1975,15 @@ Checking test 049 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 = 230.865948 -0:The maximum resident set size (KB) = 566380 +0:The total amount of wall time = 234.029725 +0:The maximum resident set size (KB) = 566608 -Test 049 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hrrr_control -Checking test 050 hrrr_control results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1959,15 +2029,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 440.455481 -0:The maximum resident set size (KB) = 822032 +0:The total amount of wall time = 455.463799 +0:The maximum resident set size (KB) = 823128 -Test 050 hrrr_control PASS +Test 051 hrrr_control PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2013,15 +2083,15 @@ Checking test 051 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.481205 -0:The maximum resident set size (KB) = 817100 +0:The total amount of wall time = 445.819745 +0:The maximum resident set size (KB) = 817700 -Test 051 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1nssl -Checking test 052 rrfs_v1nssl results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2105,15 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 554.399303 -0:The maximum resident set size (KB) = 506432 +0:The total amount of wall time = 550.696103 +0:The maximum resident set size (KB) = 507004 -Test 052 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1nssl_nohailnoccn -Checking test 053 rrfs_v1nssl_nohailnoccn results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2127,15 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 535.667714 -0:The maximum resident set size (KB) = 502376 +0:The total amount of wall time = 546.980530 +0:The maximum resident set size (KB) = 500536 -Test 053 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_conus13km_hrrr_warm -Checking test 054 rrfs_conus13km_hrrr_warm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2073,15 +2143,15 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 197.252727 -0:The maximum resident set size (KB) = 638256 +0:The total amount of wall time = 206.512587 +0:The maximum resident set size (KB) = 638232 -Test 054 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_conus13km_radar_tten_warm -Checking test 055 rrfs_conus13km_radar_tten_warm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2089,15 +2159,15 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 196.057911 -0:The maximum resident set size (KB) = 640488 +0:The total amount of wall time = 207.034815 +0:The maximum resident set size (KB) = 640548 -Test 055 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_smoke_conus13km_hrrr_warm -Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2105,15 +2175,15 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 216.282541 -0:The maximum resident set size (KB) = 653412 +0:The total amount of wall time = 215.474444 +0:The maximum resident set size (KB) = 653436 -Test 056 rrfs_smoke_conus13km_hrrr_warm PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmg -Checking test 057 control_csawmg results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,15 +2193,15 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 390.594005 -0:The maximum resident set size (KB) = 530092 +0:The total amount of wall time = 408.424853 +0:The maximum resident set size (KB) = 530132 -Test 057 control_csawmg PASS +Test 058 control_csawmg PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmgt -Checking test 058 control_csawmgt results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,15 +2211,15 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 389.437794 -0:The maximum resident set size (KB) = 529968 +0:The total amount of wall time = 381.769189 +0:The maximum resident set size (KB) = 529976 -Test 058 control_csawmgt PASS +Test 059 control_csawmgt PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_flake -Checking test 059 control_flake results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2159,15 +2229,15 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 250.993042 -0:The maximum resident set size (KB) = 525752 +0:The total amount of wall time = 250.012693 +0:The maximum resident set size (KB) = 525876 -Test 059 control_flake PASS +Test 060 control_flake PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_ras -Checking test 060 control_ras results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2177,15 +2247,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 197.772128 -0:The maximum resident set size (KB) = 487780 +0:The total amount of wall time = 197.012528 +0:The maximum resident set size (KB) = 487812 -Test 060 control_ras PASS +Test 061 control_ras PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson -Checking test 061 control_thompson results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2195,15 +2265,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 258.036297 -0:The maximum resident set size (KB) = 836612 +0:The total amount of wall time = 257.741487 +0:The maximum resident set size (KB) = 840356 -Test 061 control_thompson PASS +Test 062 control_thompson PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2213,55 +2283,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 253.013632 -0:The maximum resident set size (KB) = 832380 +0:The total amount of wall time = 252.201396 +0:The maximum resident set size (KB) = 832748 -Test 062 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_wam -Checking test 063 control_wam results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 121.202672 -0:The maximum resident set size (KB) = 204100 +0:The total amount of wall time = 120.115145 +0:The maximum resident set size (KB) = 204608 -Test 063 control_wam PASS +Test 064 control_wam PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_debug -Checking test 064 control_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 157.207037 -0:The maximum resident set size (KB) = 620236 +0:The total amount of wall time = 159.946970 +0:The maximum resident set size (KB) = 620776 -Test 064 control_debug PASS +Test 065 control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2threads_debug -Checking test 065 control_2threads_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_2threads_debug +Checking test 066 control_2threads_debug 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.082859 -0:The maximum resident set size (KB) = 665788 +0:The total amount of wall time = 277.471819 +0:The maximum resident set size (KB) = 668088 -Test 065 control_2threads_debug PASS +Test 066 control_2threads_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2287,416 +2357,416 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 171.199977 -0:The maximum resident set size (KB) = 620296 +0:The total amount of wall time = 171.506840 +0:The maximum resident set size (KB) = 620568 -Test 066 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 160.622793 -0:The maximum resident set size (KB) = 620120 +0:The total amount of wall time = 159.990326 +0:The maximum resident set size (KB) = 620668 -Test 067 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_stochy_debug -Checking test 068 control_stochy_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 180.695408 -0:The maximum resident set size (KB) = 625784 +0:The total amount of wall time = 179.889357 +0:The maximum resident set size (KB) = 626036 -Test 068 control_stochy_debug PASS +Test 069 control_stochy_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_lndp_debug -Checking test 069 control_lndp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.879769 -0:The maximum resident set size (KB) = 626504 +0:The total amount of wall time = 162.214297 +0:The maximum resident set size (KB) = 626704 -Test 069 control_lndp_debug PASS +Test 070 control_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 252.788991 -0:The maximum resident set size (KB) = 671156 +0:The total amount of wall time = 253.628924 +0:The maximum resident set size (KB) = 671484 -Test 070 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 249.335221 -0:The maximum resident set size (KB) = 671400 +0:The total amount of wall time = 251.339658 +0:The maximum resident set size (KB) = 671372 -Test 071 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_ras_debug -Checking test 072 control_ras_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.278283 -0:The maximum resident set size (KB) = 634288 +0:The total amount of wall time = 164.200360 +0:The maximum resident set size (KB) = 634840 -Test 072 control_ras_debug PASS +Test 073 control_ras_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_diag_debug -Checking test 073 control_diag_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 166.494444 -0:The maximum resident set size (KB) = 677684 +0:The total amount of wall time = 167.338765 +0:The maximum resident set size (KB) = 678444 -Test 073 control_diag_debug PASS +Test 074 control_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_debug_p8 -Checking test 074 control_debug_p8 results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 179.017059 -0:The maximum resident set size (KB) = 1018416 +0:The total amount of wall time = 180.532991 +0:The maximum resident set size (KB) = 1017444 -Test 074 control_debug_p8 PASS +Test 075 control_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson_debug -Checking test 075 control_thompson_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson_debug +Checking test 076 control_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 = 188.454393 -0:The maximum resident set size (KB) = 979732 +0:The total amount of wall time = 186.607831 +0:The maximum resident set size (KB) = 980096 -Test 075 control_thompson_debug PASS +Test 076 control_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson_no_aero_debug -Checking test 076 control_thompson_no_aero_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 178.972134 -0:The maximum resident set size (KB) = 977628 +0:The total amount of wall time = 179.055736 +0:The maximum resident set size (KB) = 977184 -Test 076 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson_extdiag_debug -Checking test 077 control_thompson_extdiag_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 196.750327 -0:The maximum resident set size (KB) = 1008464 +0:The total amount of wall time = 196.836281 +0:The maximum resident set size (KB) = 1010540 -Test 077 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson_progcld_thompson_debug -Checking test 078 control_thompson_progcld_thompson_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_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 = 186.206142 -0:The maximum resident set size (KB) = 979852 +0:The total amount of wall time = 186.994534 +0:The maximum resident set size (KB) = 979960 -Test 078 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_debug -Checking test 079 regional_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 259.246408 -0:The maximum resident set size (KB) = 588628 +0:The total amount of wall time = 263.070771 +0:The maximum resident set size (KB) = 588472 -Test 079 regional_debug PASS +Test 080 regional_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_control_debug -Checking test 080 rap_control_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.387549 -0:The maximum resident set size (KB) = 986852 +0:The total amount of wall time = 286.709151 +0:The maximum resident set size (KB) = 988328 -Test 080 rap_control_debug PASS +Test 081 rap_control_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.862191 -0:The maximum resident set size (KB) = 986944 +0:The total amount of wall time = 287.785922 +0:The maximum resident set size (KB) = 988232 -Test 081 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_diag_debug -Checking test 082 rap_diag_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 301.267021 -0:The maximum resident set size (KB) = 1071008 +0:The total amount of wall time = 301.539189 +0:The maximum resident set size (KB) = 1071056 -Test 082 rap_diag_debug PASS +Test 083 rap_diag_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 292.429400 -0:The maximum resident set size (KB) = 987776 +0:The total amount of wall time = 292.157773 +0:The maximum resident set size (KB) = 986996 -Test 083 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 293.983909 -0:The maximum resident set size (KB) = 987040 +0:The total amount of wall time = 293.708408 +0:The maximum resident set size (KB) = 988456 -Test 084 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.491010 -0:The maximum resident set size (KB) = 989228 +0:The total amount of wall time = 288.629915 +0:The maximum resident set size (KB) = 989100 -Test 085 rap_lndp_debug PASS +Test 086 rap_lndp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_flake_debug -Checking test 086 rap_flake_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.538993 -0:The maximum resident set size (KB) = 986992 +0:The total amount of wall time = 285.904304 +0:The maximum resident set size (KB) = 986212 -Test 086 rap_flake_debug PASS +Test 087 rap_flake_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 286.644028 -0:The maximum resident set size (KB) = 986756 +0:The total amount of wall time = 286.642916 +0:The maximum resident set size (KB) = 988256 -Test 087 rap_progcld_thompson_debug PASS +Test 088 rap_progcld_thompson_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_noah_debug -Checking test 088 rap_noah_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.508653 -0:The maximum resident set size (KB) = 986112 +0:The total amount of wall time = 283.234649 +0:The maximum resident set size (KB) = 986760 -Test 088 rap_noah_debug PASS +Test 089 rap_noah_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 485.438769 -0:The maximum resident set size (KB) = 1117340 +0:The total amount of wall time = 482.581286 +0:The maximum resident set size (KB) = 1118024 -Test 089 rap_rrtmgp_debug PASS +Test 090 rap_rrtmgp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.418302 -0:The maximum resident set size (KB) = 987816 +0:The total amount of wall time = 288.578290 +0:The maximum resident set size (KB) = 987972 -Test 090 rap_sfcdiff_debug PASS +Test 091 rap_sfcdiff_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.814775 -0:The maximum resident set size (KB) = 986424 +0:The total amount of wall time = 471.827001 +0:The maximum resident set size (KB) = 987036 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.375228 -0:The maximum resident set size (KB) = 983256 +0:The total amount of wall time = 286.967863 +0:The maximum resident set size (KB) = 983220 -Test 092 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_wam_debug -Checking test 093 control_wam_debug results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -0:The total amount of wall time = 295.050919 -0:The maximum resident set size (KB) = 237756 +0:The total amount of wall time = 294.770532 +0:The maximum resident set size (KB) = 238208 -Test 093 control_wam_debug PASS +Test 094 control_wam_debug PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_atm -Checking test 094 hafs_regional_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -0:The total amount of wall time = 636.976581 -0:The maximum resident set size (KB) = 687900 +0:The total amount of wall time = 636.180091 +0:The maximum resident set size (KB) = 691580 -Test 094 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_atm_thompson_gfdlsf -Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 696.020491 -0:The maximum resident set size (KB) = 1054092 +0:The total amount of wall time = 692.138307 +0:The maximum resident set size (KB) = 1052712 -Test 095 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_atm_ocn -Checking test 096 hafs_regional_atm_ocn results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2704,15 +2774,15 @@ Checking test 096 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 460.351617 -0:The maximum resident set size (KB) = 722544 +0:The total amount of wall time = 485.457032 +0:The maximum resident set size (KB) = 721936 -Test 096 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_atm_wav -Checking test 097 hafs_regional_atm_wav results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2720,15 +2790,15 @@ Checking test 097 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 = 1022.764411 -0:The maximum resident set size (KB) = 747668 +0:The total amount of wall time = 1027.420388 +0:The maximum resident set size (KB) = 752120 -Test 097 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_atm_ocn_wav -Checking test 098 hafs_regional_atm_ocn_wav results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2738,29 +2808,29 @@ Checking test 098 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 = 1031.666570 -0:The maximum resident set size (KB) = 766224 +0:The total amount of wall time = 1080.571522 +0:The maximum resident set size (KB) = 763432 -Test 098 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_1nest_atm -Checking test 099 hafs_regional_1nest_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_1nest_atm +Checking test 100 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 = 1329.089741 -0:The maximum resident set size (KB) = 275080 +0:The total amount of wall time = 1328.095647 +0:The maximum resident set size (KB) = 278660 -Test 099 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_telescopic_2nests_atm -Checking test 100 hafs_regional_telescopic_2nests_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2768,29 +2838,29 @@ Checking test 100 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 = 1426.406154 -0:The maximum resident set size (KB) = 288592 +0:The total amount of wall time = 1427.339342 +0:The maximum resident set size (KB) = 288704 -Test 100 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_global_1nest_atm -Checking test 101 hafs_global_1nest_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_global_1nest_atm +Checking test 102 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 = 830.445710 -0:The maximum resident set size (KB) = 184812 +0:The total amount of wall time = 829.182867 +0:The maximum resident set size (KB) = 185204 -Test 101 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_global_multiple_4nests_atm -Checking test 102 hafs_global_multiple_4nests_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2802,43 +2872,43 @@ Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -0:The total amount of wall time = 1407.789460 -0:The maximum resident set size (KB) = 266204 +0:The total amount of wall time = 1416.917094 +0:The maximum resident set size (KB) = 266116 -Test 102 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_specified_moving_1nest_atm -Checking test 103 hafs_regional_specified_moving_1nest_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_specified_moving_1nest_atm +Checking test 104 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 -0:The total amount of wall time = 732.519358 -0:The maximum resident set size (KB) = 289040 +0:The total amount of wall time = 732.313759 +0:The maximum resident set size (KB) = 289124 -Test 103 hafs_regional_specified_moving_1nest_atm PASS +Test 104 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_storm_following_1nest_atm -Checking test 104 hafs_regional_storm_following_1nest_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_storm_following_1nest_atm +Checking test 105 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 = 719.195382 -0:The maximum resident set size (KB) = 288928 +0:The total amount of wall time = 719.248080 +0:The maximum resident set size (KB) = 288868 -Test 104 hafs_regional_storm_following_1nest_atm PASS +Test 105 hafs_regional_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2846,15 +2916,15 @@ Checking test 105 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 = 737.725800 -0:The maximum resident set size (KB) = 320372 +0:The total amount of wall time = 739.698726 +0:The maximum resident set size (KB) = 320188 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2864,163 +2934,163 @@ Checking test 106 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 = 1324.969310 -0:The maximum resident set size (KB) = 385708 +0:The total amount of wall time = 1333.348836 +0:The maximum resident set size (KB) = 387048 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_storm_following_1nest_atm -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_global_storm_following_1nest_atm +Checking test 108 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 = 414.554390 -0:The maximum resident set size (KB) = 204628 +0:The total amount of wall time = 413.893183 +0:The maximum resident set size (KB) = 205572 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 108 hafs_global_storm_following_1nest_atm PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_docn +Checking test 109 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 = 420.205898 -0:The maximum resident set size (KB) = 735488 +0:The total amount of wall time = 454.855937 +0:The maximum resident set size (KB) = 738012 -Test 108 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_docn_oisst +Checking test 110 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 = 419.552295 -0:The maximum resident set size (KB) = 721812 +0:The total amount of wall time = 544.294198 +0:The maximum resident set size (KB) = 721388 -Test 109 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/hafs_regional_datm_cdeps +Checking test 111 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1274.497690 -0:The maximum resident set size (KB) = 867016 +0:The total amount of wall time = 1284.273690 +0:The maximum resident set size (KB) = 868416 -Test 110 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_control_cfsr +Checking test 112 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 167.275912 -0:The maximum resident set size (KB) = 680552 +0:The total amount of wall time = 166.202637 +0:The maximum resident set size (KB) = 681472 -Test 111 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_restart_cfsr +Checking test 113 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 = 103.169508 -0:The maximum resident set size (KB) = 681040 +0:The total amount of wall time = 103.661751 +0:The maximum resident set size (KB) = 681860 -Test 112 datm_cdeps_restart_cfsr PASS +Test 113 datm_cdeps_restart_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.263720 -0:The maximum resident set size (KB) = 578400 +0:The total amount of wall time = 162.055185 +0:The maximum resident set size (KB) = 579652 -Test 113 datm_cdeps_control_gefs PASS +Test 114 datm_cdeps_control_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_iau_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 158.310542 -0:The maximum resident set size (KB) = 578420 +0:The total amount of wall time = 163.739531 +0:The maximum resident set size (KB) = 579668 -Test 114 datm_cdeps_iau_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 163.722045 -0:The maximum resident set size (KB) = 578420 +0:The total amount of wall time = 159.238748 +0:The maximum resident set size (KB) = 579696 -Test 115 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_bulk_cfsr +Checking test 117 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 = 167.402071 -0:The maximum resident set size (KB) = 680520 +0:The total amount of wall time = 168.366516 +0:The maximum resident set size (KB) = 681500 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 156.446469 -0:The maximum resident set size (KB) = 578508 +0:The total amount of wall time = 154.932832 +0:The maximum resident set size (KB) = 579656 -Test 117 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_mx025_cfsr +Checking test 119 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 @@ -3028,15 +3098,15 @@ Checking test 118 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 = 361.959948 -0:The maximum resident set size (KB) = 493200 +0:The total amount of wall time = 345.907081 +0:The maximum resident set size (KB) = 508908 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_mx025_gefs +Checking test 120 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 @@ -3044,65 +3114,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -0:The total amount of wall time = 355.285776 -0:The maximum resident set size (KB) = 475088 +0:The total amount of wall time = 343.534694 +0:The maximum resident set size (KB) = 490252 -Test 119 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_multiple_files_cfsr +Checking test 121 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.032809 -0:The maximum resident set size (KB) = 680520 +0:The total amount of wall time = 166.355558 +0:The maximum resident set size (KB) = 692564 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_3072x1536_cfsr +Checking test 122 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 = 272.867046 -0:The maximum resident set size (KB) = 1825848 +0:The total amount of wall time = 270.968433 +0:The maximum resident set size (KB) = 1826392 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_gfs -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_gfs +Checking test 123 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 = 240.647219 -0:The maximum resident set size (KB) = 1794732 +0:The total amount of wall time = 257.001637 +0:The maximum resident set size (KB) = 1794952 -Test 122 datm_cdeps_gfs PASS +Test 123 datm_cdeps_gfs PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/datm_cdeps_debug_cfsr +Checking test 124 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 = 452.429998 -0:The maximum resident set size (KB) = 699816 +0:The total amount of wall time = 455.236193 +0:The maximum resident set size (KB) = 689724 -Test 123 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control_atmwav -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_atmwav -Checking test 124 control_atmwav results .... +working dir = /glade/scratch/jongkim/rt-1157-intel/jongkim/FV3_RT/rt_7000/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3145,12 +3215,12 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 94.203499 -0:The maximum resident set size (KB) = 479052 +0:The total amount of wall time = 92.459554 +0:The maximum resident set size (KB) = 478332 -Test 124 control_atmwav PASS +Test 125 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 20:28:26 MDT 2022 -Elapsed time: 03h:56m:52s. Have a nice day! +Tue Jun 7 20:09:13 MDT 2022 +Elapsed time: 02h:33m:37s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 7e244d73ec..eb22609e53 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,25 +1,26 @@ -Fri Jun 3 18:34:23 EDT 2022 +Wed Jun 8 09:33:45 EDT 2022 Start Regression test -Compile 001 elapsed time 653 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 270 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 482 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 244 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 218 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 220 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 571 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 629 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 253 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 145 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 561 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 416 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 649 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 258 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 490 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 437 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 481 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 460 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 230 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 213 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 216 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 195 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 625 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 588 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 376 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 015 elapsed time 151 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 624 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 458 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.577915 - 0: The maximum resident set size (KB) = 1606076 + 0: The total amount of wall time = 448.572392 + 0: The maximum resident set size (KB) = 1606928 Test 001 cpld_control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +145,14 @@ Checking test 002 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 = 272.206725 - 0: The maximum resident set size (KB) = 1556492 + 0: The total amount of wall time = 374.179930 + 0: The maximum resident set size (KB) = 1558916 Test 002 cpld_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +205,14 @@ Checking test 003 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 = 592.899485 - 0: The maximum resident set size (KB) = 2358256 + 0: The total amount of wall time = 596.956445 + 0: The maximum resident set size (KB) = 2432488 Test 003 cpld_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +265,14 @@ Checking test 004 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 = 448.287421 - 0: The maximum resident set size (KB) = 1673308 + 0: The total amount of wall time = 451.415284 + 0: The maximum resident set size (KB) = 1657972 Test 004 cpld_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 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 = 379.619627 - 0: The maximum resident set size (KB) = 1181104 + 0: The total amount of wall time = 383.261958 + 0: The maximum resident set size (KB) = 1327692 Test 005 cpld_mpi_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +385,14 @@ Checking test 006 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 = 943.514614 - 0: The maximum resident set size (KB) = 1661208 + 0: The total amount of wall time = 941.171950 + 0: The maximum resident set size (KB) = 1665664 Test 006 cpld_control_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +445,14 @@ Checking test 007 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 = 576.274356 - 0: The maximum resident set size (KB) = 1633620 + 0: The total amount of wall time = 572.732002 + 0: The maximum resident set size (KB) = 1635432 Test 007 cpld_restart_c192_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +498,14 @@ Checking test 008 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 = 1429.118782 - 0: The maximum resident set size (KB) = 2476476 + 0: The total amount of wall time = 1587.326314 + 0: The maximum resident set size (KB) = 2551264 Test 008 cpld_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +551,14 @@ Checking test 009 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 = 955.329628 - 0: The maximum resident set size (KB) = 2501576 + 0: The total amount of wall time = 993.229164 + 0: The maximum resident set size (KB) = 2503284 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,15 +611,84 @@ Checking test 010 cpld_debug_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 650.979967 - 0: The maximum resident set size (KB) = 1674056 + 0: The total amount of wall time = 645.311766 + 0: The maximum resident set size (KB) = 1674172 Test 010 cpld_debug_p8 PASS +baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/cpld_control_noaero_p8_agrid +Checking test 011 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 = 329.929506 + 0: The maximum resident set size (KB) = 941304 + +Test 011 cpld_control_noaero_p8_agrid PASS + + baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control -Checking test 011 control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control +Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 136.106452 - 0: The maximum resident set size (KB) = 434916 + 0: The total amount of wall time = 135.319579 + 0: The maximum resident set size (KB) = 435356 -Test 011 control PASS +Test 012 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_decomp -Checking test 012 control_decomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_decomp +Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -714,29 +784,29 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.278393 - 0: The maximum resident set size (KB) = 433688 + 0: The total amount of wall time = 141.472478 + 0: The maximum resident set size (KB) = 434200 -Test 012 control_decomp PASS +Test 013 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2dwrtdecomp -Checking test 013 control_2dwrtdecomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_2dwrtdecomp +Checking test 014 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 129.798654 - 0: The maximum resident set size (KB) = 434872 + 0: The total amount of wall time = 127.518249 + 0: The maximum resident set size (KB) = 435484 -Test 013 control_2dwrtdecomp PASS +Test 014 control_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads -Checking test 014 control_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_2threads +Checking test 015 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -778,15 +848,15 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.359029 - 0: The maximum resident set size (KB) = 486396 + 0: The total amount of wall time = 170.814412 + 0: The maximum resident set size (KB) = 487608 -Test 014 control_2threads PASS +Test 015 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_restart -Checking test 015 control_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_restart +Checking test 016 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -824,15 +894,15 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 72.814004 - 0: The maximum resident set size (KB) = 173208 + 0: The total amount of wall time = 73.538073 + 0: The maximum resident set size (KB) = 172800 -Test 015 control_restart PASS +Test 016 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_fhzero -Checking test 016 control_fhzero results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_fhzero +Checking test 017 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -874,15 +944,15 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 132.620775 - 0: The maximum resident set size (KB) = 435116 + 0: The total amount of wall time = 128.509128 + 0: The maximum resident set size (KB) = 435324 -Test 016 control_fhzero PASS +Test 017 control_fhzero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -908,15 +978,15 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 131.291917 - 0: The maximum resident set size (KB) = 436024 + 0: The total amount of wall time = 133.796522 + 0: The maximum resident set size (KB) = 435444 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_latlon -Checking test 018 control_latlon results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -926,15 +996,15 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.992948 - 0: The maximum resident set size (KB) = 435032 + 0: The total amount of wall time = 131.947108 + 0: The maximum resident set size (KB) = 435304 -Test 018 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -944,15 +1014,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 140.357900 - 0: The maximum resident set size (KB) = 435024 + 0: The total amount of wall time = 137.769753 + 0: The maximum resident set size (KB) = 435404 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c48 -Checking test 020 control_c48 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -990,15 +1060,15 @@ Checking test 020 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 358.713623 -0: The maximum resident set size (KB) = 629776 +0: The total amount of wall time = 359.856002 +0: The maximum resident set size (KB) = 629276 -Test 020 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c192 -Checking test 021 control_c192 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1008,15 +1078,15 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 548.195940 - 0: The maximum resident set size (KB) = 538956 + 0: The total amount of wall time = 548.579888 + 0: The maximum resident set size (KB) = 539364 -Test 021 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384 -Checking test 022 control_c384 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1026,15 +1096,15 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 782.435523 - 0: The maximum resident set size (KB) = 811052 + 0: The total amount of wall time = 774.504092 + 0: The maximum resident set size (KB) = 810600 -Test 022 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384gdas -Checking test 023 control_c384gdas results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1076,15 +1146,15 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 770.375952 - 0: The maximum resident set size (KB) = 934404 + 0: The total amount of wall time = 731.358402 + 0: The maximum resident set size (KB) = 933276 -Test 023 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384_progsigma -Checking test 024 control_c384_progsigma results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_c384_progsigma +Checking test 025 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1094,15 +1164,15 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 799.842375 - 0: The maximum resident set size (KB) = 831984 + 0: The total amount of wall time = 919.923252 + 0: The maximum resident set size (KB) = 831328 -Test 024 control_c384_progsigma PASS +Test 025 control_c384_progsigma PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy -Checking test 025 control_stochy results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1112,29 +1182,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 89.696415 - 0: The maximum resident set size (KB) = 439312 + 0: The total amount of wall time = 88.228876 + 0: The maximum resident set size (KB) = 439900 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 49.476189 - 0: The maximum resident set size (KB) = 190088 + 0: The total amount of wall time = 48.721022 + 0: The maximum resident set size (KB) = 190348 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_lndp -Checking test 027 control_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1144,15 +1214,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 82.881693 - 0: The maximum resident set size (KB) = 439828 + 0: The total amount of wall time = 81.264925 + 0: The maximum resident set size (KB) = 440072 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1166,15 +1236,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.491716 - 0: The maximum resident set size (KB) = 434936 + 0: The total amount of wall time = 134.511957 + 0: The maximum resident set size (KB) = 435276 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,15 +1258,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 135.641215 - 0: The maximum resident set size (KB) = 435072 + 0: The total amount of wall time = 137.635469 + 0: The maximum resident set size (KB) = 435404 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8 -Checking test 030 control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1312,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 189.055735 - 0: The maximum resident set size (KB) = 824576 + 0: The total amount of wall time = 194.522309 + 0: The maximum resident set size (KB) = 801676 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1268,15 +1338,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 347.760577 - 0: The maximum resident set size (KB) = 824964 + 0: The total amount of wall time = 356.062944 + 0: The maximum resident set size (KB) = 825508 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1314,15 +1384,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 107.832434 - 0: The maximum resident set size (KB) = 546204 + 0: The total amount of wall time = 106.040869 + 0: The maximum resident set size (KB) = 561056 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1434,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.347715 - 0: The maximum resident set size (KB) = 794072 + 0: The total amount of wall time = 192.992647 + 0: The maximum resident set size (KB) = 821476 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1414,15 +1484,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 239.259715 - 0: The maximum resident set size (KB) = 900388 + 0: The total amount of wall time = 230.698881 + 0: The maximum resident set size (KB) = 897496 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1538,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 231.088412 - 0: The maximum resident set size (KB) = 939576 + 0: The total amount of wall time = 236.337301 + 0: The maximum resident set size (KB) = 940644 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_control -Checking test 036 regional_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1486,58 +1556,58 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 360.783661 - 0: The maximum resident set size (KB) = 544168 + 0: The total amount of wall time = 356.423878 + 0: The maximum resident set size (KB) = 544820 -Test 036 regional_control PASS +Test 037 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_restart -Checking test 037 regional_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 199.438532 - 0: The maximum resident set size (KB) = 541904 + 0: The total amount of wall time = 200.186600 + 0: The maximum resident set size (KB) = 542512 -Test 037 regional_restart PASS +Test 038 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_control_2dwrtdecomp -Checking test 038 regional_control_2dwrtdecomp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 359.913001 - 0: The maximum resident set size (KB) = 544332 + 0: The total amount of wall time = 357.106152 + 0: The maximum resident set size (KB) = 544204 -Test 038 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_noquilt -Checking test 039 regional_noquilt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 380.239321 - 0: The maximum resident set size (KB) = 547120 + 0: The total amount of wall time = 379.532149 + 0: The maximum resident set size (KB) = 548316 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1547,29 +1617,29 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 279.753700 - 0: The maximum resident set size (KB) = 545988 + 0: The total amount of wall time = 287.849455 + 0: The maximum resident set size (KB) = 546520 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 359.858119 - 0: The maximum resident set size (KB) = 541744 + 0: The total amount of wall time = 372.655463 + 0: The maximum resident set size (KB) = 541952 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_3km -Checking test 042 regional_3km results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1579,15 +1649,15 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 280.952751 - 0: The maximum resident set size (KB) = 572072 + 0: The total amount of wall time = 278.514196 + 0: The maximum resident set size (KB) = 572248 -Test 042 regional_3km PASS +Test 043 regional_3km PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_control -Checking test 043 rap_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1633,15 +1703,15 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 448.988953 - 0: The maximum resident set size (KB) = 804412 + 0: The total amount of wall time = 447.633149 + 0: The maximum resident set size (KB) = 805624 -Test 043 rap_control PASS +Test 044 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_rrtmgp -Checking test 044 rap_rrtmgp results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1687,15 +1757,15 @@ Checking test 044 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.184963 - 0: The maximum resident set size (KB) = 922992 + 0: The total amount of wall time = 490.412023 + 0: The maximum resident set size (KB) = 923080 -Test 044 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1705,15 +1775,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 350.857429 - 0: The maximum resident set size (KB) = 887604 + 0: The total amount of wall time = 348.005213 + 0: The maximum resident set size (KB) = 879864 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_2threads -Checking test 046 rap_2threads results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1829,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 565.500253 - 0: The maximum resident set size (KB) = 867748 + 0: The total amount of wall time = 567.660633 + 0: The maximum resident set size (KB) = 868492 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_restart -Checking test 047 rap_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1805,15 +1875,15 @@ Checking test 047 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.633783 - 0: The maximum resident set size (KB) = 546008 + 0: The total amount of wall time = 381.013752 + 0: The maximum resident set size (KB) = 546784 -Test 047 rap_restart PASS +Test 048 rap_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1859,15 +1929,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 450.335269 - 0: The maximum resident set size (KB) = 804440 + 0: The total amount of wall time = 596.041153 + 0: The maximum resident set size (KB) = 805760 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1905,15 +1975,15 @@ Checking test 049 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 = 233.608176 - 0: The maximum resident set size (KB) = 545936 + 0: The total amount of wall time = 230.180541 + 0: The maximum resident set size (KB) = 546308 -Test 049 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hrrr_control -Checking test 050 hrrr_control results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1959,15 +2029,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 430.479817 - 0: The maximum resident set size (KB) = 802156 + 0: The total amount of wall time = 565.249755 + 0: The maximum resident set size (KB) = 802696 -Test 050 hrrr_control PASS +Test 051 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2013,15 +2083,15 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 441.317803 - 0: The maximum resident set size (KB) = 799272 + 0: The total amount of wall time = 575.661834 + 0: The maximum resident set size (KB) = 799384 -Test 051 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1nssl -Checking test 052 rrfs_v1nssl results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2105,15 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 536.991521 - 0: The maximum resident set size (KB) = 489792 + 0: The total amount of wall time = 673.899245 + 0: The maximum resident set size (KB) = 489668 -Test 052 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1nssl_nohailnoccn -Checking test 053 rrfs_v1nssl_nohailnoccn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2127,15 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 519.801729 - 0: The maximum resident set size (KB) = 482072 + 0: The total amount of wall time = 650.656784 + 0: The maximum resident set size (KB) = 482308 -Test 053 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_conus13km_hrrr_warm -Checking test 054 rrfs_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2073,15 +2143,15 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 203.583184 - 0: The maximum resident set size (KB) = 616644 + 0: The total amount of wall time = 204.387719 + 0: The maximum resident set size (KB) = 616536 -Test 054 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_conus13km_radar_tten_warm -Checking test 055 rrfs_conus13km_radar_tten_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2089,15 +2159,15 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 205.957034 - 0: The maximum resident set size (KB) = 619276 + 0: The total amount of wall time = 203.892550 + 0: The maximum resident set size (KB) = 619448 -Test 055 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_smoke_conus13km_hrrr_warm -Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2105,15 +2175,15 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 228.897677 - 0: The maximum resident set size (KB) = 626452 + 0: The total amount of wall time = 221.090493 + 0: The maximum resident set size (KB) = 627060 -Test 056 rrfs_smoke_conus13km_hrrr_warm PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmgt -Checking test 057 control_csawmgt results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_csawmgt +Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,15 +2193,15 @@ Checking test 057 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 380.435324 - 0: The maximum resident set size (KB) = 504196 + 0: The total amount of wall time = 360.115466 + 0: The maximum resident set size (KB) = 504616 -Test 057 control_csawmgt PASS +Test 058 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_flake -Checking test 058 control_flake results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_flake +Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,15 +2211,15 @@ Checking test 058 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 247.231540 - 0: The maximum resident set size (KB) = 507516 + 0: The total amount of wall time = 243.038349 + 0: The maximum resident set size (KB) = 506044 -Test 058 control_flake PASS +Test 059 control_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_ras -Checking test 059 control_ras results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_ras +Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2159,15 +2229,15 @@ Checking test 059 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.121409 - 0: The maximum resident set size (KB) = 471272 + 0: The total amount of wall time = 182.355283 + 0: The maximum resident set size (KB) = 469864 -Test 059 control_ras PASS +Test 060 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson -Checking test 060 control_thompson results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson +Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2177,15 +2247,15 @@ Checking test 060 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 275.174571 - 0: The maximum resident set size (KB) = 818444 + 0: The total amount of wall time = 386.518880 + 0: The maximum resident set size (KB) = 822436 -Test 060 control_thompson PASS +Test 061 control_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_no_aero -Checking test 061 control_thompson_no_aero results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson_no_aero +Checking test 062 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2195,55 +2265,55 @@ Checking test 061 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 239.298246 - 0: The maximum resident set size (KB) = 815284 + 0: The total amount of wall time = 367.979658 + 0: The maximum resident set size (KB) = 814992 -Test 061 control_thompson_no_aero PASS +Test 062 control_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wam -Checking test 062 control_wam results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_wam +Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.024230 - 0: The maximum resident set size (KB) = 183684 + 0: The total amount of wall time = 115.744978 + 0: The maximum resident set size (KB) = 184320 -Test 062 control_wam PASS +Test 063 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_debug -Checking test 063 control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_debug +Checking test 064 control_debug 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.260408 - 0: The maximum resident set size (KB) = 599672 + 0: The total amount of wall time = 149.025592 + 0: The maximum resident set size (KB) = 599944 -Test 063 control_debug PASS +Test 064 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads_debug -Checking test 064 control_2threads_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_2threads_debug +Checking test 065 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.079566 - 0: The maximum resident set size (KB) = 656688 + 0: The total amount of wall time = 271.069899 + 0: The maximum resident set size (KB) = 653992 -Test 064 control_2threads_debug PASS +Test 065 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_CubedSphereGrid_debug -Checking test 065 control_CubedSphereGrid_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_CubedSphereGrid_debug +Checking test 066 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2269,416 +2339,416 @@ Checking test 065 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 162.903622 - 0: The maximum resident set size (KB) = 599636 + 0: The total amount of wall time = 159.050318 + 0: The maximum resident set size (KB) = 600444 -Test 065 control_CubedSphereGrid_debug PASS +Test 066 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wrtGauss_netcdf_parallel_debug -Checking test 066 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_wrtGauss_netcdf_parallel_debug +Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.480555 - 0: The maximum resident set size (KB) = 599784 + 0: The total amount of wall time = 175.463647 + 0: The maximum resident set size (KB) = 599840 -Test 066 control_wrtGauss_netcdf_parallel_debug PASS +Test 067 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy_debug -Checking test 067 control_stochy_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_stochy_debug +Checking test 068 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.199521 - 0: The maximum resident set size (KB) = 606200 + 0: The total amount of wall time = 178.131573 + 0: The maximum resident set size (KB) = 606816 -Test 067 control_stochy_debug PASS +Test 068 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_lndp_debug -Checking test 068 control_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_lndp_debug +Checking test 069 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.110426 - 0: The maximum resident set size (KB) = 604912 + 0: The total amount of wall time = 153.073265 + 0: The maximum resident set size (KB) = 605004 -Test 068 control_lndp_debug PASS +Test 069 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmg_debug -Checking test 069 control_csawmg_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_csawmg_debug +Checking test 070 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.215837 - 0: The maximum resident set size (KB) = 641804 + 0: The total amount of wall time = 245.421442 + 0: The maximum resident set size (KB) = 641940 -Test 069 control_csawmg_debug PASS +Test 070 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmgt_debug -Checking test 070 control_csawmgt_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_csawmgt_debug +Checking test 071 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 = 247.442225 - 0: The maximum resident set size (KB) = 642948 + 0: The total amount of wall time = 240.786696 + 0: The maximum resident set size (KB) = 641472 -Test 070 control_csawmgt_debug PASS +Test 071 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_ras_debug -Checking test 071 control_ras_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_ras_debug +Checking test 072 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.558695 - 0: The maximum resident set size (KB) = 613968 + 0: The total amount of wall time = 155.809587 + 0: The maximum resident set size (KB) = 612940 -Test 071 control_ras_debug PASS +Test 072 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_diag_debug -Checking test 072 control_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_diag_debug +Checking test 073 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 159.341981 - 0: The maximum resident set size (KB) = 657548 + 0: The total amount of wall time = 158.118387 + 0: The maximum resident set size (KB) = 657092 -Test 072 control_diag_debug PASS +Test 073 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_debug_p8 -Checking test 073 control_debug_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_debug_p8 +Checking test 074 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 = 197.842053 - 0: The maximum resident set size (KB) = 988764 + 0: The total amount of wall time = 178.315694 + 0: The maximum resident set size (KB) = 946948 -Test 073 control_debug_p8 PASS +Test 074 control_debug_p8 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_debug -Checking test 074 control_thompson_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson_debug +Checking test 075 control_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 = 184.736645 - 0: The maximum resident set size (KB) = 959456 + 0: The total amount of wall time = 176.860394 + 0: The maximum resident set size (KB) = 961984 -Test 074 control_thompson_debug PASS +Test 075 control_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_no_aero_debug -Checking test 075 control_thompson_no_aero_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson_no_aero_debug +Checking test 076 control_thompson_no_aero_debug 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.249012 - 0: The maximum resident set size (KB) = 955088 + 0: The total amount of wall time = 170.892705 + 0: The maximum resident set size (KB) = 958988 -Test 075 control_thompson_no_aero_debug PASS +Test 076 control_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_extdiag_debug -Checking test 076 control_thompson_extdiag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson_extdiag_debug +Checking test 077 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.554391 - 0: The maximum resident set size (KB) = 988364 + 0: The total amount of wall time = 185.168517 + 0: The maximum resident set size (KB) = 990680 -Test 076 control_thompson_extdiag_debug PASS +Test 077 control_thompson_extdiag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_progcld_thompson_debug -Checking test 077 control_thompson_progcld_thompson_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_thompson_progcld_thompson_debug +Checking test 078 control_thompson_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 = 181.544884 - 0: The maximum resident set size (KB) = 959800 + 0: The total amount of wall time = 177.639144 + 0: The maximum resident set size (KB) = 961776 -Test 077 control_thompson_progcld_thompson_debug PASS +Test 078 control_thompson_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_debug -Checking test 078 regional_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/regional_debug +Checking test 079 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 = 260.703865 - 0: The maximum resident set size (KB) = 570332 + 0: The total amount of wall time = 256.613565 + 0: The maximum resident set size (KB) = 570196 -Test 078 regional_debug PASS +Test 079 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_control_debug -Checking test 079 rap_control_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_control_debug +Checking test 080 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.230520 - 0: The maximum resident set size (KB) = 967800 + 0: The total amount of wall time = 278.460349 + 0: The maximum resident set size (KB) = 968208 -Test 079 rap_control_debug PASS +Test 080 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_unified_drag_suite_debug -Checking test 080 rap_unified_drag_suite_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_unified_drag_suite_debug +Checking test 081 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 284.448187 - 0: The maximum resident set size (KB) = 967656 + 0: The total amount of wall time = 278.035206 + 0: The maximum resident set size (KB) = 968360 -Test 080 rap_unified_drag_suite_debug PASS +Test 081 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_diag_debug -Checking test 081 rap_diag_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_diag_debug +Checking test 082 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 297.945962 - 0: The maximum resident set size (KB) = 1050308 + 0: The total amount of wall time = 293.249151 + 0: The maximum resident set size (KB) = 1051012 -Test 081 rap_diag_debug PASS +Test 082 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_cires_ugwp_debug -Checking test 082 rap_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_cires_ugwp_debug +Checking test 083 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.334463 - 0: The maximum resident set size (KB) = 966728 + 0: The total amount of wall time = 283.736652 + 0: The maximum resident set size (KB) = 969340 -Test 082 rap_cires_ugwp_debug PASS +Test 083 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_unified_ugwp_debug -Checking test 083 rap_unified_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_unified_ugwp_debug +Checking test 084 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.177562 - 0: The maximum resident set size (KB) = 967764 + 0: The total amount of wall time = 283.713617 + 0: The maximum resident set size (KB) = 968380 -Test 083 rap_unified_ugwp_debug PASS +Test 084 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_lndp_debug -Checking test 084 rap_lndp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_lndp_debug +Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.056906 - 0: The maximum resident set size (KB) = 969172 + 0: The total amount of wall time = 280.629343 + 0: The maximum resident set size (KB) = 969092 -Test 084 rap_lndp_debug PASS +Test 085 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_flake_debug -Checking test 085 rap_flake_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_flake_debug +Checking test 086 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.985812 - 0: The maximum resident set size (KB) = 967752 + 0: The total amount of wall time = 278.163267 + 0: The maximum resident set size (KB) = 968228 -Test 085 rap_flake_debug PASS +Test 086 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_progcld_thompson_debug -Checking test 086 rap_progcld_thompson_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_progcld_thompson_debug +Checking test 087 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.452974 - 0: The maximum resident set size (KB) = 967724 + 0: The total amount of wall time = 278.287726 + 0: The maximum resident set size (KB) = 968156 -Test 086 rap_progcld_thompson_debug PASS +Test 087 rap_progcld_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_noah_debug -Checking test 087 rap_noah_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_noah_debug +Checking test 088 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 281.167812 - 0: The maximum resident set size (KB) = 967012 + 0: The total amount of wall time = 275.561582 + 0: The maximum resident set size (KB) = 967120 -Test 087 rap_noah_debug PASS +Test 088 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_rrtmgp_debug -Checking test 088 rap_rrtmgp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_rrtmgp_debug +Checking test 089 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 485.430600 - 0: The maximum resident set size (KB) = 1088804 + 0: The total amount of wall time = 474.221023 + 0: The maximum resident set size (KB) = 1091752 -Test 088 rap_rrtmgp_debug PASS +Test 089 rap_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff_debug -Checking test 089 rap_sfcdiff_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_sfcdiff_debug +Checking test 090 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.275457 - 0: The maximum resident set size (KB) = 967988 + 0: The total amount of wall time = 279.043005 + 0: The maximum resident set size (KB) = 968164 -Test 089 rap_sfcdiff_debug PASS +Test 090 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 090 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 466.858575 - 0: The maximum resident set size (KB) = 966568 + 0: The total amount of wall time = 472.286033 + 0: The maximum resident set size (KB) = 969204 -Test 090 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1beta_debug -Checking test 091 rrfs_v1beta_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/rrfs_v1beta_debug +Checking test 092 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.190801 - 0: The maximum resident set size (KB) = 964796 + 0: The total amount of wall time = 275.439791 + 0: The maximum resident set size (KB) = 963496 -Test 091 rrfs_v1beta_debug PASS +Test 092 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wam_debug -Checking test 092 control_wam_debug results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_wam_debug +Checking test 093 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 291.688772 - 0: The maximum resident set size (KB) = 214520 + 0: The total amount of wall time = 384.818775 + 0: The maximum resident set size (KB) = 215116 -Test 092 control_wam_debug PASS +Test 093 control_wam_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm -Checking test 093 hafs_regional_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_atm +Checking test 094 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 362.143699 - 0: The maximum resident set size (KB) = 662652 + 0: The total amount of wall time = 494.574610 + 0: The maximum resident set size (KB) = 665876 -Test 093 hafs_regional_atm PASS +Test 094 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm_thompson_gfdlsf -Checking test 094 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_atm_thompson_gfdlsf +Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.687252 - 0: The maximum resident set size (KB) = 1023968 + 0: The total amount of wall time = 414.393700 + 0: The maximum resident set size (KB) = 1022084 -Test 094 hafs_regional_atm_thompson_gfdlsf PASS +Test 095 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm_ocn -Checking test 095 hafs_regional_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_atm_ocn +Checking test 096 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2686,15 +2756,15 @@ Checking test 095 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 = 449.355842 - 0: The maximum resident set size (KB) = 693612 + 0: The total amount of wall time = 599.589330 + 0: The maximum resident set size (KB) = 692744 -Test 095 hafs_regional_atm_ocn PASS +Test 096 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm_wav -Checking test 096 hafs_regional_atm_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_atm_wav +Checking test 097 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2702,15 +2772,15 @@ Checking test 096 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 928.525366 - 0: The maximum resident set size (KB) = 722308 + 0: The total amount of wall time = 925.654070 + 0: The maximum resident set size (KB) = 726388 -Test 096 hafs_regional_atm_wav PASS +Test 097 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm_ocn_wav -Checking test 097 hafs_regional_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_atm_ocn_wav +Checking test 098 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2720,29 +2790,29 @@ Checking test 097 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 = 1022.318158 - 0: The maximum resident set size (KB) = 737328 + 0: The total amount of wall time = 1015.966192 + 0: The maximum resident set size (KB) = 736340 -Test 097 hafs_regional_atm_ocn_wav PASS +Test 098 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_1nest_atm -Checking test 098 hafs_regional_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_1nest_atm +Checking test 099 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 = 562.341251 - 0: The maximum resident set size (KB) = 266556 + 0: The total amount of wall time = 557.224126 + 0: The maximum resident set size (KB) = 265672 -Test 098 hafs_regional_1nest_atm PASS +Test 099 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_telescopic_2nests_atm -Checking test 099 hafs_regional_telescopic_2nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_telescopic_2nests_atm +Checking test 100 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2750,29 +2820,29 @@ Checking test 099 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 = 612.979058 - 0: The maximum resident set size (KB) = 268540 + 0: The total amount of wall time = 603.508209 + 0: The maximum resident set size (KB) = 268412 -Test 099 hafs_regional_telescopic_2nests_atm PASS +Test 100 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_global_1nest_atm -Checking test 100 hafs_global_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_global_1nest_atm +Checking test 101 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 = 253.153815 - 0: The maximum resident set size (KB) = 165528 + 0: The total amount of wall time = 247.704788 + 0: The maximum resident set size (KB) = 165164 -Test 100 hafs_global_1nest_atm PASS +Test 101 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_global_multiple_4nests_atm -Checking test 101 hafs_global_multiple_4nests_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_global_multiple_4nests_atm +Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2784,43 +2854,43 @@ Checking test 101 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 713.538066 - 0: The maximum resident set size (KB) = 235072 + 0: The total amount of wall time = 715.411817 + 0: The maximum resident set size (KB) = 233756 -Test 101 hafs_global_multiple_4nests_atm PASS +Test 102 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_specified_moving_1nest_atm -Checking test 102 hafs_regional_specified_moving_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_specified_moving_1nest_atm +Checking test 103 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 - 0: The total amount of wall time = 331.653441 - 0: The maximum resident set size (KB) = 273900 + 0: The total amount of wall time = 327.772303 + 0: The maximum resident set size (KB) = 274092 -Test 102 hafs_regional_specified_moving_1nest_atm PASS +Test 103 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_storm_following_1nest_atm -Checking test 103 hafs_regional_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_storm_following_1nest_atm +Checking test 104 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 = 320.055718 - 0: The maximum resident set size (KB) = 273692 + 0: The total amount of wall time = 318.838536 + 0: The maximum resident set size (KB) = 273864 -Test 103 hafs_regional_storm_following_1nest_atm PASS +Test 104 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_storm_following_1nest_atm_ocn -Checking test 104 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_storm_following_1nest_atm_ocn +Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2828,15 +2898,15 @@ Checking test 104 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 = 349.709969 - 0: The maximum resident set size (KB) = 299472 + 0: The total amount of wall time = 331.286735 + 0: The maximum resident set size (KB) = 300288 -Test 104 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2846,163 +2916,163 @@ Checking test 105 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 = 861.940393 - 0: The maximum resident set size (KB) = 360224 + 0: The total amount of wall time = 881.394826 + 0: The maximum resident set size (KB) = 359196 -Test 105 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_global_storm_following_1nest_atm -Checking test 106 hafs_global_storm_following_1nest_atm results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_global_storm_following_1nest_atm +Checking test 107 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 = 97.530392 - 0: The maximum resident set size (KB) = 185224 + 0: The total amount of wall time = 95.889665 + 0: The maximum resident set size (KB) = 185392 -Test 106 hafs_global_storm_following_1nest_atm PASS +Test 107 hafs_global_storm_following_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_docn -Checking test 107 hafs_regional_docn results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_docn +Checking test 108 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 = 433.291347 - 0: The maximum resident set size (KB) = 704864 + 0: The total amount of wall time = 423.795648 + 0: The maximum resident set size (KB) = 703760 -Test 107 hafs_regional_docn PASS +Test 108 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_docn_oisst -Checking test 108 hafs_regional_docn_oisst results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_docn_oisst +Checking test 109 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 = 433.313464 - 0: The maximum resident set size (KB) = 686920 + 0: The total amount of wall time = 474.387006 + 0: The maximum resident set size (KB) = 693832 -Test 108 hafs_regional_docn_oisst PASS +Test 109 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_datm_cdeps -Checking test 109 hafs_regional_datm_cdeps results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/hafs_regional_datm_cdeps +Checking test 110 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 = 1045.912537 - 0: The maximum resident set size (KB) = 806772 + 0: The total amount of wall time = 1055.552177 + 0: The maximum resident set size (KB) = 806800 -Test 109 hafs_regional_datm_cdeps PASS +Test 110 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_control_cfsr -Checking test 110 datm_cdeps_control_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_control_cfsr +Checking test 111 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 = 152.128836 - 0: The maximum resident set size (KB) = 679544 + 0: The total amount of wall time = 150.086190 + 0: The maximum resident set size (KB) = 680348 -Test 110 datm_cdeps_control_cfsr PASS +Test 111 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_restart_cfsr -Checking test 111 datm_cdeps_restart_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_restart_cfsr +Checking test 112 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 = 85.397444 - 0: The maximum resident set size (KB) = 687212 + 0: The total amount of wall time = 94.852583 + 0: The maximum resident set size (KB) = 680312 -Test 111 datm_cdeps_restart_cfsr PASS +Test 112 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_control_gefs -Checking test 112 datm_cdeps_control_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_control_gefs +Checking test 113 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 152.396382 - 0: The maximum resident set size (KB) = 567012 + 0: The total amount of wall time = 153.929813 + 0: The maximum resident set size (KB) = 569308 -Test 112 datm_cdeps_control_gefs PASS +Test 113 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_iau_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_iau_gefs -Checking test 113 datm_cdeps_iau_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_iau_gefs +Checking test 114 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 181.678304 - 0: The maximum resident set size (KB) = 571608 + 0: The total amount of wall time = 153.540364 + 0: The maximum resident set size (KB) = 571152 -Test 113 datm_cdeps_iau_gefs PASS +Test 114 datm_cdeps_iau_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_stochy_gefs -Checking test 114 datm_cdeps_stochy_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_stochy_gefs +Checking test 115 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 176.353174 - 0: The maximum resident set size (KB) = 566804 + 0: The total amount of wall time = 147.567774 + 0: The maximum resident set size (KB) = 567088 -Test 114 datm_cdeps_stochy_gefs PASS +Test 115 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_bulk_cfsr -Checking test 115 datm_cdeps_bulk_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_bulk_cfsr +Checking test 116 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 = 152.994342 - 0: The maximum resident set size (KB) = 687000 + 0: The total amount of wall time = 192.198302 + 0: The maximum resident set size (KB) = 687884 -Test 115 datm_cdeps_bulk_cfsr PASS +Test 116 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_bulk_gefs -Checking test 116 datm_cdeps_bulk_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_bulk_gefs +Checking test 117 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.766718 - 0: The maximum resident set size (KB) = 570964 + 0: The total amount of wall time = 184.633510 + 0: The maximum resident set size (KB) = 567076 -Test 116 datm_cdeps_bulk_gefs PASS +Test 117 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_mx025_cfsr -Checking test 117 datm_cdeps_mx025_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_mx025_cfsr +Checking test 118 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 @@ -3010,15 +3080,15 @@ Checking test 117 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 360.048797 - 0: The maximum resident set size (KB) = 482264 + 0: The total amount of wall time = 366.117010 + 0: The maximum resident set size (KB) = 487552 -Test 117 datm_cdeps_mx025_cfsr PASS +Test 118 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_mx025_gefs -Checking test 118 datm_cdeps_mx025_gefs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_mx025_gefs +Checking test 119 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 @@ -3026,65 +3096,65 @@ Checking test 118 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 362.815049 - 0: The maximum resident set size (KB) = 456104 + 0: The total amount of wall time = 355.471877 + 0: The maximum resident set size (KB) = 469552 -Test 118 datm_cdeps_mx025_gefs PASS +Test 119 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_multiple_files_cfsr -Checking test 119 datm_cdeps_multiple_files_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_multiple_files_cfsr +Checking test 120 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 151.073254 - 0: The maximum resident set size (KB) = 686952 + 0: The total amount of wall time = 151.680092 + 0: The maximum resident set size (KB) = 687880 -Test 119 datm_cdeps_multiple_files_cfsr PASS +Test 120 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_3072x1536_cfsr -Checking test 120 datm_cdeps_3072x1536_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_3072x1536_cfsr +Checking test 121 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 = 202.778640 - 0: The maximum resident set size (KB) = 1843064 + 0: The total amount of wall time = 200.781583 + 0: The maximum resident set size (KB) = 1843284 -Test 120 datm_cdeps_3072x1536_cfsr PASS +Test 121 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_gfs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_gfs -Checking test 121 datm_cdeps_gfs results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_gfs +Checking test 122 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 = 202.511402 - 0: The maximum resident set size (KB) = 1842780 + 0: The total amount of wall time = 205.546886 + 0: The maximum resident set size (KB) = 1843288 -Test 121 datm_cdeps_gfs PASS +Test 122 datm_cdeps_gfs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_debug_cfsr -Checking test 122 datm_cdeps_debug_cfsr results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/datm_cdeps_debug_cfsr +Checking test 123 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 = 368.640430 - 0: The maximum resident set size (KB) = 692276 + 0: The total amount of wall time = 370.145653 + 0: The maximum resident set size (KB) = 685700 -Test 122 datm_cdeps_debug_cfsr PASS +Test 123 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_atmwav -Checking test 123 control_atmwav results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/control_atmwav +Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3127,15 +3197,15 @@ Checking test 123 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 90.798402 - 0: The maximum resident set size (KB) = 449348 + 0: The total amount of wall time = 90.608525 + 0: The maximum resident set size (KB) = 450220 -Test 123 control_atmwav PASS +Test 124 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/atmaero_control_p8 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/atmaero_control_p8 -Checking test 124 atmaero_control_p8 results .... +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_20477/atmaero_control_p8 +Checking test 125 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3178,12 +3248,12 @@ Checking test 124 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 = 355.075875 - 0: The maximum resident set size (KB) = 1348560 + 0: The total amount of wall time = 359.684689 + 0: The maximum resident set size (KB) = 1362684 -Test 124 atmaero_control_p8 PASS +Test 125 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 22:01:29 EDT 2022 -Elapsed time: 03h:27m:07s. Have a nice day! +Wed Jun 8 15:38:23 EDT 2022 +Elapsed time: 06h:04m:38s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index bbfc96fd69..dacb7c38ae 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Fri Jun 3 22:47:52 UTC 2022 +Tue Jun 7 20:17:55 UTC 2022 Start Regression test -Compile 001 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v17_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 188 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 314 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 98 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 243 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 131 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 112 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 185 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_thompson,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 297 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 226 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 124 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 007 elapsed time 107 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -57,14 +57,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 797.646239 - 0: The maximum resident set size (KB) = 481964 + 0: The total amount of wall time = 839.832631 + 0: The maximum resident set size (KB) = 479156 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -103,14 +103,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 382.240217 - 0: The maximum resident set size (KB) = 183736 + 0: The total amount of wall time = 396.421910 + 0: The maximum resident set size (KB) = 184308 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -149,14 +149,14 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 673.837064 -0: The maximum resident set size (KB) = 701000 +0: The total amount of wall time = 678.234778 +0: The maximum resident set size (KB) = 699188 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -167,14 +167,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 629.572994 - 0: The maximum resident set size (KB) = 483336 + 0: The total amount of wall time = 670.332329 + 0: The maximum resident set size (KB) = 484188 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -185,14 +185,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1391.335564 - 0: The maximum resident set size (KB) = 531008 + 0: The total amount of wall time = 1438.753109 + 0: The maximum resident set size (KB) = 530236 Test 005 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson Checking test 006 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -203,14 +203,14 @@ Checking test 006 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 985.767463 - 0: The maximum resident set size (KB) = 846412 + 0: The total amount of wall time = 1038.300633 + 0: The maximum resident set size (KB) = 847776 Test 006 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson_no_aero Checking test 007 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -221,14 +221,14 @@ Checking test 007 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 962.983331 - 0: The maximum resident set size (KB) = 836024 + 0: The total amount of wall time = 969.271120 + 0: The maximum resident set size (KB) = 834944 Test 007 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_ras Checking test 008 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -239,14 +239,14 @@ Checking test 008 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 790.919018 - 0: The maximum resident set size (KB) = 486792 + 0: The total amount of wall time = 841.529383 + 0: The maximum resident set size (KB) = 492616 Test 008 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_p8 Checking test 009 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -293,14 +293,14 @@ Checking test 009 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 850.428816 - 0: The maximum resident set size (KB) = 831444 + 0: The total amount of wall time = 873.129026 + 0: The maximum resident set size (KB) = 839464 Test 009 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_control Checking test 010 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -347,14 +347,14 @@ Checking test 010 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1403.616340 - 0: The maximum resident set size (KB) = 835780 + 0: The total amount of wall time = 1370.045155 + 0: The maximum resident set size (KB) = 832608 Test 010 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_2threads Checking test 011 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -401,14 +401,14 @@ Checking test 011 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1412.559137 - 0: The maximum resident set size (KB) = 894484 + 0: The total amount of wall time = 1435.695546 + 0: The maximum resident set size (KB) = 897396 Test 011 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_restart Checking test 012 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -447,14 +447,14 @@ Checking test 012 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 671.552567 - 0: The maximum resident set size (KB) = 543616 + 0: The total amount of wall time = 691.306468 + 0: The maximum resident set size (KB) = 547152 Test 012 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_sfcdiff Checking test 013 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 013 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1403.510647 - 0: The maximum resident set size (KB) = 835744 + 0: The total amount of wall time = 1393.383682 + 0: The maximum resident set size (KB) = 837316 Test 013 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_sfcdiff_restart Checking test 014 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -547,14 +547,14 @@ Checking test 014 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 = 682.124440 - 0: The maximum resident set size (KB) = 541244 + 0: The total amount of wall time = 668.100226 + 0: The maximum resident set size (KB) = 543172 Test 014 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/hrrr_control Checking test 015 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -601,14 +601,14 @@ Checking test 015 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1380.602919 - 0: The maximum resident set size (KB) = 833784 + 0: The total amount of wall time = 1374.888821 + 0: The maximum resident set size (KB) = 829684 Test 015 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rrfs_v1beta Checking test 016 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -655,14 +655,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.519511 - 0: The maximum resident set size (KB) = 828476 + 0: The total amount of wall time = 1397.325131 + 0: The maximum resident set size (KB) = 835348 Test 016 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rrfs_conus13km_hrrr_warm Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -671,14 +671,14 @@ Checking test 017 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1512.698741 - 0: The maximum resident set size (KB) = 640436 + 0: The total amount of wall time = 1593.752852 + 0: The maximum resident set size (KB) = 637676 Test 017 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rrfs_conus13km_radar_tten_warm Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -687,14 +687,14 @@ Checking test 018 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1506.896401 - 0: The maximum resident set size (KB) = 644156 + 0: The total amount of wall time = 1535.808295 + 0: The maximum resident set size (KB) = 642012 Test 018 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rrfs_smoke_conus13km_hrrr_warm Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -703,236 +703,236 @@ Checking test 019 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 1583.333888 - 0: The maximum resident set size (KB) = 653320 + 0: The total amount of wall time = 1636.405491 + 0: The maximum resident set size (KB) = 652284 Test 019 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 98.222924 - 0: The maximum resident set size (KB) = 477940 + 0: The total amount of wall time = 100.326224 + 0: The maximum resident set size (KB) = 483692 Test 020 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/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 = 123.803669 - 0: The maximum resident set size (KB) = 533188 + 0: The total amount of wall time = 122.511537 + 0: The maximum resident set size (KB) = 538476 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/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 = 125.656289 - 0: The maximum resident set size (KB) = 552780 + 0: The total amount of wall time = 127.824469 + 0: The maximum resident set size (KB) = 557656 Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/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 = 166.044631 - 0: The maximum resident set size (KB) = 848420 + 0: The total amount of wall time = 166.642531 + 0: The maximum resident set size (KB) = 851136 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_diag_debug Checking test 024 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 = 203.282711 - 0: The maximum resident set size (KB) = 927964 + 0: The total amount of wall time = 207.254328 + 0: The maximum resident set size (KB) = 934892 Test 024 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.021815 - 0: The maximum resident set size (KB) = 846924 + 0: The total amount of wall time = 261.883793 + 0: The maximum resident set size (KB) = 852188 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rap_progcld_thompson_debug Checking test 026 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 = 167.040378 - 0: The maximum resident set size (KB) = 844408 + 0: The total amount of wall time = 168.390487 + 0: The maximum resident set size (KB) = 852832 Test 026 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.752219 - 0: The maximum resident set size (KB) = 841324 + 0: The total amount of wall time = 168.840558 + 0: The maximum resident set size (KB) = 853196 Test 027 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson_debug Checking test 028 control_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 = 112.725619 - 0: The maximum resident set size (KB) = 841304 + 0: The total amount of wall time = 114.614464 + 0: The maximum resident set size (KB) = 848016 Test 028 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.412781 - 0: The maximum resident set size (KB) = 831976 + 0: The total amount of wall time = 108.201960 + 0: The maximum resident set size (KB) = 837912 Test 029 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 133.546593 - 0: The maximum resident set size (KB) = 868004 + 0: The total amount of wall time = 132.887194 + 0: The maximum resident set size (KB) = 872640 Test 030 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_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 = 114.813218 - 0: The maximum resident set size (KB) = 846188 + 0: The total amount of wall time = 113.646401 + 0: The maximum resident set size (KB) = 842524 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_ras_debug Checking test 032 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 99.941507 - 0: The maximum resident set size (KB) = 486868 + 0: The total amount of wall time = 100.988597 + 0: The maximum resident set size (KB) = 497132 Test 032 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_stochy_debug Checking test 033 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 116.260771 - 0: The maximum resident set size (KB) = 482272 + 0: The total amount of wall time = 115.231616 + 0: The maximum resident set size (KB) = 488692 Test 033 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_debug_p8 Checking test 034 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 = 112.053146 - 0: The maximum resident set size (KB) = 832416 + 0: The total amount of wall time = 114.015010 + 0: The maximum resident set size (KB) = 837068 Test 034 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/control_wam_debug Checking test 035 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 179.784403 - 0: The maximum resident set size (KB) = 193464 + 0: The total amount of wall time = 179.826926 + 0: The maximum resident set size (KB) = 196524 Test 035 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/cpld_control_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/cpld_control_noaero_p8 Checking test 036 cpld_control_noaero_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -996,14 +996,14 @@ Checking test 036 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 = 1230.587760 - 0: The maximum resident set size (KB) = 881580 + 0: The total amount of wall time = 1230.291714 + 0: The maximum resident set size (KB) = 877464 Test 036 cpld_control_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/cpld_debug_noaero_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/cpld_debug_noaero_p8 Checking test 037 cpld_debug_noaero_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -1055,25 +1055,25 @@ Checking test 037 cpld_debug_noaero_p8 results .... Comparing 20210322.090000.out_pnt.ww3 .........OK Comparing 20210322.090000.out_grd.ww3 .........OK - 0: The total amount of wall time = 442.372872 - 0: The maximum resident set size (KB) = 886036 + 0: The total amount of wall time = 437.582802 + 0: The maximum resident set size (KB) = 888324 Test 037 cpld_debug_noaero_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_30589/datm_cdeps_control_cfsr Checking test 038 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 = 165.362251 - 0: The maximum resident set size (KB) = 624896 + 0: The total amount of wall time = 163.826884 + 0: The maximum resident set size (KB) = 628764 Test 038 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 23:53:18 UTC 2022 -Elapsed time: 01h:05m:27s. Have a nice day! +Tue Jun 7 21:03:21 UTC 2022 +Elapsed time: 00h:45m:27s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index 7cb7499c36..901e1aa085 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,25 +1,26 @@ -Fri Jun 3 22:32:12 UTC 2022 +Wed Jun 8 13:32:12 UTC 2022 Start Regression test -Compile 001 elapsed time 568 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 201 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 343 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 337 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 313 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 176 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 157 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 159 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 550 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 537 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 169 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 118 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 518 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 336 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 577 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 215 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 390 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 341 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 334 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 184 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 165 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 165 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 190 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 543 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 550 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 180 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 015 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 525 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 366 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 401.840491 - 0: The maximum resident set size (KB) = 5005048 + 0: The total amount of wall time = 404.942690 + 0: The maximum resident set size (KB) = 5013176 Test 001 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +145,14 @@ Checking test 002 cpld_restart_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 243.734245 - 0: The maximum resident set size (KB) = 4966704 + 0: The total amount of wall time = 244.508525 + 0: The maximum resident set size (KB) = 4973232 Test 002 cpld_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +205,14 @@ Checking test 003 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 = 498.808099 - 0: The maximum resident set size (KB) = 5497380 + 0: The total amount of wall time = 500.020543 + 0: The maximum resident set size (KB) = 5483928 Test 003 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +265,14 @@ Checking test 004 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 402.368614 - 0: The maximum resident set size (KB) = 5174916 + 0: The total amount of wall time = 399.297643 + 0: The maximum resident set size (KB) = 5176208 Test 004 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 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 = 331.654114 - 0: The maximum resident set size (KB) = 4746820 + 0: The total amount of wall time = 333.459626 + 0: The maximum resident set size (KB) = 4745752 Test 005 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +385,14 @@ Checking test 006 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 = 796.790914 - 0: The maximum resident set size (KB) = 4871064 + 0: The total amount of wall time = 793.432221 + 0: The maximum resident set size (KB) = 4870140 Test 006 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +445,14 @@ Checking test 007 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK - 0: The total amount of wall time = 463.177377 - 0: The maximum resident set size (KB) = 4909720 + 0: The total amount of wall time = 473.318591 + 0: The maximum resident set size (KB) = 4905860 Test 007 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +498,14 @@ Checking test 008 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 = 1212.627054 - 0: The maximum resident set size (KB) = 5663968 + 0: The total amount of wall time = 1214.439979 + 0: The maximum resident set size (KB) = 5663012 Test 008 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +551,14 @@ Checking test 009 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 = 768.508419 - 0: The maximum resident set size (KB) = 5647380 + 0: The total amount of wall time = 788.185592 + 0: The maximum resident set size (KB) = 5621788 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,15 +611,84 @@ Checking test 010 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 = 757.101032 - 0: The maximum resident set size (KB) = 5070032 + 0: The total amount of wall time = 771.936039 + 0: The maximum resident set size (KB) = 5066292 Test 010 cpld_debug_p8 PASS +baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/cpld_control_noaero_p8_agrid +Checking test 011 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 = 290.399673 + 0: The maximum resident set size (KB) = 1249688 + +Test 011 cpld_control_noaero_p8_agrid PASS + + baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control -Checking test 011 control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control +Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 126.970273 - 0: The maximum resident set size (KB) = 643464 + 0: The total amount of wall time = 125.064201 + 0: The maximum resident set size (KB) = 637748 -Test 011 control PASS +Test 012 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_decomp -Checking test 012 control_decomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_decomp +Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -714,29 +784,29 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 131.968988 - 0: The maximum resident set size (KB) = 637660 + 0: The total amount of wall time = 133.316437 + 0: The maximum resident set size (KB) = 636844 -Test 012 control_decomp PASS +Test 013 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2dwrtdecomp -Checking test 013 control_2dwrtdecomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_2dwrtdecomp +Checking test 014 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 118.275215 - 0: The maximum resident set size (KB) = 646616 + 0: The total amount of wall time = 119.476964 + 0: The maximum resident set size (KB) = 649516 -Test 013 control_2dwrtdecomp PASS +Test 014 control_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2threads -Checking test 014 control_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_2threads +Checking test 015 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -778,15 +848,15 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 154.395152 - 0: The maximum resident set size (KB) = 697408 + 0: The total amount of wall time = 154.527758 + 0: The maximum resident set size (KB) = 698328 -Test 014 control_2threads PASS +Test 015 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_restart -Checking test 015 control_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_restart +Checking test 016 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -824,15 +894,15 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 66.198904 - 0: The maximum resident set size (KB) = 476408 + 0: The total amount of wall time = 65.634396 + 0: The maximum resident set size (KB) = 466000 -Test 015 control_restart PASS +Test 016 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_fhzero -Checking test 016 control_fhzero results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_fhzero +Checking test 017 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -874,15 +944,15 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 118.060634 - 0: The maximum resident set size (KB) = 649016 + 0: The total amount of wall time = 117.961781 + 0: The maximum resident set size (KB) = 647744 -Test 016 control_fhzero PASS +Test 017 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -908,15 +978,15 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 120.601180 - 0: The maximum resident set size (KB) = 647424 + 0: The total amount of wall time = 120.225282 + 0: The maximum resident set size (KB) = 642076 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_latlon -Checking test 018 control_latlon results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -926,17 +996,17 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.251241 - 0: The maximum resident set size (KB) = 647904 + 0: The total amount of wall time = 123.476070 + 0: The maximum resident set size (KB) = 645708 -Test 018 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -944,15 +1014,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.306922 - 0: The maximum resident set size (KB) = 642056 + 0: The total amount of wall time = 126.042873 + 0: The maximum resident set size (KB) = 644540 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c48 -Checking test 020 control_c48 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -990,15 +1060,15 @@ Checking test 020 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 330.993739 -0: The maximum resident set size (KB) = 820428 +0: The total amount of wall time = 335.679526 +0: The maximum resident set size (KB) = 820196 -Test 020 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c192 -Checking test 021 control_c192 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1008,15 +1078,15 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 486.308645 - 0: The maximum resident set size (KB) = 802956 + 0: The total amount of wall time = 484.396202 + 0: The maximum resident set size (KB) = 805744 -Test 021 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384 -Checking test 022 control_c384 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1026,15 +1096,15 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 651.876760 - 0: The maximum resident set size (KB) = 1089160 + 0: The total amount of wall time = 660.552335 + 0: The maximum resident set size (KB) = 1085028 -Test 022 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384gdas -Checking test 023 control_c384gdas results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1076,15 +1146,15 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 590.602519 - 0: The maximum resident set size (KB) = 1243028 + 0: The total amount of wall time = 596.078446 + 0: The maximum resident set size (KB) = 1252496 -Test 023 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384_progsigma -Checking test 024 control_c384_progsigma results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_c384_progsigma +Checking test 025 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1094,15 +1164,15 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 669.090949 - 0: The maximum resident set size (KB) = 1086760 + 0: The total amount of wall time = 666.506710 + 0: The maximum resident set size (KB) = 1088000 -Test 024 control_c384_progsigma PASS +Test 025 control_c384_progsigma PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_stochy -Checking test 025 control_stochy results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1112,29 +1182,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.745166 - 0: The maximum resident set size (KB) = 646020 + 0: The total amount of wall time = 82.076460 + 0: The maximum resident set size (KB) = 648624 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.058185 - 0: The maximum resident set size (KB) = 488404 + 0: The total amount of wall time = 43.261203 + 0: The maximum resident set size (KB) = 489036 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_lndp -Checking test 027 control_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1144,15 +1214,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.709001 - 0: The maximum resident set size (KB) = 647864 + 0: The total amount of wall time = 73.523870 + 0: The maximum resident set size (KB) = 648640 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1166,15 +1236,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.473704 - 0: The maximum resident set size (KB) = 645360 + 0: The total amount of wall time = 124.985936 + 0: The maximum resident set size (KB) = 646656 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,15 +1258,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.320691 - 0: The maximum resident set size (KB) = 645660 + 0: The total amount of wall time = 126.620117 + 0: The maximum resident set size (KB) = 647848 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8 -Checking test 030 control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1312,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 166.390313 - 0: The maximum resident set size (KB) = 1039152 + 0: The total amount of wall time = 166.031756 + 0: The maximum resident set size (KB) = 1039420 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1268,15 +1338,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 319.179215 - 0: The maximum resident set size (KB) = 1038664 + 0: The total amount of wall time = 317.617453 + 0: The maximum resident set size (KB) = 1038936 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1314,15 +1384,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 89.642618 - 0: The maximum resident set size (KB) = 851952 + 0: The total amount of wall time = 88.190894 + 0: The maximum resident set size (KB) = 875832 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1434,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.574877 - 0: The maximum resident set size (KB) = 1023348 + 0: The total amount of wall time = 172.320213 + 0: The maximum resident set size (KB) = 1026132 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1414,15 +1484,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.955973 - 0: The maximum resident set size (KB) = 1120820 + 0: The total amount of wall time = 202.845977 + 0: The maximum resident set size (KB) = 1110048 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1538,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.415785 - 0: The maximum resident set size (KB) = 1162484 + 0: The total amount of wall time = 195.088507 + 0: The maximum resident set size (KB) = 1166780 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_control -Checking test 036 regional_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1486,58 +1556,58 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 330.015875 - 0: The maximum resident set size (KB) = 818236 + 0: The total amount of wall time = 330.302633 + 0: The maximum resident set size (KB) = 833896 -Test 036 regional_control PASS +Test 037 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_restart -Checking test 037 regional_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 181.859287 - 0: The maximum resident set size (KB) = 827884 + 0: The total amount of wall time = 182.561773 + 0: The maximum resident set size (KB) = 826012 -Test 037 regional_restart PASS +Test 038 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_control_2dwrtdecomp -Checking test 038 regional_control_2dwrtdecomp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 329.963045 - 0: The maximum resident set size (KB) = 817824 + 0: The total amount of wall time = 329.412687 + 0: The maximum resident set size (KB) = 828332 -Test 038 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_noquilt -Checking test 039 regional_noquilt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 341.918001 - 0: The maximum resident set size (KB) = 794596 + 0: The total amount of wall time = 342.252081 + 0: The maximum resident set size (KB) = 809076 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1547,29 +1617,29 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 231.344415 - 0: The maximum resident set size (KB) = 831816 + 0: The total amount of wall time = 231.551465 + 0: The maximum resident set size (KB) = 827048 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK - Comparing phyf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc .........OK - 0: The total amount of wall time = 326.306326 - 0: The maximum resident set size (KB) = 823772 + 0: The total amount of wall time = 326.177246 + 0: The maximum resident set size (KB) = 823116 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_3km -Checking test 042 regional_3km results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1579,15 +1649,15 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 254.296360 - 0: The maximum resident set size (KB) = 885108 + 0: The total amount of wall time = 252.619787 + 0: The maximum resident set size (KB) = 890988 -Test 042 regional_3km PASS +Test 043 regional_3km PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_control -Checking test 043 rap_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1633,15 +1703,15 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 431.052647 - 0: The maximum resident set size (KB) = 1043836 + 0: The total amount of wall time = 431.398211 + 0: The maximum resident set size (KB) = 1036972 -Test 043 rap_control PASS +Test 044 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_rrtmgp -Checking test 044 rap_rrtmgp results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1687,15 +1757,15 @@ Checking test 044 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 461.215211 - 0: The maximum resident set size (KB) = 1184592 + 0: The total amount of wall time = 460.897519 + 0: The maximum resident set size (KB) = 1197220 -Test 044 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1705,15 +1775,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 296.235155 - 0: The maximum resident set size (KB) = 1194916 + 0: The total amount of wall time = 297.110283 + 0: The maximum resident set size (KB) = 1197060 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_2threads -Checking test 046 rap_2threads results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1829,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 518.598785 - 0: The maximum resident set size (KB) = 1093004 + 0: The total amount of wall time = 510.693167 + 0: The maximum resident set size (KB) = 1100948 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_restart -Checking test 047 rap_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1805,15 +1875,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 219.730669 - 0: The maximum resident set size (KB) = 950100 + 0: The total amount of wall time = 219.207502 + 0: The maximum resident set size (KB) = 925628 -Test 047 rap_restart PASS +Test 048 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1859,15 +1929,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.324969 - 0: The maximum resident set size (KB) = 1036332 + 0: The total amount of wall time = 434.221048 + 0: The maximum resident set size (KB) = 1029100 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1905,15 +1975,15 @@ Checking test 049 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 = 219.582604 - 0: The maximum resident set size (KB) = 949312 + 0: The total amount of wall time = 219.431250 + 0: The maximum resident set size (KB) = 952044 -Test 049 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hrrr_control -Checking test 050 hrrr_control results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1959,15 +2029,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 415.396631 - 0: The maximum resident set size (KB) = 1032296 + 0: The total amount of wall time = 413.169648 + 0: The maximum resident set size (KB) = 1034220 -Test 050 hrrr_control PASS +Test 051 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2013,15 +2083,15 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 423.322718 - 0: The maximum resident set size (KB) = 1015664 + 0: The total amount of wall time = 424.408898 + 0: The maximum resident set size (KB) = 1026120 -Test 051 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1nssl -Checking test 052 rrfs_v1nssl results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2105,15 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 499.200213 - 0: The maximum resident set size (KB) = 704420 + 0: The total amount of wall time = 499.997341 + 0: The maximum resident set size (KB) = 706288 -Test 052 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1nssl_nohailnoccn -Checking test 053 rrfs_v1nssl_nohailnoccn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2127,15 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 486.232587 - 0: The maximum resident set size (KB) = 733564 + 0: The total amount of wall time = 488.543407 + 0: The maximum resident set size (KB) = 727132 -Test 053 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_conus13km_hrrr_warm -Checking test 054 rrfs_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2073,15 +2143,15 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 176.120578 - 0: The maximum resident set size (KB) = 922044 + 0: The total amount of wall time = 179.586184 + 0: The maximum resident set size (KB) = 918900 -Test 054 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_conus13km_radar_tten_warm -Checking test 055 rrfs_conus13km_radar_tten_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2089,15 +2159,15 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 179.212799 - 0: The maximum resident set size (KB) = 926444 + 0: The total amount of wall time = 177.854939 + 0: The maximum resident set size (KB) = 929352 -Test 055 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_smoke_conus13km_hrrr_warm -Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2105,15 +2175,15 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 196.546521 - 0: The maximum resident set size (KB) = 955448 + 0: The total amount of wall time = 197.021924 + 0: The maximum resident set size (KB) = 957644 -Test 056 rrfs_smoke_conus13km_hrrr_warm PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmg -Checking test 057 control_csawmg results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,15 +2193,15 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 324.820120 - 0: The maximum resident set size (KB) = 757100 + 0: The total amount of wall time = 325.202685 + 0: The maximum resident set size (KB) = 759716 -Test 057 control_csawmg PASS +Test 058 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmgt -Checking test 058 control_csawmgt results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,15 +2211,15 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 320.505736 - 0: The maximum resident set size (KB) = 754256 + 0: The total amount of wall time = 320.434144 + 0: The maximum resident set size (KB) = 755392 -Test 058 control_csawmgt PASS +Test 059 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_flake -Checking test 059 control_flake results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2159,15 +2229,15 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 208.398728 - 0: The maximum resident set size (KB) = 757992 + 0: The total amount of wall time = 207.259598 + 0: The maximum resident set size (KB) = 760716 -Test 059 control_flake PASS +Test 060 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_ras -Checking test 060 control_ras results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2177,15 +2247,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.550634 - 0: The maximum resident set size (KB) = 712848 + 0: The total amount of wall time = 167.819638 + 0: The maximum resident set size (KB) = 716196 -Test 060 control_ras PASS +Test 061 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson -Checking test 061 control_thompson results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2195,15 +2265,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 231.684170 - 0: The maximum resident set size (KB) = 1079368 + 0: The total amount of wall time = 231.576297 + 0: The maximum resident set size (KB) = 1075552 -Test 061 control_thompson PASS +Test 062 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2213,55 +2283,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 219.068951 - 0: The maximum resident set size (KB) = 1056056 + 0: The total amount of wall time = 216.490056 + 0: The maximum resident set size (KB) = 1059056 -Test 062 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_wam -Checking test 063 control_wam results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 100.662745 - 0: The maximum resident set size (KB) = 614416 + 0: The total amount of wall time = 100.880827 + 0: The maximum resident set size (KB) = 616296 -Test 063 control_wam PASS +Test 064 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_debug -Checking test 064 control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 143.593383 - 0: The maximum resident set size (KB) = 805552 + 0: The total amount of wall time = 144.728435 + 0: The maximum resident set size (KB) = 808980 -Test 064 control_debug PASS +Test 065 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2threads_debug -Checking test 065 control_2threads_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 210.870794 - 0: The maximum resident set size (KB) = 860684 + 0: The total amount of wall time = 215.490085 + 0: The maximum resident set size (KB) = 859712 -Test 065 control_2threads_debug PASS +Test 066 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2287,416 +2357,416 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.685358 - 0: The maximum resident set size (KB) = 807032 + 0: The total amount of wall time = 154.352762 + 0: The maximum resident set size (KB) = 806232 -Test 066 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 147.060548 - 0: The maximum resident set size (KB) = 806592 + 0: The total amount of wall time = 147.468278 + 0: The maximum resident set size (KB) = 804700 -Test 067 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_stochy_debug -Checking test 068 control_stochy_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.554502 - 0: The maximum resident set size (KB) = 812788 + 0: The total amount of wall time = 165.841399 + 0: The maximum resident set size (KB) = 810824 -Test 068 control_stochy_debug PASS +Test 069 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_lndp_debug -Checking test 069 control_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.581900 - 0: The maximum resident set size (KB) = 808180 + 0: The total amount of wall time = 150.272624 + 0: The maximum resident set size (KB) = 813792 -Test 069 control_lndp_debug PASS +Test 070 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.410264 - 0: The maximum resident set size (KB) = 861088 + 0: The total amount of wall time = 228.035117 + 0: The maximum resident set size (KB) = 859188 -Test 070 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.528279 - 0: The maximum resident set size (KB) = 854268 + 0: The total amount of wall time = 222.627337 + 0: The maximum resident set size (KB) = 850876 -Test 071 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_ras_debug -Checking test 072 control_ras_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.635835 - 0: The maximum resident set size (KB) = 817344 + 0: The total amount of wall time = 152.259637 + 0: The maximum resident set size (KB) = 823492 -Test 072 control_ras_debug PASS +Test 073 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_diag_debug -Checking test 073 control_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.800386 - 0: The maximum resident set size (KB) = 864620 + 0: The total amount of wall time = 154.097408 + 0: The maximum resident set size (KB) = 859784 -Test 073 control_diag_debug PASS +Test 074 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_debug_p8 -Checking test 074 control_debug_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 160.315710 - 0: The maximum resident set size (KB) = 1199980 + 0: The total amount of wall time = 164.881801 + 0: The maximum resident set size (KB) = 1197328 -Test 074 control_debug_p8 PASS +Test 075 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson_debug -Checking test 075 control_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson_debug +Checking test 076 control_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 = 171.693013 - 0: The maximum resident set size (KB) = 1170680 + 0: The total amount of wall time = 173.155800 + 0: The maximum resident set size (KB) = 1174564 -Test 075 control_thompson_debug PASS +Test 076 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson_no_aero_debug -Checking test 076 control_thompson_no_aero_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.929798 - 0: The maximum resident set size (KB) = 1170584 + 0: The total amount of wall time = 164.528329 + 0: The maximum resident set size (KB) = 1166052 -Test 076 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson_extdiag_debug -Checking test 077 control_thompson_extdiag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.682568 - 0: The maximum resident set size (KB) = 1206916 + 0: The total amount of wall time = 182.563687 + 0: The maximum resident set size (KB) = 1209024 -Test 077 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson_progcld_thompson_debug -Checking test 078 control_thompson_progcld_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.985708 - 0: The maximum resident set size (KB) = 1178984 + 0: The total amount of wall time = 171.899968 + 0: The maximum resident set size (KB) = 1177644 -Test 078 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_debug -Checking test 079 regional_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 234.274944 - 0: The maximum resident set size (KB) = 834456 + 0: The total amount of wall time = 240.541984 + 0: The maximum resident set size (KB) = 836096 -Test 079 regional_debug PASS +Test 080 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_control_debug -Checking test 080 rap_control_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.999967 - 0: The maximum resident set size (KB) = 1187600 + 0: The total amount of wall time = 262.910739 + 0: The maximum resident set size (KB) = 1180108 -Test 080 rap_control_debug PASS +Test 081 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.000213 - 0: The maximum resident set size (KB) = 1186444 + 0: The total amount of wall time = 264.575731 + 0: The maximum resident set size (KB) = 1185148 -Test 081 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_diag_debug -Checking test 082 rap_diag_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.937931 - 0: The maximum resident set size (KB) = 1269640 + 0: The total amount of wall time = 281.049037 + 0: The maximum resident set size (KB) = 1266252 -Test 082 rap_diag_debug PASS +Test 083 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.199385 - 0: The maximum resident set size (KB) = 1194848 + 0: The total amount of wall time = 265.509542 + 0: The maximum resident set size (KB) = 1181348 -Test 083 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.594618 - 0: The maximum resident set size (KB) = 1186804 + 0: The total amount of wall time = 272.899980 + 0: The maximum resident set size (KB) = 1184640 -Test 084 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 265.456301 - 0: The maximum resident set size (KB) = 1188424 + 0: The total amount of wall time = 270.008430 + 0: The maximum resident set size (KB) = 1187112 -Test 085 rap_lndp_debug PASS +Test 086 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_flake_debug -Checking test 086 rap_flake_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.702589 - 0: The maximum resident set size (KB) = 1185548 + 0: The total amount of wall time = 272.342568 + 0: The maximum resident set size (KB) = 1185272 -Test 086 rap_flake_debug PASS +Test 087 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.634942 - 0: The maximum resident set size (KB) = 1189264 + 0: The total amount of wall time = 262.876707 + 0: The maximum resident set size (KB) = 1185400 -Test 087 rap_progcld_thompson_debug PASS +Test 088 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_noah_debug -Checking test 088 rap_noah_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 259.939094 - 0: The maximum resident set size (KB) = 1188620 + 0: The total amount of wall time = 266.698381 + 0: The maximum resident set size (KB) = 1185864 -Test 088 rap_noah_debug PASS +Test 089 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 437.987433 - 0: The maximum resident set size (KB) = 1315424 + 0: The total amount of wall time = 450.213015 + 0: The maximum resident set size (KB) = 1313956 -Test 089 rap_rrtmgp_debug PASS +Test 090 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.240906 - 0: The maximum resident set size (KB) = 1191500 + 0: The total amount of wall time = 265.288798 + 0: The maximum resident set size (KB) = 1184656 -Test 090 rap_sfcdiff_debug PASS +Test 091 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 431.032751 - 0: The maximum resident set size (KB) = 1186176 + 0: The total amount of wall time = 432.562386 + 0: The maximum resident set size (KB) = 1180056 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.793574 - 0: The maximum resident set size (KB) = 1183496 + 0: The total amount of wall time = 262.123152 + 0: The maximum resident set size (KB) = 1183236 -Test 092 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_wam_debug -Checking test 093 control_wam_debug results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 275.422350 - 0: The maximum resident set size (KB) = 521028 + 0: The total amount of wall time = 269.556521 + 0: The maximum resident set size (KB) = 511948 -Test 093 control_wam_debug PASS +Test 094 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_atm -Checking test 094 hafs_regional_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 315.893529 - 0: The maximum resident set size (KB) = 976740 + 0: The total amount of wall time = 315.688395 + 0: The maximum resident set size (KB) = 985316 -Test 094 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_atm_thompson_gfdlsf -Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 391.958746 - 0: The maximum resident set size (KB) = 1349200 + 0: The total amount of wall time = 399.997393 + 0: The maximum resident set size (KB) = 1346600 -Test 095 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_atm_ocn -Checking test 096 hafs_regional_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2704,15 +2774,15 @@ Checking test 096 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 = 390.689574 - 0: The maximum resident set size (KB) = 1206636 + 0: The total amount of wall time = 392.552957 + 0: The maximum resident set size (KB) = 1203980 -Test 096 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_atm_wav -Checking test 097 hafs_regional_atm_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2720,15 +2790,15 @@ Checking test 097 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 = 741.775567 - 0: The maximum resident set size (KB) = 1230116 + 0: The total amount of wall time = 737.898874 + 0: The maximum resident set size (KB) = 1236248 -Test 097 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_atm_ocn_wav -Checking test 098 hafs_regional_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2738,29 +2808,29 @@ Checking test 098 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 = 836.565325 - 0: The maximum resident set size (KB) = 1198840 + 0: The total amount of wall time = 842.695867 + 0: The maximum resident set size (KB) = 1220144 -Test 098 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_1nest_atm -Checking test 099 hafs_regional_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_1nest_atm +Checking test 100 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 = 451.890876 - 0: The maximum resident set size (KB) = 541520 + 0: The total amount of wall time = 455.499616 + 0: The maximum resident set size (KB) = 538324 -Test 099 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_telescopic_2nests_atm -Checking test 100 hafs_regional_telescopic_2nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2768,29 +2838,29 @@ Checking test 100 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 = 502.353177 - 0: The maximum resident set size (KB) = 588192 + 0: The total amount of wall time = 503.749580 + 0: The maximum resident set size (KB) = 592356 -Test 100 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_global_1nest_atm -Checking test 101 hafs_global_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_global_1nest_atm +Checking test 102 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 = 207.477614 - 0: The maximum resident set size (KB) = 384120 + 0: The total amount of wall time = 208.940404 + 0: The maximum resident set size (KB) = 380736 -Test 101 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_global_multiple_4nests_atm -Checking test 102 hafs_global_multiple_4nests_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2802,43 +2872,43 @@ Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 568.419806 - 0: The maximum resident set size (KB) = 417948 + 0: The total amount of wall time = 573.065430 + 0: The maximum resident set size (KB) = 418780 -Test 102 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_specified_moving_1nest_atm -Checking test 103 hafs_regional_specified_moving_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_specified_moving_1nest_atm +Checking test 104 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 - 0: The total amount of wall time = 271.716910 - 0: The maximum resident set size (KB) = 540368 + 0: The total amount of wall time = 274.544902 + 0: The maximum resident set size (KB) = 551004 -Test 103 hafs_regional_specified_moving_1nest_atm PASS +Test 104 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_storm_following_1nest_atm -Checking test 104 hafs_regional_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_storm_following_1nest_atm +Checking test 105 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 = 260.225087 - 0: The maximum resident set size (KB) = 545872 + 0: The total amount of wall time = 261.479009 + 0: The maximum resident set size (KB) = 555104 -Test 104 hafs_regional_storm_following_1nest_atm PASS +Test 105 hafs_regional_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2846,15 +2916,15 @@ Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 269.489330 - 0: The maximum resident set size (KB) = 630684 + 0: The total amount of wall time = 271.591686 + 0: The maximum resident set size (KB) = 630100 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2864,163 +2934,163 @@ Checking test 106 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 = 614.735750 - 0: The maximum resident set size (KB) = 578972 + 0: The total amount of wall time = 619.112450 + 0: The maximum resident set size (KB) = 558616 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_storm_following_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_global_storm_following_1nest_atm +Checking test 108 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 77.449696 - 0: The maximum resident set size (KB) = 399408 + 0: The total amount of wall time = 77.326724 + 0: The maximum resident set size (KB) = 401924 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 108 hafs_global_storm_following_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_docn +Checking test 109 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 = 393.973389 - 0: The maximum resident set size (KB) = 1210864 + 0: The total amount of wall time = 387.538178 + 0: The maximum resident set size (KB) = 1212552 -Test 108 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_docn_oisst +Checking test 110 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 394.564835 - 0: The maximum resident set size (KB) = 1210288 + 0: The total amount of wall time = 399.513853 + 0: The maximum resident set size (KB) = 1210028 -Test 109 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/hafs_regional_datm_cdeps +Checking test 111 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 951.021398 - 0: The maximum resident set size (KB) = 1014620 + 0: The total amount of wall time = 947.933482 + 0: The maximum resident set size (KB) = 1015540 -Test 110 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_control_cfsr +Checking test 112 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 = 147.227199 - 0: The maximum resident set size (KB) = 1038340 + 0: The total amount of wall time = 150.305931 + 0: The maximum resident set size (KB) = 1014648 -Test 111 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_restart_cfsr +Checking test 113 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 = 88.266232 - 0: The maximum resident set size (KB) = 1007784 + 0: The total amount of wall time = 89.864777 + 0: The maximum resident set size (KB) = 1003164 -Test 112 datm_cdeps_restart_cfsr PASS +Test 113 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.487170 - 0: The maximum resident set size (KB) = 932104 + 0: The total amount of wall time = 145.189102 + 0: The maximum resident set size (KB) = 935064 -Test 113 datm_cdeps_control_gefs PASS +Test 114 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_iau_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.682954 - 0: The maximum resident set size (KB) = 931216 + 0: The total amount of wall time = 149.070799 + 0: The maximum resident set size (KB) = 932380 -Test 114 datm_cdeps_iau_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.719931 - 0: The maximum resident set size (KB) = 938840 + 0: The total amount of wall time = 143.809109 + 0: The maximum resident set size (KB) = 948044 -Test 115 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_bulk_cfsr +Checking test 117 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 = 150.057604 - 0: The maximum resident set size (KB) = 1016648 + 0: The total amount of wall time = 148.849465 + 0: The maximum resident set size (KB) = 1032928 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.541893 - 0: The maximum resident set size (KB) = 933248 + 0: The total amount of wall time = 143.998589 + 0: The maximum resident set size (KB) = 934312 -Test 117 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_mx025_cfsr +Checking test 119 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 @@ -3028,15 +3098,15 @@ Checking test 118 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 = 305.653781 - 0: The maximum resident set size (KB) = 847204 + 0: The total amount of wall time = 309.872671 + 0: The maximum resident set size (KB) = 857676 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_mx025_gefs +Checking test 120 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 @@ -3044,65 +3114,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 302.808028 - 0: The maximum resident set size (KB) = 854636 + 0: The total amount of wall time = 305.332645 + 0: The maximum resident set size (KB) = 882228 -Test 119 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_multiple_files_cfsr +Checking test 121 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 147.945078 - 0: The maximum resident set size (KB) = 1020036 + 0: The total amount of wall time = 151.478942 + 0: The maximum resident set size (KB) = 1029772 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_3072x1536_cfsr +Checking test 122 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.363226 - 0: The maximum resident set size (KB) = 2244948 + 0: The total amount of wall time = 200.653535 + 0: The maximum resident set size (KB) = 2250964 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_gfs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_gfs +Checking test 123 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 = 200.938689 - 0: The maximum resident set size (KB) = 2183676 + 0: The total amount of wall time = 206.564250 + 0: The maximum resident set size (KB) = 2244004 -Test 122 datm_cdeps_gfs PASS +Test 123 datm_cdeps_gfs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/datm_cdeps_debug_cfsr +Checking test 124 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 = 439.197255 - 0: The maximum resident set size (KB) = 976968 + 0: The total amount of wall time = 435.248149 + 0: The maximum resident set size (KB) = 969648 -Test 123 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_atmwav -Checking test 124 control_atmwav results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3145,15 +3215,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 79.364248 - 0: The maximum resident set size (KB) = 671972 + 0: The total amount of wall time = 79.196145 + 0: The maximum resident set size (KB) = 670740 -Test 124 control_atmwav PASS +Test 125 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/atmaero_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/atmaero_control_p8 -Checking test 125 atmaero_control_p8 results .... +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_26254/atmaero_control_p8 +Checking test 126 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3196,12 +3266,12 @@ Checking test 125 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 = 323.601171 - 0: The maximum resident set size (KB) = 5107332 + 0: The total amount of wall time = 320.596333 + 0: The maximum resident set size (KB) = 5111060 -Test 125 atmaero_control_p8 PASS +Test 126 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Sat Jun 4 00:00:54 UTC 2022 -Elapsed time: 01h:28m:43s. Have a nice day! +Wed Jun 8 15:11:03 UTC 2022 +Elapsed time: 01h:38m:52s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index d285dce15c..1bda958b1f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,157 +1,28 @@ -Fri Jun 3 22:31:52 GMT 2022 +Wed Jun 8 13:32:40 GMT 2022 Start Regression test -Compile 001 elapsed time 1700 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 293 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1392 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1474 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1456 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 1258 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 007 elapsed time 300 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 244 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 251 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 275 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1605 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 012 elapsed time 1626 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 013 elapsed time 286 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 154 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 1363 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.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 = 599.957830 - 0: The maximum resident set size (KB) = 2029092 - -Test 001 cpld_control_p8 PASS +Compile 001 elapsed time 1683 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 307 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1427 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 004 elapsed time 1390 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1487 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 1511 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 007 elapsed time 1229 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 008 elapsed time 308 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 317 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 333 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 216 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 1833 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 013 elapsed time 1773 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 014 elapsed time 319 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 015 elapsed time 539 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 1696 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 017 elapsed time 1850 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Test 001 cpld_control_p8 FAIL baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_restart_p8 -Checking test 002 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 = 332.792687 - 0: The maximum resident set size (KB) = 1999692 - -Test 002 cpld_restart_p8 PASS - - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +75,14 @@ Checking test 003 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 = 1090.213371 - 0: The maximum resident set size (KB) = 2575208 + 0: The total amount of wall time = 1029.623652 + 0: The maximum resident set size (KB) = 2575444 Test 003 cpld_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +135,14 @@ Checking test 004 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 = 606.979897 - 0: The maximum resident set size (KB) = 2173000 + 0: The total amount of wall time = 572.223310 + 0: The maximum resident set size (KB) = 2181012 Test 004 cpld_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +195,14 @@ Checking test 005 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 458.555535 - 0: The maximum resident set size (KB) = 1891496 + 0: The total amount of wall time = 487.907967 + 0: The maximum resident set size (KB) = 1846032 Test 005 cpld_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/cpld_debug_p8 Checking test 006 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -384,15 +255,17 @@ Checking test 006 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 = 1010.443045 - 0: The maximum resident set size (KB) = 2071344 + 0: The total amount of wall time = 1070.458087 + 0: The maximum resident set size (KB) = 2079948 Test 006 cpld_debug_p8 PASS +Test 007 cpld_control_noaero_p8_agrid FAIL + baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control -Checking test 007 control results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control +Checking test 008 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -438,15 +311,15 @@ Checking test 007 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 209.577218 - 0: The maximum resident set size (KB) = 584296 + 0: The total amount of wall time = 1175.566805 + 0: The maximum resident set size (KB) = 581872 -Test 007 control PASS +Test 008 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_decomp -Checking test 008 control_decomp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_decomp +Checking test 009 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -488,29 +361,29 @@ Checking test 008 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 188.821852 - 0: The maximum resident set size (KB) = 574316 + 0: The total amount of wall time = 230.570657 + 0: The maximum resident set size (KB) = 578780 -Test 008 control_decomp PASS +Test 009 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2dwrtdecomp -Checking test 009 control_2dwrtdecomp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_2dwrtdecomp +Checking test 010 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 171.177623 - 0: The maximum resident set size (KB) = 580176 + 0: The total amount of wall time = 358.091371 + 0: The maximum resident set size (KB) = 581552 -Test 009 control_2dwrtdecomp PASS +Test 010 control_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2threads -Checking test 010 control_2threads results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_2threads +Checking test 011 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -552,15 +425,15 @@ Checking test 010 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1213.888950 - 0: The maximum resident set size (KB) = 638604 + 0: The total amount of wall time = 860.162619 + 0: The maximum resident set size (KB) = 638912 -Test 010 control_2threads PASS +Test 011 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_restart -Checking test 011 control_restart results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_restart +Checking test 012 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -598,15 +471,15 @@ Checking test 011 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.397535 - 0: The maximum resident set size (KB) = 368960 + 0: The total amount of wall time = 93.265400 + 0: The maximum resident set size (KB) = 367096 -Test 011 control_restart PASS +Test 012 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_fhzero -Checking test 012 control_fhzero results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_fhzero +Checking test 013 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -648,15 +521,15 @@ Checking test 012 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 182.887819 - 0: The maximum resident set size (KB) = 585076 + 0: The total amount of wall time = 617.465414 + 0: The maximum resident set size (KB) = 583196 -Test 012 control_fhzero PASS +Test 013 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_CubedSphereGrid -Checking test 013 control_CubedSphereGrid results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_CubedSphereGrid +Checking test 014 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -682,15 +555,15 @@ Checking test 013 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 171.624033 - 0: The maximum resident set size (KB) = 582980 + 0: The total amount of wall time = 231.654584 + 0: The maximum resident set size (KB) = 583312 -Test 013 control_CubedSphereGrid PASS +Test 014 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_latlon -Checking test 014 control_latlon results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_latlon +Checking test 015 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -700,15 +573,15 @@ Checking test 014 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.072961 - 0: The maximum resident set size (KB) = 584188 + 0: The total amount of wall time = 287.985562 + 0: The maximum resident set size (KB) = 586416 -Test 014 control_latlon PASS +Test 015 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_wrtGauss_netcdf_parallel -Checking test 015 control_wrtGauss_netcdf_parallel results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_wrtGauss_netcdf_parallel +Checking test 016 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -718,15 +591,15 @@ Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 183.511878 - 0: The maximum resident set size (KB) = 584824 + 0: The total amount of wall time = 867.191923 + 0: The maximum resident set size (KB) = 588592 -Test 015 control_wrtGauss_netcdf_parallel PASS +Test 016 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_c48 -Checking test 016 control_c48 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_c48 +Checking test 017 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -764,15 +637,15 @@ Checking test 016 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 575.751280 -0: The maximum resident set size (KB) = 787132 +0: The total amount of wall time = 581.359575 +0: The maximum resident set size (KB) = 794776 -Test 016 control_c48 PASS +Test 017 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_c192 -Checking test 017 control_c192 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_c192 +Checking test 018 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -782,33 +655,17 @@ Checking test 017 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 699.858711 - 0: The maximum resident set size (KB) = 734524 + 0: The total amount of wall time = 750.284584 + 0: The maximum resident set size (KB) = 731048 -Test 017 control_c192 PASS +Test 018 control_c192 PASS - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_c384 -Checking test 018 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 = 948.750254 - 0: The maximum resident set size (KB) = 1073704 - -Test 018 control_c384 PASS +Test 019 control_c384 FAIL baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_c384gdas -Checking test 019 control_c384gdas results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_c384gdas +Checking test 020 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -850,15 +707,15 @@ Checking test 019 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 924.858969 - 0: The maximum resident set size (KB) = 1161464 + 0: The total amount of wall time = 834.781983 + 0: The maximum resident set size (KB) = 1164552 -Test 019 control_c384gdas PASS +Test 020 control_c384gdas PASS Tries: 2 baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_c384_progsigma -Checking test 020 control_c384_progsigma results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_c384_progsigma +Checking test 021 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -868,15 +725,15 @@ Checking test 020 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 951.234163 - 0: The maximum resident set size (KB) = 995032 + 0: The total amount of wall time = 1627.265983 + 0: The maximum resident set size (KB) = 1001244 -Test 020 control_c384_progsigma PASS +Test 021 control_c384_progsigma PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_stochy -Checking test 021 control_stochy results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_stochy +Checking test 022 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -886,29 +743,29 @@ Checking test 021 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 121.864707 - 0: The maximum resident set size (KB) = 584448 + 0: The total amount of wall time = 450.541297 + 0: The maximum resident set size (KB) = 587328 -Test 021 control_stochy PASS +Test 022 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_stochy_restart -Checking test 022 control_stochy_restart results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_stochy_restart +Checking test 023 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 62.740726 - 0: The maximum resident set size (KB) = 390732 + 0: The total amount of wall time = 63.660673 + 0: The maximum resident set size (KB) = 383892 -Test 022 control_stochy_restart PASS +Test 023 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_lndp -Checking test 023 control_lndp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_lndp +Checking test 024 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -918,15 +775,15 @@ Checking test 023 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 106.851299 - 0: The maximum resident set size (KB) = 586116 + 0: The total amount of wall time = 123.857720 + 0: The maximum resident set size (KB) = 584528 -Test 023 control_lndp PASS +Test 024 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_iovr4 -Checking test 024 control_iovr4 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_iovr4 +Checking test 025 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -940,15 +797,15 @@ Checking test 024 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 214.444418 - 0: The maximum resident set size (KB) = 581948 + 0: The total amount of wall time = 814.140539 + 0: The maximum resident set size (KB) = 583496 -Test 024 control_iovr4 PASS +Test 025 control_iovr4 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_iovr5 -Checking test 025 control_iovr5 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_iovr5 +Checking test 026 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -962,15 +819,15 @@ Checking test 025 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 181.961655 - 0: The maximum resident set size (KB) = 581308 + 0: The total amount of wall time = 1118.946533 + 0: The maximum resident set size (KB) = 581680 -Test 025 control_iovr5 PASS +Test 026 control_iovr5 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_p8 -Checking test 026 control_p8 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_p8 +Checking test 027 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1016,15 +873,15 @@ Checking test 026 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 257.488484 - 0: The maximum resident set size (KB) = 976904 + 0: The total amount of wall time = 419.703149 + 0: The maximum resident set size (KB) = 975244 -Test 026 control_p8 PASS +Test 027 control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_p8_lndp -Checking test 027 control_p8_lndp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_p8_lndp +Checking test 028 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1042,15 +899,15 @@ Checking test 027 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 465.007826 - 0: The maximum resident set size (KB) = 977380 + 0: The total amount of wall time = 1187.071436 + 0: The maximum resident set size (KB) = 963312 -Test 027 control_p8_lndp PASS +Test 028 control_p8_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_restart_p8 -Checking test 028 control_restart_p8 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_restart_p8 +Checking test 029 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1088,15 +945,15 @@ Checking test 028 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 = 125.532976 - 0: The maximum resident set size (KB) = 769448 + 0: The total amount of wall time = 124.989373 + 0: The maximum resident set size (KB) = 764044 -Test 028 control_restart_p8 PASS +Test 029 control_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_decomp_p8 -Checking test 029 control_decomp_p8 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_decomp_p8 +Checking test 030 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1138,15 +995,15 @@ Checking test 029 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 = 267.096110 - 0: The maximum resident set size (KB) = 965500 + 0: The total amount of wall time = 509.328167 + 0: The maximum resident set size (KB) = 961956 -Test 029 control_decomp_p8 PASS +Test 030 control_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2threads_p8 -Checking test 030 control_2threads_p8 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_2threads_p8 +Checking test 031 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1188,15 +1045,15 @@ Checking test 030 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 = 550.506272 - 0: The maximum resident set size (KB) = 1058192 + 0: The total amount of wall time = 808.535604 + 0: The maximum resident set size (KB) = 1058024 -Test 030 control_2threads_p8 PASS +Test 031 control_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_p8_rrtmgp -Checking test 031 control_p8_rrtmgp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_p8_rrtmgp +Checking test 032 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1099,15 @@ Checking test 031 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 = 298.226156 - 0: The maximum resident set size (KB) = 1104100 + 0: The total amount of wall time = 590.681850 + 0: The maximum resident set size (KB) = 1098764 -Test 031 control_p8_rrtmgp PASS +Test 032 control_p8_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_control -Checking test 032 regional_control results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_control +Checking test 033 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1260,72 +1117,72 @@ Checking test 032 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 487.408185 - 0: The maximum resident set size (KB) = 747372 + 0: The total amount of wall time = 608.165799 + 0: The maximum resident set size (KB) = 742036 -Test 032 regional_control PASS +Test 033 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_restart -Checking test 033 regional_restart results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_restart +Checking test 034 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 305.335109 - 0: The maximum resident set size (KB) = 740516 + 0: The total amount of wall time = 459.146531 + 0: The maximum resident set size (KB) = 731528 -Test 033 regional_restart PASS +Test 034 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_control_2dwrtdecomp -Checking test 034 regional_control_2dwrtdecomp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_control_2dwrtdecomp +Checking test 035 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 488.321321 - 0: The maximum resident set size (KB) = 742272 + 0: The total amount of wall time = 742.742739 + 0: The maximum resident set size (KB) = 740128 -Test 034 regional_control_2dwrtdecomp PASS +Test 035 regional_control_2dwrtdecomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_noquilt -Checking test 035 regional_noquilt results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_noquilt +Checking test 036 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 = 510.032393 - 0: The maximum resident set size (KB) = 722532 + 0: The total amount of wall time = 565.444561 + 0: The maximum resident set size (KB) = 715176 -Test 035 regional_noquilt PASS +Test 036 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_netcdf_parallel -Checking test 036 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_netcdf_parallel +Checking test 037 regional_netcdf_parallel results .... + Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 476.798313 - 0: The maximum resident set size (KB) = 737832 + 0: The total amount of wall time = 490.860546 + 0: The maximum resident set size (KB) = 739132 -Test 036 regional_netcdf_parallel PASS +Test 037 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_3km -Checking test 037 regional_3km results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_3km +Checking test 038 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1335,15 +1192,15 @@ Checking test 037 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 386.426677 - 0: The maximum resident set size (KB) = 783316 + 0: The total amount of wall time = 573.166411 + 0: The maximum resident set size (KB) = 778620 -Test 037 regional_3km PASS +Test 038 regional_3km PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_control -Checking test 038 rap_control results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_control +Checking test 039 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1389,15 +1246,15 @@ Checking test 038 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 599.213230 - 0: The maximum resident set size (KB) = 967856 + 0: The total amount of wall time = 577.692676 + 0: The maximum resident set size (KB) = 968896 -Test 038 rap_control PASS +Test 039 rap_control PASS Tries: 2 baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_rrtmgp -Checking test 039 rap_rrtmgp results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_rrtmgp +Checking test 040 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1443,15 +1300,15 @@ Checking test 039 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 651.229937 - 0: The maximum resident set size (KB) = 1094812 + 0: The total amount of wall time = 1563.440790 + 0: The maximum resident set size (KB) = 1093692 -Test 039 rap_rrtmgp PASS +Test 040 rap_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_spp_sppt_shum_skeb -Checking test 040 regional_spp_sppt_shum_skeb results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_spp_sppt_shum_skeb +Checking test 041 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1461,15 +1318,15 @@ Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 864.644998 - 0: The maximum resident set size (KB) = 1097484 + 0: The total amount of wall time = 856.507695 + 0: The maximum resident set size (KB) = 1087868 -Test 040 regional_spp_sppt_shum_skeb PASS +Test 041 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_restart -Checking test 041 rap_restart results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_restart +Checking test 042 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1507,15 +1364,15 @@ Checking test 041 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 298.193298 - 0: The maximum resident set size (KB) = 813956 + 0: The total amount of wall time = 293.340106 + 0: The maximum resident set size (KB) = 809268 -Test 041 rap_restart PASS +Test 042 rap_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_sfcdiff -Checking test 042 rap_sfcdiff results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_sfcdiff +Checking test 043 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1561,15 +1418,15 @@ Checking test 042 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 584.954757 - 0: The maximum resident set size (KB) = 953592 + 0: The total amount of wall time = 593.193410 + 0: The maximum resident set size (KB) = 965980 -Test 042 rap_sfcdiff PASS +Test 043 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_sfcdiff_restart -Checking test 043 rap_sfcdiff_restart results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_sfcdiff_restart +Checking test 044 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1607,15 +1464,15 @@ Checking test 043 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 = 299.781636 - 0: The maximum resident set size (KB) = 816628 + 0: The total amount of wall time = 297.412710 + 0: The maximum resident set size (KB) = 803596 -Test 043 rap_sfcdiff_restart PASS +Test 044 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hrrr_control -Checking test 044 hrrr_control results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hrrr_control +Checking test 045 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1661,15 +1518,15 @@ Checking test 044 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 554.814382 - 0: The maximum resident set size (KB) = 951564 + 0: The total amount of wall time = 576.191770 + 0: The maximum resident set size (KB) = 955468 -Test 044 hrrr_control PASS +Test 045 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_v1beta -Checking test 045 rrfs_v1beta results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_v1beta +Checking test 046 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1715,15 +1572,15 @@ Checking test 045 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 631.725787 - 0: The maximum resident set size (KB) = 960924 + 0: The total amount of wall time = 584.516758 + 0: The maximum resident set size (KB) = 960504 -Test 045 rrfs_v1beta PASS +Test 046 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_v1nssl -Checking test 046 rrfs_v1nssl results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_v1nssl +Checking test 047 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1737,15 +1594,15 @@ Checking test 046 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 720.902466 - 0: The maximum resident set size (KB) = 643908 + 0: The total amount of wall time = 666.473970 + 0: The maximum resident set size (KB) = 645668 -Test 046 rrfs_v1nssl PASS +Test 047 rrfs_v1nssl PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_v1nssl_nohailnoccn -Checking test 047 rrfs_v1nssl_nohailnoccn results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_v1nssl_nohailnoccn +Checking test 048 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1616,15 @@ Checking test 047 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 715.017511 - 0: The maximum resident set size (KB) = 644484 + 0: The total amount of wall time = 660.775848 + 0: The maximum resident set size (KB) = 641760 -Test 047 rrfs_v1nssl_nohailnoccn PASS +Test 048 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_conus13km_hrrr_warm -Checking test 048 rrfs_conus13km_hrrr_warm results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_conus13km_hrrr_warm +Checking test 049 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1775,15 +1632,15 @@ Checking test 048 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 241.603763 - 0: The maximum resident set size (KB) = 849736 + 0: The total amount of wall time = 238.476315 + 0: The maximum resident set size (KB) = 848016 -Test 048 rrfs_conus13km_hrrr_warm PASS +Test 049 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_conus13km_radar_tten_warm -Checking test 049 rrfs_conus13km_radar_tten_warm results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_conus13km_radar_tten_warm +Checking test 050 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1791,15 +1648,15 @@ Checking test 049 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 248.027616 - 0: The maximum resident set size (KB) = 850908 + 0: The total amount of wall time = 241.757192 + 0: The maximum resident set size (KB) = 855172 -Test 049 rrfs_conus13km_radar_tten_warm PASS +Test 050 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_smoke_conus13km_hrrr_warm -Checking test 050 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_smoke_conus13km_hrrr_warm +Checking test 051 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1807,15 +1664,15 @@ Checking test 050 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 275.716065 - 0: The maximum resident set size (KB) = 878364 + 0: The total amount of wall time = 269.566557 + 0: The maximum resident set size (KB) = 881248 -Test 050 rrfs_smoke_conus13km_hrrr_warm PASS +Test 051 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_csawmg -Checking test 051 control_csawmg results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_csawmg +Checking test 052 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1825,15 +1682,15 @@ Checking test 051 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 493.465100 - 0: The maximum resident set size (KB) = 685268 + 0: The total amount of wall time = 443.604322 + 0: The maximum resident set size (KB) = 688056 -Test 051 control_csawmg PASS +Test 052 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_csawmgt -Checking test 052 control_csawmgt results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_csawmgt +Checking test 053 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1843,15 +1700,15 @@ Checking test 052 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 486.465041 - 0: The maximum resident set size (KB) = 688340 + 0: The total amount of wall time = 444.504291 + 0: The maximum resident set size (KB) = 691432 -Test 052 control_csawmgt PASS +Test 053 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_flake -Checking test 053 control_flake results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_flake +Checking test 054 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1861,15 +1718,15 @@ Checking test 053 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 336.898360 - 0: The maximum resident set size (KB) = 694568 + 0: The total amount of wall time = 278.688437 + 0: The maximum resident set size (KB) = 693556 -Test 053 control_flake PASS +Test 054 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_ras -Checking test 054 control_ras results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_ras +Checking test 055 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1879,15 +1736,15 @@ Checking test 054 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.829647 - 0: The maximum resident set size (KB) = 655520 + 0: The total amount of wall time = 234.384245 + 0: The maximum resident set size (KB) = 653672 -Test 054 control_ras PASS +Test 055 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson -Checking test 055 control_thompson results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson +Checking test 056 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1897,15 +1754,15 @@ Checking test 055 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 371.201934 - 0: The maximum resident set size (KB) = 1004380 + 0: The total amount of wall time = 319.906237 + 0: The maximum resident set size (KB) = 1014616 -Test 055 control_thompson PASS +Test 056 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson_no_aero -Checking test 056 control_thompson_no_aero results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson_no_aero +Checking test 057 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1915,55 +1772,55 @@ Checking test 056 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 351.282929 - 0: The maximum resident set size (KB) = 993776 + 0: The total amount of wall time = 299.055246 + 0: The maximum resident set size (KB) = 998096 -Test 056 control_thompson_no_aero PASS +Test 057 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_wam -Checking test 057 control_wam results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_wam +Checking test 058 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 201.880155 - 0: The maximum resident set size (KB) = 463136 + 0: The total amount of wall time = 135.524651 + 0: The maximum resident set size (KB) = 461956 -Test 057 control_wam PASS +Test 058 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_debug -Checking test 058 control_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_debug +Checking test 059 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 214.158649 - 0: The maximum resident set size (KB) = 745496 + 0: The total amount of wall time = 196.887393 + 0: The maximum resident set size (KB) = 744724 -Test 058 control_debug PASS +Test 059 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2threads_debug -Checking test 059 control_2threads_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_2threads_debug +Checking test 060 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 376.917059 - 0: The maximum resident set size (KB) = 806492 + 0: The total amount of wall time = 341.619650 + 0: The maximum resident set size (KB) = 803352 -Test 059 control_2threads_debug PASS +Test 060 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_CubedSphereGrid_debug -Checking test 060 control_CubedSphereGrid_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_CubedSphereGrid_debug +Checking test 061 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1989,416 +1846,416 @@ Checking test 060 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 241.314737 - 0: The maximum resident set size (KB) = 746028 + 0: The total amount of wall time = 211.110422 + 0: The maximum resident set size (KB) = 747044 -Test 060 control_CubedSphereGrid_debug PASS +Test 061 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_wrtGauss_netcdf_parallel_debug -Checking test 061 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_wrtGauss_netcdf_parallel_debug +Checking test 062 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 = 202.155279 - 0: The maximum resident set size (KB) = 743968 + 0: The total amount of wall time = 199.236499 + 0: The maximum resident set size (KB) = 746816 -Test 061 control_wrtGauss_netcdf_parallel_debug PASS +Test 062 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_stochy_debug -Checking test 062 control_stochy_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_stochy_debug +Checking test 063 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 = 223.889839 - 0: The maximum resident set size (KB) = 749488 + 0: The total amount of wall time = 218.452188 + 0: The maximum resident set size (KB) = 754376 -Test 062 control_stochy_debug PASS +Test 063 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_lndp_debug -Checking test 063 control_lndp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_lndp_debug +Checking test 064 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 = 213.490152 - 0: The maximum resident set size (KB) = 754048 + 0: The total amount of wall time = 196.981836 + 0: The maximum resident set size (KB) = 753540 -Test 063 control_lndp_debug PASS +Test 064 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_csawmg_debug -Checking test 064 control_csawmg_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_csawmg_debug +Checking test 065 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 317.213060 - 0: The maximum resident set size (KB) = 799736 + 0: The total amount of wall time = 305.855977 + 0: The maximum resident set size (KB) = 799568 -Test 064 control_csawmg_debug PASS +Test 065 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_csawmgt_debug -Checking test 065 control_csawmgt_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_csawmgt_debug +Checking test 066 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 307.606591 - 0: The maximum resident set size (KB) = 800844 + 0: The total amount of wall time = 297.654361 + 0: The maximum resident set size (KB) = 799256 -Test 065 control_csawmgt_debug PASS +Test 066 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_ras_debug -Checking test 066 control_ras_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_ras_debug +Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.881093 - 0: The maximum resident set size (KB) = 759852 + 0: The total amount of wall time = 197.168263 + 0: The maximum resident set size (KB) = 762824 -Test 066 control_ras_debug PASS +Test 067 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_diag_debug -Checking test 067 control_diag_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_diag_debug +Checking test 068 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 205.646793 - 0: The maximum resident set size (KB) = 813888 + 0: The total amount of wall time = 202.442598 + 0: The maximum resident set size (KB) = 804148 -Test 067 control_diag_debug PASS +Test 068 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_debug_p8 -Checking test 068 control_debug_p8 results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_debug_p8 +Checking test 069 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.918867 - 0: The maximum resident set size (KB) = 1140560 + 0: The total amount of wall time = 219.042987 + 0: The maximum resident set size (KB) = 1142892 -Test 068 control_debug_p8 PASS +Test 069 control_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson_debug -Checking test 069 control_thompson_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson_debug +Checking test 070 control_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 = 227.953951 - 0: The maximum resident set size (KB) = 1111856 + 0: The total amount of wall time = 231.537549 + 0: The maximum resident set size (KB) = 1118708 -Test 069 control_thompson_debug PASS +Test 070 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson_no_aero_debug -Checking test 070 control_thompson_no_aero_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson_no_aero_debug +Checking test 071 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.577184 - 0: The maximum resident set size (KB) = 1109672 + 0: The total amount of wall time = 224.532168 + 0: The maximum resident set size (KB) = 1101512 -Test 070 control_thompson_no_aero_debug PASS +Test 071 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson_extdiag_debug -Checking test 071 control_thompson_extdiag_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson_extdiag_debug +Checking test 072 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.740735 - 0: The maximum resident set size (KB) = 1143932 + 0: The total amount of wall time = 242.653805 + 0: The maximum resident set size (KB) = 1149840 -Test 071 control_thompson_extdiag_debug PASS +Test 072 control_thompson_extdiag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_thompson_progcld_thompson_debug -Checking test 072 control_thompson_progcld_thompson_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_thompson_progcld_thompson_debug +Checking test 073 control_thompson_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 = 226.164238 - 0: The maximum resident set size (KB) = 1117824 + 0: The total amount of wall time = 226.859425 + 0: The maximum resident set size (KB) = 1121356 -Test 072 control_thompson_progcld_thompson_debug PASS +Test 073 control_thompson_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_debug -Checking test 073 regional_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/regional_debug +Checking test 074 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 324.092526 - 0: The maximum resident set size (KB) = 758668 + 0: The total amount of wall time = 325.546522 + 0: The maximum resident set size (KB) = 760432 -Test 073 regional_debug PASS +Test 074 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_control_debug -Checking test 074 rap_control_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_control_debug +Checking test 075 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.063110 - 0: The maximum resident set size (KB) = 1117532 + 0: The total amount of wall time = 354.598418 + 0: The maximum resident set size (KB) = 1122048 -Test 074 rap_control_debug PASS +Test 075 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_unified_drag_suite_debug -Checking test 075 rap_unified_drag_suite_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_unified_drag_suite_debug +Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.794356 - 0: The maximum resident set size (KB) = 1126352 + 0: The total amount of wall time = 353.248288 + 0: The maximum resident set size (KB) = 1121332 -Test 075 rap_unified_drag_suite_debug PASS +Test 076 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_diag_debug -Checking test 076 rap_diag_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_diag_debug +Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 370.557815 - 0: The maximum resident set size (KB) = 1202944 + 0: The total amount of wall time = 370.236172 + 0: The maximum resident set size (KB) = 1199912 -Test 076 rap_diag_debug PASS +Test 077 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_cires_ugwp_debug -Checking test 077 rap_cires_ugwp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_cires_ugwp_debug +Checking test 078 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 = 360.949735 - 0: The maximum resident set size (KB) = 1118468 + 0: The total amount of wall time = 542.899519 + 0: The maximum resident set size (KB) = 1116756 -Test 077 rap_cires_ugwp_debug PASS +Test 078 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_unified_ugwp_debug -Checking test 078 rap_unified_ugwp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_unified_ugwp_debug +Checking test 079 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 = 360.628581 - 0: The maximum resident set size (KB) = 1117456 + 0: The total amount of wall time = 361.598650 + 0: The maximum resident set size (KB) = 1114272 -Test 078 rap_unified_ugwp_debug PASS +Test 079 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_lndp_debug -Checking test 079 rap_lndp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_lndp_debug +Checking test 080 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 350.478401 - 0: The maximum resident set size (KB) = 1125868 + 0: The total amount of wall time = 356.257890 + 0: The maximum resident set size (KB) = 1119360 -Test 079 rap_lndp_debug PASS +Test 080 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_flake_debug -Checking test 080 rap_flake_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_flake_debug +Checking test 081 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 = 355.756053 - 0: The maximum resident set size (KB) = 1118548 + 0: The total amount of wall time = 348.024875 + 0: The maximum resident set size (KB) = 1123084 -Test 080 rap_flake_debug PASS +Test 081 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_progcld_thompson_debug -Checking test 081 rap_progcld_thompson_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_progcld_thompson_debug +Checking test 082 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 = 358.356916 - 0: The maximum resident set size (KB) = 1126188 + 0: The total amount of wall time = 347.040484 + 0: The maximum resident set size (KB) = 1124800 -Test 081 rap_progcld_thompson_debug PASS +Test 082 rap_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_noah_debug -Checking test 082 rap_noah_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_noah_debug +Checking test 083 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 349.950683 - 0: The maximum resident set size (KB) = 1119832 + 0: The total amount of wall time = 344.219322 + 0: The maximum resident set size (KB) = 1128504 -Test 082 rap_noah_debug PASS +Test 083 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_rrtmgp_debug -Checking test 083 rap_rrtmgp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_rrtmgp_debug +Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 589.228090 - 0: The maximum resident set size (KB) = 1253572 + 0: The total amount of wall time = 592.214938 + 0: The maximum resident set size (KB) = 1247516 -Test 083 rap_rrtmgp_debug PASS +Test 084 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_sfcdiff_debug -Checking test 084 rap_sfcdiff_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_sfcdiff_debug +Checking test 085 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 359.987228 - 0: The maximum resident set size (KB) = 1130928 + 0: The total amount of wall time = 351.392198 + 0: The maximum resident set size (KB) = 1117332 -Test 084 rap_sfcdiff_debug PASS +Test 085 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 086 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 582.558447 - 0: The maximum resident set size (KB) = 1122956 + 0: The total amount of wall time = 580.875994 + 0: The maximum resident set size (KB) = 1123852 -Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 086 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rrfs_v1beta_debug -Checking test 086 rrfs_v1beta_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/rrfs_v1beta_debug +Checking test 087 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.147208 - 0: The maximum resident set size (KB) = 1123648 + 0: The total amount of wall time = 351.067512 + 0: The maximum resident set size (KB) = 1115620 -Test 086 rrfs_v1beta_debug PASS +Test 087 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_wam_debug -Checking test 087 control_wam_debug results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_wam_debug +Checking test 088 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 368.831249 - 0: The maximum resident set size (KB) = 424036 + 0: The total amount of wall time = 366.253144 + 0: The maximum resident set size (KB) = 425332 -Test 087 control_wam_debug PASS +Test 088 control_wam_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_atm -Checking test 088 hafs_regional_atm results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_atm +Checking test 089 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 748.480321 - 0: The maximum resident set size (KB) = 1172160 + 0: The total amount of wall time = 726.335477 + 0: The maximum resident set size (KB) = 1161068 -Test 088 hafs_regional_atm PASS +Test 089 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_atm_thompson_gfdlsf -Checking test 089 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_atm_thompson_gfdlsf +Checking test 090 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 884.235716 - 0: The maximum resident set size (KB) = 1545872 + 0: The total amount of wall time = 854.958798 + 0: The maximum resident set size (KB) = 1513408 -Test 089 hafs_regional_atm_thompson_gfdlsf PASS +Test 090 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_atm_ocn -Checking test 090 hafs_regional_atm_ocn results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_atm_ocn +Checking test 091 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2406,15 +2263,15 @@ Checking test 090 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 554.649413 - 0: The maximum resident set size (KB) = 1268352 + 0: The total amount of wall time = 523.003962 + 0: The maximum resident set size (KB) = 1268964 -Test 090 hafs_regional_atm_ocn PASS +Test 091 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_atm_wav -Checking test 091 hafs_regional_atm_wav results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_atm_wav +Checking test 092 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2422,15 +2279,15 @@ Checking test 091 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 932.490443 - 0: The maximum resident set size (KB) = 1290772 + 0: The total amount of wall time = 919.051676 + 0: The maximum resident set size (KB) = 1298480 -Test 091 hafs_regional_atm_wav PASS +Test 092 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_atm_ocn_wav -Checking test 092 hafs_regional_atm_ocn_wav results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_atm_ocn_wav +Checking test 093 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2440,149 +2297,149 @@ Checking test 092 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 = 1042.495534 - 0: The maximum resident set size (KB) = 1316196 + 0: The total amount of wall time = 1025.516226 + 0: The maximum resident set size (KB) = 1309804 -Test 092 hafs_regional_atm_ocn_wav PASS +Test 093 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_docn -Checking test 093 hafs_regional_docn results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_docn +Checking test 094 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 = 528.301876 - 0: The maximum resident set size (KB) = 1277496 + 0: The total amount of wall time = 522.462147 + 0: The maximum resident set size (KB) = 1281652 -Test 093 hafs_regional_docn PASS +Test 094 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_docn_oisst -Checking test 094 hafs_regional_docn_oisst results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_docn_oisst +Checking test 095 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 = 525.351946 - 0: The maximum resident set size (KB) = 1272696 + 0: The total amount of wall time = 534.502800 + 0: The maximum resident set size (KB) = 1265732 -Test 094 hafs_regional_docn_oisst PASS +Test 095 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/hafs_regional_datm_cdeps -Checking test 095 hafs_regional_datm_cdeps results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/hafs_regional_datm_cdeps +Checking test 096 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 = 1224.612180 - 0: The maximum resident set size (KB) = 951868 + 0: The total amount of wall time = 1224.710448 + 0: The maximum resident set size (KB) = 956084 -Test 095 hafs_regional_datm_cdeps PASS +Test 096 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_control_cfsr -Checking test 096 datm_cdeps_control_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_control_cfsr +Checking test 097 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 = 200.059577 - 0: The maximum resident set size (KB) = 899540 + 0: The total amount of wall time = 200.370271 + 0: The maximum resident set size (KB) = 907716 -Test 096 datm_cdeps_control_cfsr PASS +Test 097 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_restart_cfsr -Checking test 097 datm_cdeps_restart_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_restart_cfsr +Checking test 098 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 = 126.228646 - 0: The maximum resident set size (KB) = 901092 + 0: The total amount of wall time = 119.290929 + 0: The maximum resident set size (KB) = 898696 -Test 097 datm_cdeps_restart_cfsr PASS +Test 098 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_control_gefs -Checking test 098 datm_cdeps_control_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_control_gefs +Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.192579 - 0: The maximum resident set size (KB) = 821340 + 0: The total amount of wall time = 194.850920 + 0: The maximum resident set size (KB) = 815452 -Test 098 datm_cdeps_control_gefs PASS +Test 099 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_iau_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_iau_gefs -Checking test 099 datm_cdeps_iau_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_iau_gefs +Checking test 100 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.709082 - 0: The maximum resident set size (KB) = 811164 + 0: The total amount of wall time = 198.711580 + 0: The maximum resident set size (KB) = 819224 -Test 099 datm_cdeps_iau_gefs PASS +Test 100 datm_cdeps_iau_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_stochy_gefs -Checking test 100 datm_cdeps_stochy_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_stochy_gefs +Checking test 101 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 199.615382 - 0: The maximum resident set size (KB) = 812520 + 0: The total amount of wall time = 194.605731 + 0: The maximum resident set size (KB) = 819064 -Test 100 datm_cdeps_stochy_gefs PASS +Test 101 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_bulk_cfsr -Checking test 101 datm_cdeps_bulk_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_bulk_cfsr +Checking test 102 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 = 204.904864 - 0: The maximum resident set size (KB) = 918676 + 0: The total amount of wall time = 194.424767 + 0: The maximum resident set size (KB) = 924724 -Test 101 datm_cdeps_bulk_cfsr PASS +Test 102 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_bulk_gefs -Checking test 102 datm_cdeps_bulk_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_bulk_gefs +Checking test 103 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 196.686378 - 0: The maximum resident set size (KB) = 812160 + 0: The total amount of wall time = 192.417347 + 0: The maximum resident set size (KB) = 814032 -Test 102 datm_cdeps_bulk_gefs PASS +Test 103 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_mx025_cfsr -Checking test 103 datm_cdeps_mx025_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_mx025_cfsr +Checking test 104 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 @@ -2590,15 +2447,15 @@ Checking test 103 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 441.678915 - 0: The maximum resident set size (KB) = 754584 + 0: The total amount of wall time = 430.280771 + 0: The maximum resident set size (KB) = 758644 -Test 103 datm_cdeps_mx025_cfsr PASS +Test 104 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_mx025_gefs -Checking test 104 datm_cdeps_mx025_gefs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_mx025_gefs +Checking test 105 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 @@ -2606,65 +2463,65 @@ Checking test 104 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 453.851696 - 0: The maximum resident set size (KB) = 700876 + 0: The total amount of wall time = 418.758487 + 0: The maximum resident set size (KB) = 731032 -Test 104 datm_cdeps_mx025_gefs PASS +Test 105 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_multiple_files_cfsr -Checking test 105 datm_cdeps_multiple_files_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_multiple_files_cfsr +Checking test 106 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 = 199.358030 - 0: The maximum resident set size (KB) = 906956 + 0: The total amount of wall time = 196.297475 + 0: The maximum resident set size (KB) = 919288 -Test 105 datm_cdeps_multiple_files_cfsr PASS +Test 106 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_3072x1536_cfsr -Checking test 106 datm_cdeps_3072x1536_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_3072x1536_cfsr +Checking test 107 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 = 290.387642 - 0: The maximum resident set size (KB) = 2064452 + 0: The total amount of wall time = 265.867739 + 0: The maximum resident set size (KB) = 2121764 -Test 106 datm_cdeps_3072x1536_cfsr PASS +Test 107 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_gfs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_gfs -Checking test 107 datm_cdeps_gfs results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_gfs +Checking test 108 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 = 281.681891 - 0: The maximum resident set size (KB) = 2113736 + 0: The total amount of wall time = 272.378445 + 0: The maximum resident set size (KB) = 2119168 -Test 107 datm_cdeps_gfs PASS +Test 108 datm_cdeps_gfs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/datm_cdeps_debug_cfsr -Checking test 108 datm_cdeps_debug_cfsr results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/datm_cdeps_debug_cfsr +Checking test 109 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 = 573.984548 - 0: The maximum resident set size (KB) = 904176 + 0: The total amount of wall time = 577.106385 + 0: The maximum resident set size (KB) = 911136 -Test 108 datm_cdeps_debug_cfsr PASS +Test 109 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_atmwav -Checking test 109 control_atmwav results .... +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_70420/control_atmwav +Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -2707,15 +2564,190 @@ Checking test 109 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 112.829956 - 0: The maximum resident set size (KB) = 605324 + 0: The total amount of wall time = 112.676299 + 0: The maximum resident set size (KB) = 606136 + +Test 110 control_atmwav PASS + +Test 111 atmaero_control_p8 FAIL + +FAILED TESTS: +Test cpld_control_p8 001 failed in run_test failed +Test cpld_control_noaero_p8_agrid 007 failed in run_test failed +Test control_c384 019 failed in run_test failed +Test atmaero_control_p8 111 failed in run_test failed + +REGRESSION TEST FAILED +Wed Jun 8 21:24:03 GMT 2022 +Elapsed time: 07h:51m:23s. Have a nice day! + +Compile 001 elapsed time 1697 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 1403 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 003 elapsed time 1396 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1315 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 +working dir = /lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14575/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing gocart.inst_aod.20210323_0600z.nc4 .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 544.862309 + 0: The maximum resident set size (KB) = 2000276 + +Test 001 cpld_control_p8 PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14575/cpld_control_noaero_p8_agrid +Checking test 002 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 = 400.403876 + 0: The maximum resident set size (KB) = 1147328 + +Test 002 cpld_control_noaero_p8_agrid PASS + + +baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 +working dir = /lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14575/control_c384 +Checking test 003 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 = 876.867146 + 0: The maximum resident set size (KB) = 1069848 -Test 109 control_atmwav PASS +Test 003 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/atmaero_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/atmaero_control_p8 -Checking test 110 atmaero_control_p8 results .... +working dir = /lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_14575/atmaero_control_p8 +Checking test 004 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2758,12 +2790,12 @@ Checking test 110 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 = 438.924162 - 0: The maximum resident set size (KB) = 1718728 + 0: The total amount of wall time = 448.682843 + 0: The maximum resident set size (KB) = 1724616 -Test 110 atmaero_control_p8 PASS +Test 004 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 23:56:23 GMT 2022 -Elapsed time: 01h:24m:32s. Have a nice day! +Wed Jun 8 22:32:05 GMT 2022 +Elapsed time: 00h:45m:02s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index a882efdb2d..4290aac24d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,25 +1,26 @@ -Fri Jun 3 17:32:24 CDT 2022 +Wed Jun 8 08:32:26 CDT 2022 Start Regression test -Compile 001 elapsed time 642 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 257 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 454 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 402 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 354 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 190 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 161 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 164 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 182 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 544 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 589 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 178 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 130 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 524 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 380 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 605 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 225 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 478 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 414 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 421 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 414 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 352 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 188 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 188 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 174 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 156 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 584 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 558 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 196 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 015 elapsed time 125 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 513 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 367 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK - 0: The total amount of wall time = 408.575082 - 0: The maximum resident set size (KB) = 4997304 + 0: The total amount of wall time = 409.801845 + 0: The maximum resident set size (KB) = 4998468 Test 001 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +145,14 @@ Checking test 002 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 = 264.031978 - 0: The maximum resident set size (KB) = 4959128 + 0: The total amount of wall time = 253.651374 + 0: The maximum resident set size (KB) = 4969332 Test 002 cpld_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +205,14 @@ Checking test 003 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 = 508.839222 - 0: The maximum resident set size (KB) = 5482012 + 0: The total amount of wall time = 505.949895 + 0: The maximum resident set size (KB) = 5492052 Test 003 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +265,14 @@ Checking test 004 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 = 407.800399 - 0: The maximum resident set size (KB) = 5169460 + 0: The total amount of wall time = 407.175706 + 0: The maximum resident set size (KB) = 5181332 Test 004 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 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 = 345.567057 - 0: The maximum resident set size (KB) = 4740228 + 0: The total amount of wall time = 342.137344 + 0: The maximum resident set size (KB) = 4739828 Test 005 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +385,14 @@ Checking test 006 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 = 794.383686 - 0: The maximum resident set size (KB) = 4861532 + 0: The total amount of wall time = 808.082950 + 0: The maximum resident set size (KB) = 4863056 Test 006 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +445,14 @@ Checking test 007 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 = 695.204952 - 0: The maximum resident set size (KB) = 4903096 + 0: The total amount of wall time = 656.865401 + 0: The maximum resident set size (KB) = 4918912 Test 007 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +498,14 @@ Checking test 008 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 = 1526.085432 - 0: The maximum resident set size (KB) = 5657332 + 0: The total amount of wall time = 1322.628926 + 0: The maximum resident set size (KB) = 5659984 Test 008 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +551,14 @@ Checking test 009 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 = 966.979912 - 0: The maximum resident set size (KB) = 5615556 + 0: The total amount of wall time = 879.926913 + 0: The maximum resident set size (KB) = 5644064 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,15 +611,84 @@ Checking test 010 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 = 837.265736 - 0: The maximum resident set size (KB) = 5065508 + 0: The total amount of wall time = 817.252485 + 0: The maximum resident set size (KB) = 5070304 Test 010 cpld_debug_p8 PASS +baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/cpld_control_noaero_p8_agrid +Checking test 011 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 = 287.591270 + 0: The maximum resident set size (KB) = 1252256 + +Test 011 cpld_control_noaero_p8_agrid PASS + + baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control -Checking test 011 control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control +Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 127.254370 - 0: The maximum resident set size (KB) = 642760 + 0: The total amount of wall time = 126.865884 + 0: The maximum resident set size (KB) = 642768 -Test 011 control PASS +Test 012 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_decomp -Checking test 012 control_decomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_decomp +Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -714,29 +784,29 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 194.458116 - 0: The maximum resident set size (KB) = 631472 + 0: The total amount of wall time = 134.735771 + 0: The maximum resident set size (KB) = 638096 -Test 012 control_decomp PASS +Test 013 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2dwrtdecomp -Checking test 013 control_2dwrtdecomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_2dwrtdecomp +Checking test 014 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 122.218146 - 0: The maximum resident set size (KB) = 642120 + 0: The total amount of wall time = 121.462847 + 0: The maximum resident set size (KB) = 643560 -Test 013 control_2dwrtdecomp PASS +Test 014 control_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2threads -Checking test 014 control_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_2threads +Checking test 015 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -778,15 +848,15 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 149.922161 - 0: The maximum resident set size (KB) = 700428 + 0: The total amount of wall time = 148.887230 + 0: The maximum resident set size (KB) = 700652 -Test 014 control_2threads PASS +Test 015 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_restart -Checking test 015 control_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_restart +Checking test 016 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -824,15 +894,15 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 69.286138 - 0: The maximum resident set size (KB) = 472272 + 0: The total amount of wall time = 68.736516 + 0: The maximum resident set size (KB) = 460844 -Test 015 control_restart PASS +Test 016 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_fhzero -Checking test 016 control_fhzero results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_fhzero +Checking test 017 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -874,15 +944,15 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.301391 - 0: The maximum resident set size (KB) = 640012 + 0: The total amount of wall time = 119.563307 + 0: The maximum resident set size (KB) = 642820 -Test 016 control_fhzero PASS +Test 017 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -908,15 +978,15 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 126.095329 - 0: The maximum resident set size (KB) = 635748 + 0: The total amount of wall time = 124.848547 + 0: The maximum resident set size (KB) = 643892 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_latlon -Checking test 018 control_latlon results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -926,15 +996,15 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.138270 - 0: The maximum resident set size (KB) = 641568 + 0: The total amount of wall time = 125.109086 + 0: The maximum resident set size (KB) = 644584 -Test 018 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -944,15 +1014,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.175628 - 0: The maximum resident set size (KB) = 645456 + 0: The total amount of wall time = 127.793162 + 0: The maximum resident set size (KB) = 640516 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c48 -Checking test 020 control_c48 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -990,15 +1060,15 @@ Checking test 020 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 333.562226 -0: The maximum resident set size (KB) = 802004 +0: The total amount of wall time = 330.889839 +0: The maximum resident set size (KB) = 819416 -Test 020 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c192 -Checking test 021 control_c192 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1008,15 +1078,15 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 491.089476 - 0: The maximum resident set size (KB) = 802216 + 0: The total amount of wall time = 487.786881 + 0: The maximum resident set size (KB) = 804596 -Test 021 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c384 -Checking test 022 control_c384 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1026,15 +1096,15 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 685.341576 - 0: The maximum resident set size (KB) = 1089660 + 0: The total amount of wall time = 679.665003 + 0: The maximum resident set size (KB) = 1084668 -Test 022 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c384gdas -Checking test 023 control_c384gdas results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1076,15 +1146,15 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 593.127043 - 0: The maximum resident set size (KB) = 1242616 + 0: The total amount of wall time = 591.756996 + 0: The maximum resident set size (KB) = 1246144 -Test 023 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c384_progsigma -Checking test 024 control_c384_progsigma results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_c384_progsigma +Checking test 025 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1094,15 +1164,15 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 714.008226 - 0: The maximum resident set size (KB) = 1081636 + 0: The total amount of wall time = 677.755950 + 0: The maximum resident set size (KB) = 1077704 -Test 024 control_c384_progsigma PASS +Test 025 control_c384_progsigma PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_stochy -Checking test 025 control_stochy results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1112,29 +1182,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 83.329020 - 0: The maximum resident set size (KB) = 649756 + 0: The total amount of wall time = 82.206156 + 0: The maximum resident set size (KB) = 651384 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.994523 - 0: The maximum resident set size (KB) = 484352 + 0: The total amount of wall time = 47.247461 + 0: The maximum resident set size (KB) = 484076 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_lndp -Checking test 027 control_lndp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1144,15 +1214,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.857069 - 0: The maximum resident set size (KB) = 646688 + 0: The total amount of wall time = 75.727832 + 0: The maximum resident set size (KB) = 648924 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1166,15 +1236,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 132.030639 - 0: The maximum resident set size (KB) = 644204 + 0: The total amount of wall time = 127.020133 + 0: The maximum resident set size (KB) = 645664 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,15 +1258,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 130.091507 - 0: The maximum resident set size (KB) = 643136 + 0: The total amount of wall time = 126.556185 + 0: The maximum resident set size (KB) = 642048 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_p8 -Checking test 030 control_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1312,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.410292 - 0: The maximum resident set size (KB) = 1032360 + 0: The total amount of wall time = 167.719245 + 0: The maximum resident set size (KB) = 1041052 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1268,15 +1338,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 323.389068 - 0: The maximum resident set size (KB) = 1030800 + 0: The total amount of wall time = 321.285976 + 0: The maximum resident set size (KB) = 1035800 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1314,15 +1384,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.246098 - 0: The maximum resident set size (KB) = 866008 + 0: The total amount of wall time = 91.819143 + 0: The maximum resident set size (KB) = 866380 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1434,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.302652 - 0: The maximum resident set size (KB) = 1019808 + 0: The total amount of wall time = 175.771960 + 0: The maximum resident set size (KB) = 1023548 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1414,15 +1484,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 201.526170 - 0: The maximum resident set size (KB) = 1105380 + 0: The total amount of wall time = 198.602802 + 0: The maximum resident set size (KB) = 1114752 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1538,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.481188 - 0: The maximum resident set size (KB) = 1161492 + 0: The total amount of wall time = 196.681892 + 0: The maximum resident set size (KB) = 1168148 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_control -Checking test 036 regional_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1486,58 +1556,58 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 338.917487 - 0: The maximum resident set size (KB) = 827356 + 0: The total amount of wall time = 450.677176 + 0: The maximum resident set size (KB) = 831384 -Test 036 regional_control PASS +Test 037 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_restart -Checking test 037 regional_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 191.775742 - 0: The maximum resident set size (KB) = 821944 + 0: The total amount of wall time = 189.778785 + 0: The maximum resident set size (KB) = 825324 -Test 037 regional_restart PASS +Test 038 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_control_2dwrtdecomp -Checking test 038 regional_control_2dwrtdecomp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 332.560446 - 0: The maximum resident set size (KB) = 825768 + 0: The total amount of wall time = 331.289410 + 0: The maximum resident set size (KB) = 816424 -Test 038 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_noquilt -Checking test 039 regional_noquilt results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 335.604487 - 0: The maximum resident set size (KB) = 807632 + 0: The total amount of wall time = 335.218479 + 0: The maximum resident set size (KB) = 799536 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1547,29 +1617,29 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 231.959186 - 0: The maximum resident set size (KB) = 822264 + 0: The total amount of wall time = 229.485943 + 0: The maximum resident set size (KB) = 827612 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 332.146808 - 0: The maximum resident set size (KB) = 819352 + 0: The total amount of wall time = 330.807647 + 0: The maximum resident set size (KB) = 825716 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_3km -Checking test 042 regional_3km results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1579,15 +1649,15 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 255.338804 - 0: The maximum resident set size (KB) = 884160 + 0: The total amount of wall time = 257.467199 + 0: The maximum resident set size (KB) = 882156 -Test 042 regional_3km PASS +Test 043 regional_3km PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_control -Checking test 043 rap_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1633,15 +1703,15 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 435.260521 - 0: The maximum resident set size (KB) = 1038864 + 0: The total amount of wall time = 434.474946 + 0: The maximum resident set size (KB) = 1023640 -Test 043 rap_control PASS +Test 044 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_rrtmgp -Checking test 044 rap_rrtmgp results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1687,15 +1757,15 @@ Checking test 044 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 463.804340 - 0: The maximum resident set size (KB) = 1191552 + 0: The total amount of wall time = 464.286128 + 0: The maximum resident set size (KB) = 1191104 -Test 044 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1705,15 +1775,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 293.843608 - 0: The maximum resident set size (KB) = 1197948 + 0: The total amount of wall time = 305.440227 + 0: The maximum resident set size (KB) = 1203328 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_2threads -Checking test 046 rap_2threads results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1829,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 497.043114 - 0: The maximum resident set size (KB) = 1092616 + 0: The total amount of wall time = 503.528171 + 0: The maximum resident set size (KB) = 1094480 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_restart -Checking test 047 rap_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1805,15 +1875,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 222.995616 - 0: The maximum resident set size (KB) = 944908 + 0: The total amount of wall time = 223.145593 + 0: The maximum resident set size (KB) = 948484 -Test 047 rap_restart PASS +Test 048 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1859,15 +1929,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 440.168455 - 0: The maximum resident set size (KB) = 1034696 + 0: The total amount of wall time = 435.912961 + 0: The maximum resident set size (KB) = 1038208 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1905,15 +1975,15 @@ Checking test 049 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 = 225.205449 - 0: The maximum resident set size (KB) = 918844 + 0: The total amount of wall time = 222.857322 + 0: The maximum resident set size (KB) = 947032 -Test 049 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hrrr_control -Checking test 050 hrrr_control results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1959,15 +2029,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 418.171133 - 0: The maximum resident set size (KB) = 1034996 + 0: The total amount of wall time = 416.770956 + 0: The maximum resident set size (KB) = 1033912 -Test 050 hrrr_control PASS +Test 051 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2013,15 +2083,15 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 428.085756 - 0: The maximum resident set size (KB) = 1031868 + 0: The total amount of wall time = 424.794168 + 0: The maximum resident set size (KB) = 1036640 -Test 051 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1nssl -Checking test 052 rrfs_v1nssl results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2105,15 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 504.472958 - 0: The maximum resident set size (KB) = 706308 + 0: The total amount of wall time = 501.973668 + 0: The maximum resident set size (KB) = 698108 -Test 052 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1nssl_nohailnoccn -Checking test 053 rrfs_v1nssl_nohailnoccn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2127,15 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 493.360479 - 0: The maximum resident set size (KB) = 730916 + 0: The total amount of wall time = 491.335328 + 0: The maximum resident set size (KB) = 743388 -Test 053 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_conus13km_hrrr_warm -Checking test 054 rrfs_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2073,15 +2143,15 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.008150 - 0: The maximum resident set size (KB) = 918264 + 0: The total amount of wall time = 193.238416 + 0: The maximum resident set size (KB) = 924380 -Test 054 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_conus13km_radar_tten_warm -Checking test 055 rrfs_conus13km_radar_tten_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2089,15 +2159,15 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 192.922995 - 0: The maximum resident set size (KB) = 926820 + 0: The total amount of wall time = 194.132542 + 0: The maximum resident set size (KB) = 923492 -Test 055 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_smoke_conus13km_hrrr_warm -Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2105,15 +2175,15 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 210.354311 - 0: The maximum resident set size (KB) = 955276 + 0: The total amount of wall time = 210.964248 + 0: The maximum resident set size (KB) = 954752 -Test 056 rrfs_smoke_conus13km_hrrr_warm PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmg -Checking test 057 control_csawmg results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,15 +2193,15 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 329.238195 - 0: The maximum resident set size (KB) = 756804 + 0: The total amount of wall time = 327.628382 + 0: The maximum resident set size (KB) = 753412 -Test 057 control_csawmg PASS +Test 058 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmgt -Checking test 058 control_csawmgt results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,15 +2211,15 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 324.165953 - 0: The maximum resident set size (KB) = 752224 + 0: The total amount of wall time = 323.440494 + 0: The maximum resident set size (KB) = 746588 -Test 058 control_csawmgt PASS +Test 059 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_flake -Checking test 059 control_flake results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2159,15 +2229,15 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 211.603966 - 0: The maximum resident set size (KB) = 759188 + 0: The total amount of wall time = 211.430739 + 0: The maximum resident set size (KB) = 758568 -Test 059 control_flake PASS +Test 060 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_ras -Checking test 060 control_ras results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2177,15 +2247,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.999260 - 0: The maximum resident set size (KB) = 720188 + 0: The total amount of wall time = 170.648828 + 0: The maximum resident set size (KB) = 719592 -Test 060 control_ras PASS +Test 061 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson -Checking test 061 control_thompson results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2195,15 +2265,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.636196 - 0: The maximum resident set size (KB) = 1069464 + 0: The total amount of wall time = 312.215968 + 0: The maximum resident set size (KB) = 1074680 -Test 061 control_thompson PASS +Test 062 control_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2213,55 +2283,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 224.405000 - 0: The maximum resident set size (KB) = 1063548 + 0: The total amount of wall time = 231.463098 + 0: The maximum resident set size (KB) = 1059916 -Test 062 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_wam -Checking test 063 control_wam results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 106.636805 - 0: The maximum resident set size (KB) = 616160 + 0: The total amount of wall time = 103.436293 + 0: The maximum resident set size (KB) = 615568 -Test 063 control_wam PASS +Test 064 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_debug -Checking test 064 control_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_debug +Checking test 065 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.245994 - 0: The maximum resident set size (KB) = 806032 + 0: The total amount of wall time = 151.130141 + 0: The maximum resident set size (KB) = 804856 -Test 064 control_debug PASS +Test 065 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2threads_debug -Checking test 065 control_2threads_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.032175 - 0: The maximum resident set size (KB) = 857944 + 0: The total amount of wall time = 225.610536 + 0: The maximum resident set size (KB) = 859712 -Test 065 control_2threads_debug PASS +Test 066 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2287,416 +2357,416 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 172.104352 - 0: The maximum resident set size (KB) = 802608 + 0: The total amount of wall time = 163.896356 + 0: The maximum resident set size (KB) = 798556 -Test 066 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK - 0: The total amount of wall time = 152.723573 - 0: The maximum resident set size (KB) = 808224 + 0: The total amount of wall time = 158.231494 + 0: The maximum resident set size (KB) = 802252 -Test 067 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_stochy_debug -Checking test 068 control_stochy_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.361093 - 0: The maximum resident set size (KB) = 808888 + 0: The total amount of wall time = 174.208607 + 0: The maximum resident set size (KB) = 810472 -Test 068 control_stochy_debug PASS +Test 069 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_lndp_debug -Checking test 069 control_lndp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 157.657826 - 0: The maximum resident set size (KB) = 807684 + 0: The total amount of wall time = 156.585766 + 0: The maximum resident set size (KB) = 812520 -Test 069 control_lndp_debug PASS +Test 070 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.747346 - 0: The maximum resident set size (KB) = 853372 + 0: The total amount of wall time = 232.528855 + 0: The maximum resident set size (KB) = 858524 -Test 070 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.483682 - 0: The maximum resident set size (KB) = 856172 + 0: The total amount of wall time = 232.562869 + 0: The maximum resident set size (KB) = 854384 -Test 071 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_ras_debug -Checking test 072 control_ras_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.586448 - 0: The maximum resident set size (KB) = 819572 + 0: The total amount of wall time = 156.536195 + 0: The maximum resident set size (KB) = 819044 -Test 072 control_ras_debug PASS +Test 073 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_diag_debug -Checking test 073 control_diag_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.743271 - 0: The maximum resident set size (KB) = 861024 + 0: The total amount of wall time = 162.334685 + 0: The maximum resident set size (KB) = 860908 -Test 073 control_diag_debug PASS +Test 074 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_debug_p8 -Checking test 074 control_debug_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.013080 - 0: The maximum resident set size (KB) = 1158660 + 0: The total amount of wall time = 172.665730 + 0: The maximum resident set size (KB) = 1199172 -Test 074 control_debug_p8 PASS +Test 075 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson_debug -Checking test 075 control_thompson_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson_debug +Checking test 076 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.956540 - 0: The maximum resident set size (KB) = 1173148 + 0: The total amount of wall time = 183.641322 + 0: The maximum resident set size (KB) = 1179212 -Test 075 control_thompson_debug PASS +Test 076 control_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson_no_aero_debug -Checking test 076 control_thompson_no_aero_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug 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.616372 - 0: The maximum resident set size (KB) = 1164692 + 0: The total amount of wall time = 169.188327 + 0: The maximum resident set size (KB) = 1165404 -Test 076 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson_extdiag_debug -Checking test 077 control_thompson_extdiag_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 190.385968 - 0: The maximum resident set size (KB) = 1200704 + 0: The total amount of wall time = 195.943818 + 0: The maximum resident set size (KB) = 1208508 -Test 077 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson_progcld_thompson_debug -Checking test 078 control_thompson_progcld_thompson_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_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 = 183.359049 - 0: The maximum resident set size (KB) = 1172636 + 0: The total amount of wall time = 178.942757 + 0: The maximum resident set size (KB) = 1178120 -Test 078 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_debug -Checking test 079 regional_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 250.606807 - 0: The maximum resident set size (KB) = 849768 + 0: The total amount of wall time = 249.703159 + 0: The maximum resident set size (KB) = 847856 -Test 079 regional_debug PASS +Test 080 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_control_debug -Checking test 080 rap_control_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.850834 - 0: The maximum resident set size (KB) = 1180424 + 0: The total amount of wall time = 274.994759 + 0: The maximum resident set size (KB) = 1178960 -Test 080 rap_control_debug PASS +Test 081 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.467468 - 0: The maximum resident set size (KB) = 1186836 + 0: The total amount of wall time = 279.007968 + 0: The maximum resident set size (KB) = 1184904 -Test 081 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_diag_debug -Checking test 082 rap_diag_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 448.814851 - 0: The maximum resident set size (KB) = 1265400 + 0: The total amount of wall time = 293.076208 + 0: The maximum resident set size (KB) = 1266680 -Test 082 rap_diag_debug PASS +Test 083 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.274127 - 0: The maximum resident set size (KB) = 1185444 + 0: The total amount of wall time = 284.835622 + 0: The maximum resident set size (KB) = 1181940 -Test 083 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.453103 - 0: The maximum resident set size (KB) = 1132792 + 0: The total amount of wall time = 282.684395 + 0: The maximum resident set size (KB) = 1182368 -Test 084 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.724284 - 0: The maximum resident set size (KB) = 1184584 + 0: The total amount of wall time = 276.537372 + 0: The maximum resident set size (KB) = 1181460 -Test 085 rap_lndp_debug PASS +Test 086 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_flake_debug -Checking test 086 rap_flake_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.553827 - 0: The maximum resident set size (KB) = 1174324 + 0: The total amount of wall time = 276.685063 + 0: The maximum resident set size (KB) = 1182512 -Test 086 rap_flake_debug PASS +Test 087 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.575410 - 0: The maximum resident set size (KB) = 1176900 + 0: The total amount of wall time = 273.995261 + 0: The maximum resident set size (KB) = 1179296 -Test 087 rap_progcld_thompson_debug PASS +Test 088 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_noah_debug -Checking test 088 rap_noah_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.470997 - 0: The maximum resident set size (KB) = 1178516 + 0: The total amount of wall time = 414.775318 + 0: The maximum resident set size (KB) = 1187556 -Test 088 rap_noah_debug PASS +Test 089 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 465.444984 - 0: The maximum resident set size (KB) = 1310944 + 0: The total amount of wall time = 458.470305 + 0: The maximum resident set size (KB) = 1315440 -Test 089 rap_rrtmgp_debug PASS +Test 090 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.887983 - 0: The maximum resident set size (KB) = 1184424 + 0: The total amount of wall time = 270.408208 + 0: The maximum resident set size (KB) = 1180392 -Test 090 rap_sfcdiff_debug PASS +Test 091 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 450.105458 - 0: The maximum resident set size (KB) = 1184024 + 0: The total amount of wall time = 455.204248 + 0: The maximum resident set size (KB) = 1181676 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.838533 - 0: The maximum resident set size (KB) = 1177072 + 0: The total amount of wall time = 268.919313 + 0: The maximum resident set size (KB) = 1177636 -Test 092 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_wam_debug -Checking test 093 control_wam_debug results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 288.941054 - 0: The maximum resident set size (KB) = 482868 + 0: The total amount of wall time = 285.083422 + 0: The maximum resident set size (KB) = 516960 -Test 093 control_wam_debug PASS +Test 094 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_atm -Checking test 094 hafs_regional_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 316.601342 - 0: The maximum resident set size (KB) = 977732 + 0: The total amount of wall time = 309.838966 + 0: The maximum resident set size (KB) = 982960 -Test 094 hafs_regional_atm PASS +Test 095 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_atm_thompson_gfdlsf -Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 419.428435 - 0: The maximum resident set size (KB) = 1345340 + 0: The total amount of wall time = 410.504037 + 0: The maximum resident set size (KB) = 1339272 -Test 095 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_atm_ocn -Checking test 096 hafs_regional_atm_ocn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2704,15 +2774,15 @@ Checking test 096 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 = 398.796464 - 0: The maximum resident set size (KB) = 1211632 + 0: The total amount of wall time = 395.736641 + 0: The maximum resident set size (KB) = 1211868 -Test 096 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_atm_wav -Checking test 097 hafs_regional_atm_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2720,15 +2790,15 @@ Checking test 097 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 = 747.124354 - 0: The maximum resident set size (KB) = 1230524 + 0: The total amount of wall time = 749.932765 + 0: The maximum resident set size (KB) = 1236768 -Test 097 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_atm_ocn_wav -Checking test 098 hafs_regional_atm_ocn_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2738,29 +2808,29 @@ Checking test 098 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 = 845.138409 - 0: The maximum resident set size (KB) = 1200048 + 0: The total amount of wall time = 838.501610 + 0: The maximum resident set size (KB) = 1201576 -Test 098 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_1nest_atm -Checking test 099 hafs_regional_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_1nest_atm +Checking test 100 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 = 448.332581 - 0: The maximum resident set size (KB) = 570288 + 0: The total amount of wall time = 447.655585 + 0: The maximum resident set size (KB) = 577784 -Test 099 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_telescopic_2nests_atm -Checking test 100 hafs_regional_telescopic_2nests_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2768,29 +2838,29 @@ Checking test 100 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 = 499.367154 - 0: The maximum resident set size (KB) = 588812 + 0: The total amount of wall time = 501.329831 + 0: The maximum resident set size (KB) = 584680 -Test 100 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_global_1nest_atm -Checking test 101 hafs_global_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_global_1nest_atm +Checking test 102 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 = 209.006465 - 0: The maximum resident set size (KB) = 382064 + 0: The total amount of wall time = 209.031395 + 0: The maximum resident set size (KB) = 379916 -Test 101 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_global_multiple_4nests_atm -Checking test 102 hafs_global_multiple_4nests_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2802,43 +2872,43 @@ Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK - 0: The total amount of wall time = 573.266404 - 0: The maximum resident set size (KB) = 419048 + 0: The total amount of wall time = 567.173328 + 0: The maximum resident set size (KB) = 423132 -Test 102 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_specified_moving_1nest_atm -Checking test 103 hafs_regional_specified_moving_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_specified_moving_1nest_atm +Checking test 104 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 - 0: The total amount of wall time = 267.925701 - 0: The maximum resident set size (KB) = 592324 + 0: The total amount of wall time = 269.634646 + 0: The maximum resident set size (KB) = 595768 -Test 103 hafs_regional_specified_moving_1nest_atm PASS +Test 104 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_storm_following_1nest_atm -Checking test 104 hafs_regional_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_storm_following_1nest_atm +Checking test 105 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 = 259.251595 - 0: The maximum resident set size (KB) = 581364 + 0: The total amount of wall time = 263.283669 + 0: The maximum resident set size (KB) = 581664 -Test 104 hafs_regional_storm_following_1nest_atm PASS +Test 105 hafs_regional_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2846,15 +2916,15 @@ Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK - 0: The total amount of wall time = 269.489080 - 0: The maximum resident set size (KB) = 623160 + 0: The total amount of wall time = 280.483900 + 0: The maximum resident set size (KB) = 623488 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2864,163 +2934,163 @@ Checking test 106 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 = 614.928521 - 0: The maximum resident set size (KB) = 597596 + 0: The total amount of wall time = 612.569333 + 0: The maximum resident set size (KB) = 604676 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_storm_following_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_global_storm_following_1nest_atm +Checking test 108 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 78.548906 - 0: The maximum resident set size (KB) = 396636 + 0: The total amount of wall time = 79.256780 + 0: The maximum resident set size (KB) = 401108 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 108 hafs_global_storm_following_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_docn +Checking test 109 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 = 395.735689 - 0: The maximum resident set size (KB) = 1208172 + 0: The total amount of wall time = 526.719759 + 0: The maximum resident set size (KB) = 1210248 -Test 108 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_docn_oisst +Checking test 110 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 = 397.156128 - 0: The maximum resident set size (KB) = 1208312 + 0: The total amount of wall time = 398.929601 + 0: The maximum resident set size (KB) = 1199388 -Test 109 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/hafs_regional_datm_cdeps +Checking test 111 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 = 925.500957 - 0: The maximum resident set size (KB) = 1010240 + 0: The total amount of wall time = 919.228919 + 0: The maximum resident set size (KB) = 1014420 -Test 110 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_control_cfsr +Checking test 112 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 = 142.453380 - 0: The maximum resident set size (KB) = 1027832 + 0: The total amount of wall time = 141.644095 + 0: The maximum resident set size (KB) = 1029596 -Test 111 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_restart_cfsr +Checking test 113 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 = 98.317141 - 0: The maximum resident set size (KB) = 981156 + 0: The total amount of wall time = 102.275683 + 0: The maximum resident set size (KB) = 982940 -Test 112 datm_cdeps_restart_cfsr PASS +Test 113 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.680352 - 0: The maximum resident set size (KB) = 930004 + 0: The total amount of wall time = 137.794963 + 0: The maximum resident set size (KB) = 936900 -Test 113 datm_cdeps_control_gefs PASS +Test 114 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_iau_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 141.140154 - 0: The maximum resident set size (KB) = 937352 + 0: The total amount of wall time = 144.168892 + 0: The maximum resident set size (KB) = 931676 -Test 114 datm_cdeps_iau_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.967300 - 0: The maximum resident set size (KB) = 927252 + 0: The total amount of wall time = 141.003943 + 0: The maximum resident set size (KB) = 936900 -Test 115 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_bulk_cfsr +Checking test 117 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 = 144.364446 - 0: The maximum resident set size (KB) = 1028356 + 0: The total amount of wall time = 145.132222 + 0: The maximum resident set size (KB) = 1033540 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.100953 - 0: The maximum resident set size (KB) = 930504 + 0: The total amount of wall time = 141.465521 + 0: The maximum resident set size (KB) = 935428 -Test 117 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_mx025_cfsr +Checking test 119 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 @@ -3028,15 +3098,15 @@ Checking test 118 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 = 297.882274 - 0: The maximum resident set size (KB) = 842556 + 0: The total amount of wall time = 311.183109 + 0: The maximum resident set size (KB) = 856016 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_mx025_gefs +Checking test 120 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 @@ -3044,65 +3114,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 294.284474 - 0: The maximum resident set size (KB) = 864648 + 0: The total amount of wall time = 295.482129 + 0: The maximum resident set size (KB) = 886976 -Test 119 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_multiple_files_cfsr +Checking test 121 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 145.604303 - 0: The maximum resident set size (KB) = 1017956 + 0: The total amount of wall time = 142.333389 + 0: The maximum resident set size (KB) = 1036172 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_3072x1536_cfsr +Checking test 122 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 = 191.670012 - 0: The maximum resident set size (KB) = 2247936 + 0: The total amount of wall time = 196.542272 + 0: The maximum resident set size (KB) = 2167644 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_gfs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_gfs +Checking test 123 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 = 204.496001 - 0: The maximum resident set size (KB) = 2251328 + 0: The total amount of wall time = 195.389953 + 0: The maximum resident set size (KB) = 2233224 -Test 122 datm_cdeps_gfs PASS +Test 123 datm_cdeps_gfs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/datm_cdeps_debug_cfsr +Checking test 124 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 = 450.462738 - 0: The maximum resident set size (KB) = 964432 + 0: The total amount of wall time = 441.250199 + 0: The maximum resident set size (KB) = 965840 -Test 123 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_atmwav -Checking test 124 control_atmwav results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3145,15 +3215,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 81.994609 - 0: The maximum resident set size (KB) = 704144 + 0: The total amount of wall time = 80.987086 + 0: The maximum resident set size (KB) = 705096 -Test 124 control_atmwav PASS +Test 125 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/atmaero_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/atmaero_control_p8 -Checking test 125 atmaero_control_p8 results .... +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_17027/atmaero_control_p8 +Checking test 126 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3196,12 +3266,12 @@ Checking test 125 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 = 328.832959 - 0: The maximum resident set size (KB) = 5113552 + 0: The total amount of wall time = 323.899957 + 0: The maximum resident set size (KB) = 5114768 -Test 125 atmaero_control_p8 PASS +Test 126 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 18:43:31 CDT 2022 -Elapsed time: 01h:11m:08s. Have a nice day! +Wed Jun 8 09:37:46 CDT 2022 +Elapsed time: 01h:05m:21s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 0a3af90e3b..7ae8288cf8 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,20 +1,90 @@ -Mon Jun 6 12:06:35 UTC 2022 +Tue Jun 7 21:29:04 UTC 2022 Start Regression test -Compile 001 elapsed time 491 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 332 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 470 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 458 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 169 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 148 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 573 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 141 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 636 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 010 elapsed time 621 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 494 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 762 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 331 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 618 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 282 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 171 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 150 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 479 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 501 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 447 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 596 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release + +baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/cpld_control_noaero_p8_agrid +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/cpld_control_noaero_p8_agrid +Checking test 001 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 + +The total amount of wall time = 327.766801 +The maximum resident set size (KB) = 1060512 + +Test 001 cpld_control_noaero_p8_agrid PASS + baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control -Checking test 001 control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control +Checking test 002 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -60,15 +130,15 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 125.791378 -The maximum resident set size (KB) = 515904 +The total amount of wall time = 126.701806 +The maximum resident set size (KB) = 515428 -Test 001 control PASS +Test 002 control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_decomp -Checking test 002 control_decomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_decomp +Checking test 003 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -110,29 +180,29 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 129.224359 -The maximum resident set size (KB) = 517684 +The total amount of wall time = 128.642861 +The maximum resident set size (KB) = 519592 -Test 002 control_decomp PASS +Test 003 control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2dwrtdecomp -Checking test 003 control_2dwrtdecomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_2dwrtdecomp +Checking test 004 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 120.220118 -The maximum resident set size (KB) = 521704 +The total amount of wall time = 121.386734 +The maximum resident set size (KB) = 517328 -Test 003 control_2dwrtdecomp PASS +Test 004 control_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads -Checking test 004 control_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_2threads +Checking test 005 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -174,15 +244,15 @@ Checking test 004 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 371.890346 -The maximum resident set size (KB) = 567700 +The total amount of wall time = 372.787422 +The maximum resident set size (KB) = 568240 -Test 004 control_2threads PASS +Test 005 control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_restart -Checking test 005 control_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_restart +Checking test 006 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -220,15 +290,15 @@ Checking test 005 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 66.305401 -The maximum resident set size (KB) = 406536 +The total amount of wall time = 66.245779 +The maximum resident set size (KB) = 267876 -Test 005 control_restart PASS +Test 006 control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_fhzero -Checking test 006 control_fhzero results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_fhzero +Checking test 007 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -270,15 +340,15 @@ Checking test 006 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 120.493959 -The maximum resident set size (KB) = 514776 +The total amount of wall time = 120.737627 +The maximum resident set size (KB) = 519508 -Test 006 control_fhzero PASS +Test 007 control_fhzero PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_CubedSphereGrid -Checking test 007 control_CubedSphereGrid results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_CubedSphereGrid +Checking test 008 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -304,15 +374,15 @@ Checking test 007 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 121.628776 -The maximum resident set size (KB) = 519292 +The total amount of wall time = 121.988416 +The maximum resident set size (KB) = 514488 -Test 007 control_CubedSphereGrid PASS +Test 008 control_CubedSphereGrid PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_latlon -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_latlon -Checking test 008 control_latlon results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_latlon +Checking test 009 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -322,15 +392,15 @@ Checking test 008 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 123.336310 -The maximum resident set size (KB) = 520168 +The total amount of wall time = 123.725999 +The maximum resident set size (KB) = 516036 -Test 008 control_latlon PASS +Test 009 control_latlon PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_wrtGauss_netcdf_parallel -Checking test 009 control_wrtGauss_netcdf_parallel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_wrtGauss_netcdf_parallel +Checking test 010 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -340,15 +410,15 @@ Checking test 009 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 124.972318 -The maximum resident set size (KB) = 518388 +The total amount of wall time = 134.453021 +The maximum resident set size (KB) = 519148 -Test 009 control_wrtGauss_netcdf_parallel PASS +Test 010 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c48 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c48 -Checking test 010 control_c48 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_c48 +Checking test 011 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -386,15 +456,15 @@ Checking test 010 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 309.229425 -The maximum resident set size (KB) = 670976 +The total amount of wall time = 309.772298 +The maximum resident set size (KB) = 672200 -Test 010 control_c48 PASS +Test 011 control_c48 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c192 -Checking test 011 control_c192 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_c192 +Checking test 012 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -404,15 +474,15 @@ Checking test 011 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 499.756821 -The maximum resident set size (KB) = 622976 +The total amount of wall time = 500.042075 +The maximum resident set size (KB) = 620956 -Test 011 control_c192 PASS +Test 012 control_c192 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c384 -Checking test 012 control_c384 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_c384 +Checking test 013 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -422,15 +492,15 @@ Checking test 012 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1535.181951 -The maximum resident set size (KB) = 889620 +The total amount of wall time = 1521.990482 +The maximum resident set size (KB) = 891148 -Test 012 control_c384 PASS +Test 013 control_c384 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384gdas -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c384gdas -Checking test 013 control_c384gdas results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_c384gdas +Checking test 014 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -472,15 +542,15 @@ Checking test 013 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1403.790292 -The maximum resident set size (KB) = 1018776 +The total amount of wall time = 1402.494516 +The maximum resident set size (KB) = 1015364 -Test 013 control_c384gdas PASS +Test 014 control_c384gdas PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c384_progsigma -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c384_progsigma -Checking test 014 control_c384_progsigma results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_c384_progsigma +Checking test 015 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -490,15 +560,15 @@ Checking test 014 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1546.490982 -The maximum resident set size (KB) = 910544 +The total amount of wall time = 1547.387137 +The maximum resident set size (KB) = 916688 -Test 014 control_c384_progsigma PASS +Test 015 control_c384_progsigma PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_stochy -Checking test 015 control_stochy results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_stochy +Checking test 016 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -508,29 +578,29 @@ Checking test 015 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.566165 -The maximum resident set size (KB) = 518864 +The total amount of wall time = 85.616673 +The maximum resident set size (KB) = 522724 -Test 015 control_stochy PASS +Test 016 control_stochy PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_stochy_restart -Checking test 016 control_stochy_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_stochy_restart +Checking test 017 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 45.437512 -The maximum resident set size (KB) = 383708 +The total amount of wall time = 45.066264 +The maximum resident set size (KB) = 285836 -Test 016 control_stochy_restart PASS +Test 017 control_stochy_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_lndp -Checking test 017 control_lndp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_lndp +Checking test 018 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -540,15 +610,15 @@ Checking test 017 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 75.932701 -The maximum resident set size (KB) = 519524 +The total amount of wall time = 76.525246 +The maximum resident set size (KB) = 519492 -Test 017 control_lndp PASS +Test 018 control_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr4 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_iovr4 -Checking test 018 control_iovr4 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_iovr4 +Checking test 019 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -562,15 +632,15 @@ Checking test 018 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 125.509789 -The maximum resident set size (KB) = 521488 +The total amount of wall time = 126.740440 +The maximum resident set size (KB) = 516748 -Test 018 control_iovr4 PASS +Test 019 control_iovr4 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_iovr5 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_iovr5 -Checking test 019 control_iovr5 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_iovr5 +Checking test 020 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -584,15 +654,15 @@ Checking test 019 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 125.655301 -The maximum resident set size (KB) = 518364 +The total amount of wall time = 127.081957 +The maximum resident set size (KB) = 517668 -Test 019 control_iovr5 PASS +Test 020 control_iovr5 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_p8 -Checking test 020 control_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_p8 +Checking test 021 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -638,15 +708,15 @@ Checking test 020 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 174.545114 -The maximum resident set size (KB) = 908216 +The total amount of wall time = 179.525708 +The maximum resident set size (KB) = 910128 -Test 020 control_p8 PASS +Test 021 control_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_lndp -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_p8_lndp -Checking test 021 control_p8_lndp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_p8_lndp +Checking test 022 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 021 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 323.399184 -The maximum resident set size (KB) = 909432 +The total amount of wall time = 329.484751 +The maximum resident set size (KB) = 911048 -Test 021 control_p8_lndp PASS +Test 022 control_p8_lndp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_restart_p8 -Checking test 022 control_restart_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_restart_p8 +Checking test 023 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -710,15 +780,15 @@ Checking test 022 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 103.216216 -The maximum resident set size (KB) = 648588 +The total amount of wall time = 102.444062 +The maximum resident set size (KB) = 650112 -Test 022 control_restart_p8 PASS +Test 023 control_restart_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_decomp_p8 -Checking test 023 control_decomp_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_decomp_p8 +Checking test 024 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -760,15 +830,15 @@ Checking test 023 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 180.801449 -The maximum resident set size (KB) = 901900 +The total amount of wall time = 182.276993 +The maximum resident set size (KB) = 910320 -Test 023 control_decomp_p8 PASS +Test 024 control_decomp_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads_p8 -Checking test 024 control_2threads_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_2threads_p8 +Checking test 025 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -810,15 +880,15 @@ Checking test 024 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 489.061432 -The maximum resident set size (KB) = 983908 +The total amount of wall time = 491.836062 +The maximum resident set size (KB) = 983136 -Test 024 control_2threads_p8 PASS +Test 025 control_2threads_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_p8_rrtmgp -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_p8_rrtmgp -Checking test 025 control_p8_rrtmgp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_p8_rrtmgp +Checking test 026 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -864,15 +934,15 @@ Checking test 025 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 254.434284 -The maximum resident set size (KB) = 1032424 +The total amount of wall time = 251.504710 +The maximum resident set size (KB) = 1021540 -Test 025 control_p8_rrtmgp PASS +Test 026 control_p8_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_control -Checking test 026 regional_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_control +Checking test 027 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -882,58 +952,58 @@ Checking test 026 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 303.202602 -The maximum resident set size (KB) = 604868 +The total amount of wall time = 300.292547 +The maximum resident set size (KB) = 598532 -Test 026 regional_control PASS +Test 027 regional_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_restart -Checking test 027 regional_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_restart +Checking test 028 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 168.357609 -The maximum resident set size (KB) = 598568 +The total amount of wall time = 166.640844 +The maximum resident set size (KB) = 599184 -Test 027 regional_restart PASS +Test 028 regional_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_control_2dwrtdecomp -Checking test 028 regional_control_2dwrtdecomp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_control_2dwrtdecomp +Checking test 029 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 300.801721 -The maximum resident set size (KB) = 599756 +The total amount of wall time = 299.262898 +The maximum resident set size (KB) = 599428 -Test 028 regional_control_2dwrtdecomp PASS +Test 029 regional_control_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_noquilt -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_noquilt -Checking test 029 regional_noquilt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_noquilt +Checking test 030 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 317.697305 -The maximum resident set size (KB) = 591944 +The total amount of wall time = 317.747695 +The maximum resident set size (KB) = 595484 -Test 029 regional_noquilt PASS +Test 030 regional_noquilt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_2threads -Checking test 030 regional_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_2threads +Checking test 031 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -943,29 +1013,29 @@ Checking test 030 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 597.836253 -The maximum resident set size (KB) = 650848 +The total amount of wall time = 600.983974 +The maximum resident set size (KB) = 653148 -Test 030 regional_2threads PASS +Test 031 regional_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_netcdf_parallel -Checking test 031 regional_netcdf_parallel results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_netcdf_parallel +Checking test 032 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 297.553697 -The maximum resident set size (KB) = 598188 +The total amount of wall time = 301.666714 +The maximum resident set size (KB) = 601464 -Test 031 regional_netcdf_parallel PASS +Test 032 regional_netcdf_parallel PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_3km -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_3km -Checking test 032 regional_3km results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_3km +Checking test 033 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -975,15 +1045,15 @@ Checking test 032 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 260.892816 -The maximum resident set size (KB) = 653504 +The total amount of wall time = 260.600038 +The maximum resident set size (KB) = 652956 -Test 032 regional_3km PASS +Test 033 regional_3km PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_control -Checking test 033 rap_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_control +Checking test 034 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1029,15 +1099,15 @@ Checking test 033 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 397.241043 -The maximum resident set size (KB) = 896208 +The total amount of wall time = 397.008935 +The maximum resident set size (KB) = 890472 -Test 033 rap_control PASS +Test 034 rap_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_rrtmgp -Checking test 034 rap_rrtmgp results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_rrtmgp +Checking test 035 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1083,15 +1153,15 @@ Checking test 034 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 478.439098 -The maximum resident set size (KB) = 1011596 +The total amount of wall time = 476.653423 +The maximum resident set size (KB) = 1014928 -Test 034 rap_rrtmgp PASS +Test 035 rap_rrtmgp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/regional_spp_sppt_shum_skeb -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_spp_sppt_shum_skeb -Checking test 035 regional_spp_sppt_shum_skeb results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_spp_sppt_shum_skeb +Checking test 036 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1101,15 +1171,15 @@ Checking test 035 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 729.227720 -The maximum resident set size (KB) = 979612 +The total amount of wall time = 718.114816 +The maximum resident set size (KB) = 979332 -Test 035 regional_spp_sppt_shum_skeb PASS +Test 036 regional_spp_sppt_shum_skeb PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_2threads -Checking test 036 rap_2threads results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_2threads +Checking test 037 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1155,15 +1225,15 @@ Checking test 036 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 1245.949327 -The maximum resident set size (KB) = 954792 +The total amount of wall time = 1261.358213 +The maximum resident set size (KB) = 960964 -Test 036 rap_2threads PASS +Test 037 rap_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_restart -Checking test 037 rap_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_restart +Checking test 038 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1201,15 +1271,15 @@ Checking test 037 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 207.966147 -The maximum resident set size (KB) = 635228 +The total amount of wall time = 203.431942 +The maximum resident set size (KB) = 634540 -Test 037 rap_restart PASS +Test 038 rap_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_sfcdiff -Checking test 038 rap_sfcdiff results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_sfcdiff +Checking test 039 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1255,15 +1325,15 @@ Checking test 038 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 398.642021 -The maximum resident set size (KB) = 893604 +The total amount of wall time = 404.582514 +The maximum resident set size (KB) = 893740 -Test 038 rap_sfcdiff PASS +Test 039 rap_sfcdiff PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_sfcdiff_restart -Checking test 039 rap_sfcdiff_restart results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_sfcdiff_restart +Checking test 040 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1301,15 +1371,15 @@ Checking test 039 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 205.311770 -The maximum resident set size (KB) = 632352 +The total amount of wall time = 202.120921 +The maximum resident set size (KB) = 632464 -Test 039 rap_sfcdiff_restart PASS +Test 040 rap_sfcdiff_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hrrr_control -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hrrr_control -Checking test 040 hrrr_control results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hrrr_control +Checking test 041 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1355,15 +1425,15 @@ Checking test 040 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.033523 -The maximum resident set size (KB) = 887208 +The total amount of wall time = 381.191941 +The maximum resident set size (KB) = 891280 -Test 040 hrrr_control PASS +Test 041 hrrr_control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1beta -Checking test 041 rrfs_v1beta results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_v1beta +Checking test 042 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1409,15 +1479,15 @@ Checking test 041 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 386.273123 -The maximum resident set size (KB) = 885912 +The total amount of wall time = 383.199508 +The maximum resident set size (KB) = 886784 -Test 041 rrfs_v1beta PASS +Test 042 rrfs_v1beta PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1nssl -Checking test 042 rrfs_v1nssl results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_v1nssl +Checking test 043 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1431,15 +1501,15 @@ Checking test 042 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 450.698550 -The maximum resident set size (KB) = 577240 +The total amount of wall time = 450.612794 +The maximum resident set size (KB) = 574312 -Test 042 rrfs_v1nssl PASS +Test 043 rrfs_v1nssl PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1nssl_nohailnoccn -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1nssl_nohailnoccn -Checking test 043 rrfs_v1nssl_nohailnoccn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_v1nssl_nohailnoccn +Checking test 044 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1453,15 +1523,15 @@ Checking test 043 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 435.958365 -The maximum resident set size (KB) = 568204 +The total amount of wall time = 433.609917 +The maximum resident set size (KB) = 568768 -Test 043 rrfs_v1nssl_nohailnoccn PASS +Test 044 rrfs_v1nssl_nohailnoccn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_conus13km_hrrr_warm -Checking test 044 rrfs_conus13km_hrrr_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_conus13km_hrrr_warm +Checking test 045 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1469,15 +1539,15 @@ Checking test 044 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 170.576150 -The maximum resident set size (KB) = 760580 +The total amount of wall time = 169.929587 +The maximum resident set size (KB) = 761232 -Test 044 rrfs_conus13km_hrrr_warm PASS +Test 045 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_conus13km_radar_tten_warm -Checking test 045 rrfs_conus13km_radar_tten_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_conus13km_radar_tten_warm +Checking test 046 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1485,15 +1555,15 @@ Checking test 045 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 169.995132 -The maximum resident set size (KB) = 766116 +The total amount of wall time = 171.667712 +The maximum resident set size (KB) = 764428 -Test 045 rrfs_conus13km_radar_tten_warm PASS +Test 046 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_smoke_conus13km_hrrr_warm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_smoke_conus13km_hrrr_warm -Checking test 046 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_smoke_conus13km_hrrr_warm +Checking test 047 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -1501,15 +1571,15 @@ Checking test 046 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 184.632789 -The maximum resident set size (KB) = 773220 +The total amount of wall time = 186.792590 +The maximum resident set size (KB) = 779432 -Test 046 rrfs_smoke_conus13km_hrrr_warm PASS +Test 047 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmg -Checking test 047 control_csawmg results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_csawmg +Checking test 048 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1519,15 +1589,15 @@ Checking test 047 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 343.857611 -The maximum resident set size (KB) = 586924 +The total amount of wall time = 338.921151 +The maximum resident set size (KB) = 587060 -Test 047 control_csawmg PASS +Test 048 control_csawmg PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmgt -Checking test 048 control_csawmgt results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_csawmgt +Checking test 049 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1537,15 +1607,15 @@ Checking test 048 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 335.840509 -The maximum resident set size (KB) = 588092 +The total amount of wall time = 336.087170 +The maximum resident set size (KB) = 588540 -Test 048 control_csawmgt PASS +Test 049 control_csawmgt PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_flake -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_flake -Checking test 049 control_flake results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_flake +Checking test 050 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1555,15 +1625,15 @@ Checking test 049 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 244.588487 -The maximum resident set size (KB) = 587592 +The total amount of wall time = 241.595510 +The maximum resident set size (KB) = 588648 -Test 049 control_flake PASS +Test 050 control_flake PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_ras -Checking test 050 control_ras results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_ras +Checking test 051 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1573,15 +1643,15 @@ Checking test 050 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 171.274807 -The maximum resident set size (KB) = 550748 +The total amount of wall time = 170.770639 +The maximum resident set size (KB) = 547932 -Test 050 control_ras PASS +Test 051 control_ras PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson -Checking test 051 control_thompson results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson +Checking test 052 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1591,15 +1661,15 @@ Checking test 051 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 235.574129 -The maximum resident set size (KB) = 901792 +The total amount of wall time = 233.789583 +The maximum resident set size (KB) = 907176 -Test 051 control_thompson PASS +Test 052 control_thompson PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_no_aero -Checking test 052 control_thompson_no_aero results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson_no_aero +Checking test 053 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1609,55 +1679,55 @@ Checking test 052 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 222.195606 -The maximum resident set size (KB) = 900260 +The total amount of wall time = 220.737020 +The maximum resident set size (KB) = 898752 -Test 052 control_thompson_no_aero PASS +Test 053 control_thompson_no_aero PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_wam -Checking test 053 control_wam results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_wam +Checking test 054 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 111.499106 -The maximum resident set size (KB) = 399524 +The total amount of wall time = 109.685127 +The maximum resident set size (KB) = 264192 -Test 053 control_wam PASS +Test 054 control_wam PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_debug -Checking test 054 control_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_debug +Checking test 055 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 152.257006 -The maximum resident set size (KB) = 673744 +The total amount of wall time = 154.374943 +The maximum resident set size (KB) = 675048 -Test 054 control_debug PASS +Test 055 control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads_debug -Checking test 055 control_2threads_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_2threads_debug +Checking test 056 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 444.024500 -The maximum resident set size (KB) = 726936 +The total amount of wall time = 444.745274 +The maximum resident set size (KB) = 728040 -Test 055 control_2threads_debug PASS +Test 056 control_2threads_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_CubedSphereGrid_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_CubedSphereGrid_debug -Checking test 056 control_CubedSphereGrid_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_CubedSphereGrid_debug +Checking test 057 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -1683,416 +1753,416 @@ Checking test 056 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 153.686163 -The maximum resident set size (KB) = 675592 +The total amount of wall time = 155.415513 +The maximum resident set size (KB) = 675404 -Test 056 control_CubedSphereGrid_debug PASS +Test 057 control_CubedSphereGrid_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_wrtGauss_netcdf_parallel_debug -Checking test 057 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_wrtGauss_netcdf_parallel_debug +Checking test 058 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 153.562714 -The maximum resident set size (KB) = 678052 +The total amount of wall time = 155.543907 +The maximum resident set size (KB) = 675800 -Test 057 control_wrtGauss_netcdf_parallel_debug PASS +Test 058 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_stochy_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_stochy_debug -Checking test 058 control_stochy_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_stochy_debug +Checking test 059 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.380090 -The maximum resident set size (KB) = 680304 +The total amount of wall time = 177.049273 +The maximum resident set size (KB) = 681224 -Test 058 control_stochy_debug PASS +Test 059 control_stochy_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_lndp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_lndp_debug -Checking test 059 control_lndp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_lndp_debug +Checking test 060 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.512783 -The maximum resident set size (KB) = 677584 +The total amount of wall time = 157.977344 +The maximum resident set size (KB) = 682960 -Test 059 control_lndp_debug PASS +Test 060 control_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmg_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmg_debug -Checking test 060 control_csawmg_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_csawmg_debug +Checking test 061 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 251.679633 -The maximum resident set size (KB) = 718760 +The total amount of wall time = 258.125400 +The maximum resident set size (KB) = 720496 -Test 060 control_csawmg_debug PASS +Test 061 control_csawmg_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_csawmgt_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmgt_debug -Checking test 061 control_csawmgt_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_csawmgt_debug +Checking test 062 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 246.026029 -The maximum resident set size (KB) = 718556 +The total amount of wall time = 250.980197 +The maximum resident set size (KB) = 719444 -Test 061 control_csawmgt_debug PASS +Test 062 control_csawmgt_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_ras_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_ras_debug -Checking test 062 control_ras_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_ras_debug +Checking test 063 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.746083 -The maximum resident set size (KB) = 688824 +The total amount of wall time = 160.146876 +The maximum resident set size (KB) = 688892 -Test 062 control_ras_debug PASS +Test 063 control_ras_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_diag_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_diag_debug -Checking test 063 control_diag_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_diag_debug +Checking test 064 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.849625 -The maximum resident set size (KB) = 731520 +The total amount of wall time = 160.359457 +The maximum resident set size (KB) = 732324 -Test 063 control_diag_debug PASS +Test 064 control_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_debug_p8 -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_debug_p8 -Checking test 064 control_debug_p8 results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_debug_p8 +Checking test 065 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 179.962678 -The maximum resident set size (KB) = 1063488 +The total amount of wall time = 183.076375 +The maximum resident set size (KB) = 1065524 -Test 064 control_debug_p8 PASS +Test 065 control_debug_p8 PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_debug -Checking test 065 control_thompson_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson_debug +Checking test 066 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.587958 -The maximum resident set size (KB) = 1041208 +The total amount of wall time = 185.826007 +The maximum resident set size (KB) = 1040060 -Test 065 control_thompson_debug PASS +Test 066 control_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_no_aero_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_no_aero_debug -Checking test 066 control_thompson_no_aero_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson_no_aero_debug +Checking test 067 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.156634 -The maximum resident set size (KB) = 1032232 +The total amount of wall time = 178.338183 +The maximum resident set size (KB) = 1034492 -Test 066 control_thompson_no_aero_debug PASS +Test 067 control_thompson_no_aero_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_debug_extdiag -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_extdiag_debug -Checking test 067 control_thompson_extdiag_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson_extdiag_debug +Checking test 068 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 188.768570 -The maximum resident set size (KB) = 1067652 +The total amount of wall time = 192.388702 +The maximum resident set size (KB) = 1069232 -Test 067 control_thompson_extdiag_debug PASS +Test 068 control_thompson_extdiag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_progcld_thompson_debug -Checking test 068 control_thompson_progcld_thompson_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_thompson_progcld_thompson_debug +Checking test 069 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 184.114823 -The maximum resident set size (KB) = 1038656 +The total amount of wall time = 186.978886 +The maximum resident set size (KB) = 1045488 -Test 068 control_thompson_progcld_thompson_debug PASS +Test 069 control_thompson_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/fv3_regional_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_debug -Checking test 069 regional_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/regional_debug +Checking test 070 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 257.791751 -The maximum resident set size (KB) = 619004 +The total amount of wall time = 258.366208 +The maximum resident set size (KB) = 619768 -Test 069 regional_debug PASS +Test 070 regional_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_control_debug -Checking test 070 rap_control_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_control_debug +Checking test 071 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.157428 -The maximum resident set size (KB) = 1049096 +The total amount of wall time = 294.384247 +The maximum resident set size (KB) = 1049440 -Test 070 rap_control_debug PASS +Test 071 rap_control_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_control_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_unified_drag_suite_debug -Checking test 071 rap_unified_drag_suite_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_unified_drag_suite_debug +Checking test 072 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 290.706671 -The maximum resident set size (KB) = 1050672 +The total amount of wall time = 293.990750 +The maximum resident set size (KB) = 1048652 -Test 071 rap_unified_drag_suite_debug PASS +Test 072 rap_unified_drag_suite_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_diag_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_diag_debug -Checking test 072 rap_diag_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_diag_debug +Checking test 073 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 301.480068 -The maximum resident set size (KB) = 1134068 +The total amount of wall time = 304.340871 +The maximum resident set size (KB) = 1132240 -Test 072 rap_diag_debug PASS +Test 073 rap_diag_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_cires_ugwp_debug -Checking test 073 rap_cires_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_cires_ugwp_debug +Checking test 074 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.122040 -The maximum resident set size (KB) = 1048156 +The total amount of wall time = 299.864370 +The maximum resident set size (KB) = 1047600 -Test 073 rap_cires_ugwp_debug PASS +Test 074 rap_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_unified_ugwp_debug -Checking test 074 rap_unified_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_unified_ugwp_debug +Checking test 075 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 297.422690 -The maximum resident set size (KB) = 1048888 +The total amount of wall time = 302.158425 +The maximum resident set size (KB) = 1048296 -Test 074 rap_unified_ugwp_debug PASS +Test 075 rap_unified_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_lndp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_lndp_debug -Checking test 075 rap_lndp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_lndp_debug +Checking test 076 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.902958 -The maximum resident set size (KB) = 1047812 +The total amount of wall time = 296.684035 +The maximum resident set size (KB) = 1051256 -Test 075 rap_lndp_debug PASS +Test 076 rap_lndp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_flake_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_flake_debug -Checking test 076 rap_flake_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_flake_debug +Checking test 077 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.714867 -The maximum resident set size (KB) = 1051828 +The total amount of wall time = 293.944442 +The maximum resident set size (KB) = 1050216 -Test 076 rap_flake_debug PASS +Test 077 rap_flake_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_progcld_thompson_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_progcld_thompson_debug -Checking test 077 rap_progcld_thompson_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_progcld_thompson_debug +Checking test 078 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 292.157024 -The maximum resident set size (KB) = 1052296 +The total amount of wall time = 294.259384 +The maximum resident set size (KB) = 1050168 -Test 077 rap_progcld_thompson_debug PASS +Test 078 rap_progcld_thompson_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_noah_debug -Checking test 078 rap_noah_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_noah_debug +Checking test 079 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.801923 -The maximum resident set size (KB) = 1047036 +The total amount of wall time = 288.800157 +The maximum resident set size (KB) = 1046272 -Test 078 rap_noah_debug PASS +Test 079 rap_noah_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_rrtmgp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_rrtmgp_debug -Checking test 079 rap_rrtmgp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_rrtmgp_debug +Checking test 080 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 490.440903 -The maximum resident set size (KB) = 1170292 +The total amount of wall time = 494.979163 +The maximum resident set size (KB) = 1169644 -Test 079 rap_rrtmgp_debug PASS +Test 080 rap_rrtmgp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_sfcdiff_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_sfcdiff_debug -Checking test 080 rap_sfcdiff_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_sfcdiff_debug +Checking test 081 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.267788 -The maximum resident set size (KB) = 1044012 +The total amount of wall time = 296.522664 +The maximum resident set size (KB) = 1045864 -Test 080 rap_sfcdiff_debug PASS +Test 081 rap_sfcdiff_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 081 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 082 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 478.405989 -The maximum resident set size (KB) = 1050256 +The total amount of wall time = 484.810085 +The maximum resident set size (KB) = 1045884 -Test 081 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 082 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/rrfs_v1beta_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1beta_debug -Checking test 082 rrfs_v1beta_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/rrfs_v1beta_debug +Checking test 083 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.385971 -The maximum resident set size (KB) = 1041348 +The total amount of wall time = 291.018219 +The maximum resident set size (KB) = 1040472 -Test 082 rrfs_v1beta_debug PASS +Test 083 rrfs_v1beta_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control_wam_debug -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_wam_debug -Checking test 083 control_wam_debug results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/control_wam_debug +Checking test 084 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.022108 -The maximum resident set size (KB) = 405704 +The total amount of wall time = 299.852923 +The maximum resident set size (KB) = 291972 -Test 083 control_wam_debug PASS +Test 084 control_wam_debug PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_atm -Checking test 084 hafs_regional_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_atm +Checking test 085 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 690.316113 -The maximum resident set size (KB) = 794132 +The total amount of wall time = 694.527313 +The maximum resident set size (KB) = 791476 -Test 084 hafs_regional_atm PASS +Test 085 hafs_regional_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_atm_thompson_gfdlsf -Checking test 085 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_atm_thompson_gfdlsf +Checking test 086 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 807.661077 -The maximum resident set size (KB) = 1162128 +The total amount of wall time = 809.817910 +The maximum resident set size (KB) = 1155208 -Test 085 hafs_regional_atm_thompson_gfdlsf PASS +Test 086 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_atm_ocn -Checking test 086 hafs_regional_atm_ocn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_atm_ocn +Checking test 087 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2100,15 +2170,15 @@ Checking test 086 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 452.204267 -The maximum resident set size (KB) = 826416 +The total amount of wall time = 442.378346 +The maximum resident set size (KB) = 829688 -Test 086 hafs_regional_atm_ocn PASS +Test 087 hafs_regional_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_wav -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_atm_wav -Checking test 087 hafs_regional_atm_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_atm_wav +Checking test 088 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2116,15 +2186,15 @@ Checking test 087 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 727.143321 -The maximum resident set size (KB) = 866704 +The total amount of wall time = 716.837595 +The maximum resident set size (KB) = 865428 -Test 087 hafs_regional_atm_wav PASS +Test 088 hafs_regional_atm_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_atm_ocn_wav -Checking test 088 hafs_regional_atm_ocn_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_atm_ocn_wav +Checking test 089 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2134,29 +2204,29 @@ Checking test 088 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 876.895028 -The maximum resident set size (KB) = 876244 +The total amount of wall time = 871.050178 +The maximum resident set size (KB) = 876132 -Test 088 hafs_regional_atm_ocn_wav PASS +Test 089 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_1nest_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_1nest_atm -Checking test 089 hafs_regional_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_1nest_atm +Checking test 090 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 1058.952811 -The maximum resident set size (KB) = 419028 +The total amount of wall time = 1057.138048 +The maximum resident set size (KB) = 378424 -Test 089 hafs_regional_1nest_atm PASS +Test 090 hafs_regional_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_telescopic_2nests_atm -Checking test 090 hafs_regional_telescopic_2nests_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_telescopic_2nests_atm +Checking test 091 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2164,29 +2234,29 @@ Checking test 090 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 1222.169894 -The maximum resident set size (KB) = 399616 +The total amount of wall time = 1211.943398 +The maximum resident set size (KB) = 387428 -Test 090 hafs_regional_telescopic_2nests_atm PASS +Test 091 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_1nest_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_global_1nest_atm -Checking test 091 hafs_global_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_global_1nest_atm +Checking test 092 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 508.692972 -The maximum resident set size (KB) = 399352 +The total amount of wall time = 515.059702 +The maximum resident set size (KB) = 250372 -Test 091 hafs_global_1nest_atm PASS +Test 092 hafs_global_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_multiple_4nests_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_global_multiple_4nests_atm -Checking test 092 hafs_global_multiple_4nests_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_global_multiple_4nests_atm +Checking test 093 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2198,43 +2268,43 @@ Checking test 092 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -The total amount of wall time = 1357.104030 -The maximum resident set size (KB) = 324116 +The total amount of wall time = 1354.252991 +The maximum resident set size (KB) = 330912 -Test 092 hafs_global_multiple_4nests_atm PASS +Test 093 hafs_global_multiple_4nests_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_specified_moving_1nest_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_specified_moving_1nest_atm -Checking test 093 hafs_regional_specified_moving_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_specified_moving_1nest_atm +Checking test 094 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 -The total amount of wall time = 633.288310 -The maximum resident set size (KB) = 384620 +The total amount of wall time = 634.368399 +The maximum resident set size (KB) = 385500 -Test 093 hafs_regional_specified_moving_1nest_atm PASS +Test 094 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_storm_following_1nest_atm -Checking test 094 hafs_regional_storm_following_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_storm_following_1nest_atm +Checking test 095 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 610.152838 -The maximum resident set size (KB) = 382268 +The total amount of wall time = 612.529843 +The maximum resident set size (KB) = 386728 -Test 094 hafs_regional_storm_following_1nest_atm PASS +Test 095 hafs_regional_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_storm_following_1nest_atm_ocn -Checking test 095 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_storm_following_1nest_atm_ocn +Checking test 096 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2242,15 +2312,15 @@ Checking test 095 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 645.671526 -The maximum resident set size (KB) = 410116 +The total amount of wall time = 645.899848 +The maximum resident set size (KB) = 409416 -Test 095 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 096 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 096 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 097 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2260,69 +2330,69 @@ Checking test 096 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 1312.945660 -The maximum resident set size (KB) = 464824 +The total amount of wall time = 1318.073161 +The maximum resident set size (KB) = 471084 -Test 096 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 097 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_global_storm_following_1nest_atm -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_global_storm_following_1nest_atm -Checking test 097 hafs_global_storm_following_1nest_atm results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_global_storm_following_1nest_atm +Checking test 098 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 206.431445 -The maximum resident set size (KB) = 333864 +The total amount of wall time = 213.343833 +The maximum resident set size (KB) = 259824 -Test 097 hafs_global_storm_following_1nest_atm PASS +Test 098 hafs_global_storm_following_1nest_atm PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_docn -Checking test 098 hafs_regional_docn results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_docn +Checking test 099 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 391.663235 -The maximum resident set size (KB) = 832508 +The total amount of wall time = 393.850503 +The maximum resident set size (KB) = 831724 -Test 098 hafs_regional_docn PASS +Test 099 hafs_regional_docn PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_docn_oisst -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_docn_oisst -Checking test 099 hafs_regional_docn_oisst results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_docn_oisst +Checking test 100 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 398.019147 -The maximum resident set size (KB) = 817296 +The total amount of wall time = 395.291752 +The maximum resident set size (KB) = 819736 -Test 099 hafs_regional_docn_oisst PASS +Test 100 hafs_regional_docn_oisst PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/hafs_regional_datm_cdeps -working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hafs_regional_datm_cdeps -Checking test 100 hafs_regional_datm_cdeps results .... +working dir = /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_42168/hafs_regional_datm_cdeps +Checking test 101 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -The total amount of wall time = 1188.043629 -The maximum resident set size (KB) = 839768 +The total amount of wall time = 1181.858046 +The maximum resident set size (KB) = 840864 -Test 100 hafs_regional_datm_cdeps PASS +Test 101 hafs_regional_datm_cdeps PASS REGRESSION TEST WAS SUCCESSFUL -Mon Jun 6 12:51:17 UTC 2022 -Elapsed time: 00h:44m:43s. Have a nice day! +Tue Jun 7 22:16:11 UTC 2022 +Elapsed time: 00h:47m:08s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index edf9892802..12b7f5e1bb 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Sat Jun 4 02:15:26 UTC 2022 +Tue Jun 7 21:13:02 UTC 2022 Start Regression test -Compile 001 elapsed time 760 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 829 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 780 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 731 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 557 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 524 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 539 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 542 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 977 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 812 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 802 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 850 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 779 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 588 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 704 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 638 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 581 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 1000 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -59,14 +59,14 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 145.002451 -The maximum resident set size (KB) = 421484 +The total amount of wall time = 156.545143 +The maximum resident set size (KB) = 421088 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_decomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -109,28 +109,28 @@ Checking test 002 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 146.663156 -The maximum resident set size (KB) = 420528 +The total amount of wall time = 151.785588 +The maximum resident set size (KB) = 420192 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_2dwrtdecomp Checking test 003 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 136.379110 -The maximum resident set size (KB) = 421480 +The total amount of wall time = 141.899133 +The maximum resident set size (KB) = 421016 Test 003 control_2dwrtdecomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_restart Checking test 004 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -169,14 +169,14 @@ Checking test 004 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 78.863799 -The maximum resident set size (KB) = 158976 +The total amount of wall time = 92.883640 +The maximum resident set size (KB) = 158524 Test 004 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_fhzero +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_fhzero Checking test 005 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -219,14 +219,14 @@ Checking test 005 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 134.839314 -The maximum resident set size (KB) = 421436 +The total amount of wall time = 146.602665 +The maximum resident set size (KB) = 421060 Test 005 control_fhzero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_CubedSphereGrid Checking test 006 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -253,14 +253,14 @@ Checking test 006 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 137.171026 -The maximum resident set size (KB) = 421760 +The total amount of wall time = 146.868525 +The maximum resident set size (KB) = 423816 Test 006 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_latlon -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_latlon +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_latlon Checking test 007 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -271,14 +271,14 @@ Checking test 007 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.863891 -The maximum resident set size (KB) = 421604 +The total amount of wall time = 147.000139 +The maximum resident set size (KB) = 421176 Test 007 control_latlon PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_wrtGauss_netcdf_parallel Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -289,14 +289,14 @@ Checking test 008 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.206020 -The maximum resident set size (KB) = 421400 +The total amount of wall time = 149.483862 +The maximum resident set size (KB) = 421092 Test 008 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c48 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_c48 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_c48 Checking test 009 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -335,14 +335,14 @@ Checking test 009 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 452.665887 -The maximum resident set size (KB) = 630516 +The total amount of wall time = 454.517071 +The maximum resident set size (KB) = 632592 Test 009 control_c48 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c192 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_c192 Checking test 010 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -353,14 +353,14 @@ Checking test 010 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 549.395980 -The maximum resident set size (KB) = 522236 +The total amount of wall time = 576.556395 +The maximum resident set size (KB) = 522368 Test 010 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_stochy Checking test 011 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -371,28 +371,28 @@ Checking test 011 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 97.247159 -The maximum resident set size (KB) = 424236 +The total amount of wall time = 116.139570 +The maximum resident set size (KB) = 423020 Test 011 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_stochy_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_stochy_restart Checking test 012 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 55.214856 -The maximum resident set size (KB) = 175680 +The total amount of wall time = 65.482799 +The maximum resident set size (KB) = 175776 Test 012 control_stochy_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_lndp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_lndp Checking test 013 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -403,14 +403,14 @@ Checking test 013 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 88.627915 -The maximum resident set size (KB) = 425236 +The total amount of wall time = 92.475923 +The maximum resident set size (KB) = 424844 Test 013 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr4 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_iovr4 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_iovr4 Checking test 014 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -425,14 +425,14 @@ Checking test 014 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.710703 -The maximum resident set size (KB) = 421464 +The total amount of wall time = 158.704157 +The maximum resident set size (KB) = 421108 Test 014 control_iovr4 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr5 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_iovr5 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_iovr5 Checking test 015 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -447,14 +447,14 @@ Checking test 015 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 144.702194 -The maximum resident set size (KB) = 421636 +The total amount of wall time = 155.006753 +The maximum resident set size (KB) = 421068 Test 015 control_iovr5 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_p8 Checking test 016 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -501,14 +501,14 @@ Checking test 016 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 188.828870 -The maximum resident set size (KB) = 809752 +The total amount of wall time = 205.075156 +The maximum resident set size (KB) = 810236 Test 016 control_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8_lndp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_p8_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_p8_lndp Checking test 017 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -527,14 +527,14 @@ Checking test 017 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 364.302817 -The maximum resident set size (KB) = 810032 +The total amount of wall time = 372.436719 +The maximum resident set size (KB) = 810360 Test 017 control_p8_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_restart_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_restart_p8 Checking test 018 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -573,14 +573,14 @@ Checking test 018 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 107.434485 -The maximum resident set size (KB) = 546044 +The total amount of wall time = 117.690388 +The maximum resident set size (KB) = 547280 Test 018 control_restart_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_decomp_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_decomp_p8 Checking test 019 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -623,14 +623,14 @@ Checking test 019 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 193.644913 -The maximum resident set size (KB) = 804332 +The total amount of wall time = 207.985983 +The maximum resident set size (KB) = 804044 Test 019 control_decomp_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8_rrtmgp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_p8_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_p8_rrtmgp Checking test 020 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -677,14 +677,14 @@ Checking test 020 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 233.891677 -The maximum resident set size (KB) = 927952 +The total amount of wall time = 290.233166 +The maximum resident set size (KB) = 926804 Test 020 control_p8_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_control Checking test 021 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -695,42 +695,42 @@ Checking test 021 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 386.180824 -The maximum resident set size (KB) = 534536 +The total amount of wall time = 378.777361 +The maximum resident set size (KB) = 534384 Test 021 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_restart Checking test 022 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 221.369512 -The maximum resident set size (KB) = 527920 +The total amount of wall time = 255.512655 +The maximum resident set size (KB) = 529428 Test 022 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_control_2dwrtdecomp Checking test 023 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 374.545103 -The maximum resident set size (KB) = 534508 +The total amount of wall time = 396.959384 +The maximum resident set size (KB) = 534428 Test 023 regional_control_2dwrtdecomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_noquilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_noquilt Checking test 024 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -738,28 +738,28 @@ Checking test 024 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 407.714602 -The maximum resident set size (KB) = 536864 +The total amount of wall time = 433.367588 +The maximum resident set size (KB) = 536540 Test 024 regional_noquilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_netcdf_parallel Checking test 025 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 364.468675 -The maximum resident set size (KB) = 531076 +The total amount of wall time = 375.813199 +The maximum resident set size (KB) = 527856 Test 025 regional_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_3km -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_3km +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_3km Checking test 026 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -770,14 +770,14 @@ Checking test 026 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 298.309964 -The maximum resident set size (KB) = 558396 +The total amount of wall time = 338.782124 +The maximum resident set size (KB) = 558000 Test 026 regional_3km PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_control Checking test 027 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -824,14 +824,14 @@ Checking test 027 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 454.381804 -The maximum resident set size (KB) = 792372 +The total amount of wall time = 492.599522 +The maximum resident set size (KB) = 793248 Test 027 rap_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_rrtmgp -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_rrtmgp Checking test 028 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -878,14 +878,14 @@ Checking test 028 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 494.134505 -The maximum resident set size (KB) = 908628 +The total amount of wall time = 529.271892 +The maximum resident set size (KB) = 908668 Test 028 rap_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/regional_spp_sppt_shum_skeb -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_spp_sppt_shum_skeb Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -896,14 +896,14 @@ Checking test 029 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 334.760172 -The maximum resident set size (KB) = 860308 +The total amount of wall time = 381.185649 +The maximum resident set size (KB) = 876360 Test 029 regional_spp_sppt_shum_skeb PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_restart Checking test 030 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -942,14 +942,14 @@ Checking test 030 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 238.026323 -The maximum resident set size (KB) = 532732 +The total amount of wall time = 290.894360 +The maximum resident set size (KB) = 532524 Test 030 rap_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_sfcdiff Checking test 031 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -996,14 +996,14 @@ Checking test 031 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 459.529849 -The maximum resident set size (KB) = 792476 +The total amount of wall time = 479.447210 +The maximum resident set size (KB) = 790408 Test 031 rap_sfcdiff PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_sfcdiff_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_sfcdiff_restart Checking test 032 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1042,14 +1042,14 @@ Checking test 032 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 240.008878 -The maximum resident set size (KB) = 531936 +The total amount of wall time = 274.805679 +The maximum resident set size (KB) = 532476 Test 032 rap_sfcdiff_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hrrr_control -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hrrr_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hrrr_control Checking test 033 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1096,14 +1096,14 @@ Checking test 033 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 442.744084 -The maximum resident set size (KB) = 788396 +The total amount of wall time = 480.451670 +The maximum resident set size (KB) = 788056 Test 033 hrrr_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_v1beta Checking test 034 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1150,14 +1150,14 @@ Checking test 034 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 451.473426 -The maximum resident set size (KB) = 785060 +The total amount of wall time = 471.340563 +The maximum resident set size (KB) = 784312 Test 034 rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_v1nssl Checking test 035 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1172,14 +1172,14 @@ Checking test 035 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 511.026166 -The maximum resident set size (KB) = 475020 +The total amount of wall time = 517.735435 +The maximum resident set size (KB) = 474984 Test 035 rrfs_v1nssl PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_v1nssl_nohailnoccn Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1194,14 +1194,14 @@ Checking test 036 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 500.240655 -The maximum resident set size (KB) = 470300 +The total amount of wall time = 501.393996 +The maximum resident set size (KB) = 467956 Test 036 rrfs_v1nssl_nohailnoccn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_conus13km_hrrr_warm Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1210,14 +1210,14 @@ Checking test 037 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 270.168144 -The maximum resident set size (KB) = 601400 +The total amount of wall time = 298.944979 +The maximum resident set size (KB) = 602068 Test 037 rrfs_conus13km_hrrr_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_conus13km_radar_tten_warm Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1226,14 +1226,14 @@ Checking test 038 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 273.822917 -The maximum resident set size (KB) = 603984 +The total amount of wall time = 305.567915 +The maximum resident set size (KB) = 604060 Test 038 rrfs_conus13km_radar_tten_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_smoke_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_smoke_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_smoke_conus13km_hrrr_warm Checking test 039 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 039 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 279.794975 -The maximum resident set size (KB) = 613828 +The total amount of wall time = 317.446565 +The maximum resident set size (KB) = 613780 Test 039 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmg -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_csawmg Checking test 040 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1260,14 +1260,14 @@ Checking test 040 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 365.801692 -The maximum resident set size (KB) = 488500 +The total amount of wall time = 374.716464 +The maximum resident set size (KB) = 489612 Test 040 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmgt -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_csawmgt Checking test 041 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1278,14 +1278,14 @@ Checking test 041 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 360.824195 -The maximum resident set size (KB) = 488540 +The total amount of wall time = 384.866876 +The maximum resident set size (KB) = 488632 Test 041 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_flake -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_flake Checking test 042 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1296,14 +1296,14 @@ Checking test 042 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 233.603219 -The maximum resident set size (KB) = 491856 +The total amount of wall time = 253.405626 +The maximum resident set size (KB) = 491940 Test 042 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_ras -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_ras Checking test 043 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1314,40 +1314,40 @@ Checking test 043 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 198.250149 -The maximum resident set size (KB) = 455056 +The total amount of wall time = 206.562113 +The maximum resident set size (KB) = 454964 Test 043 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wam -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wam +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_wam Checking test 044 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 112.577452 -The maximum resident set size (KB) = 169768 +The total amount of wall time = 118.217362 +The maximum resident set size (KB) = 169756 Test 044 control_wam PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_debug Checking test 045 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 144.951457 -The maximum resident set size (KB) = 584904 +The total amount of wall time = 149.456714 +The maximum resident set size (KB) = 585564 Test 045 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_CubedSphereGrid_debug Checking test 046 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1374,415 +1374,415 @@ Checking test 046 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.812067 -The maximum resident set size (KB) = 585228 +The total amount of wall time = 159.037797 +The maximum resident set size (KB) = 585176 Test 046 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_wrtGauss_netcdf_parallel_debug Checking test 047 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 147.370163 -The maximum resident set size (KB) = 586780 +The total amount of wall time = 153.472836 +The maximum resident set size (KB) = 585552 Test 047 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_stochy_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_stochy_debug Checking test 048 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 165.678642 -The maximum resident set size (KB) = 590972 +The total amount of wall time = 178.426106 +The maximum resident set size (KB) = 591080 Test 048 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_lndp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_lndp_debug Checking test 049 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 149.742367 -The maximum resident set size (KB) = 591544 +The total amount of wall time = 158.499089 +The maximum resident set size (KB) = 588944 Test 049 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_csawmg_debug Checking test 050 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 234.299322 -The maximum resident set size (KB) = 627752 +The total amount of wall time = 242.990851 +The maximum resident set size (KB) = 628152 Test 050 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_csawmgt_debug Checking test 051 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 231.371024 -The maximum resident set size (KB) = 627692 +The total amount of wall time = 257.682913 +The maximum resident set size (KB) = 625736 Test 051 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_ras_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_ras_debug Checking test 052 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 151.514271 -The maximum resident set size (KB) = 598052 +The total amount of wall time = 156.225328 +The maximum resident set size (KB) = 600216 Test 052 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_diag_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_diag_debug Checking test 053 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.247761 -The maximum resident set size (KB) = 644428 +The total amount of wall time = 170.615820 +The maximum resident set size (KB) = 644336 Test 053 control_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug_p8 -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_debug_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_debug_p8 Checking test 054 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 164.206363 -The maximum resident set size (KB) = 974252 +The total amount of wall time = 196.728192 +The maximum resident set size (KB) = 974164 Test 054 control_debug_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_thompson_debug Checking test 055 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 175.235998 -The maximum resident set size (KB) = 944300 +The total amount of wall time = 202.124048 +The maximum resident set size (KB) = 944812 Test 055 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_thompson_no_aero_debug Checking test 056 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 166.888550 -The maximum resident set size (KB) = 940768 +The total amount of wall time = 185.974038 +The maximum resident set size (KB) = 941216 Test 056 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_thompson_extdiag_debug Checking test 057 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.629070 -The maximum resident set size (KB) = 973192 +The total amount of wall time = 208.011991 +The maximum resident set size (KB) = 973284 Test 057 control_thompson_extdiag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_thompson_progcld_thompson_debug Checking test 058 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.334877 -The maximum resident set size (KB) = 944164 +The total amount of wall time = 182.097639 +The maximum resident set size (KB) = 946712 Test 058 control_thompson_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/regional_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/regional_debug Checking test 059 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 248.389814 -The maximum resident set size (KB) = 554936 +The total amount of wall time = 252.880270 +The maximum resident set size (KB) = 556720 Test 059 regional_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_control_debug Checking test 060 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.455848 -The maximum resident set size (KB) = 952992 +The total amount of wall time = 293.911263 +The maximum resident set size (KB) = 953112 Test 060 rap_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_unified_drag_suite_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_unified_drag_suite_debug Checking test 061 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.815031 -The maximum resident set size (KB) = 953028 +The total amount of wall time = 275.246401 +The maximum resident set size (KB) = 953060 Test 061 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_diag_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_diag_debug Checking test 062 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 286.733035 -The maximum resident set size (KB) = 1035404 +The total amount of wall time = 299.656967 +The maximum resident set size (KB) = 1035564 Test 062 rap_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_cires_ugwp_debug Checking test 063 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 276.029246 -The maximum resident set size (KB) = 951308 +The total amount of wall time = 282.920494 +The maximum resident set size (KB) = 954860 Test 063 rap_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_unified_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_unified_ugwp_debug Checking test 064 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 277.080259 -The maximum resident set size (KB) = 953004 +The total amount of wall time = 287.334207 +The maximum resident set size (KB) = 953188 Test 064 rap_unified_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_lndp_debug Checking test 065 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 272.434312 -The maximum resident set size (KB) = 953684 +The total amount of wall time = 282.187719 +The maximum resident set size (KB) = 954064 Test 065 rap_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_flake_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_flake_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_flake_debug Checking test 066 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.234208 -The maximum resident set size (KB) = 952980 +The total amount of wall time = 289.988251 +The maximum resident set size (KB) = 953132 Test 066 rap_flake_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_progcld_thompson_debug Checking test 067 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 270.677901 -The maximum resident set size (KB) = 952952 +The total amount of wall time = 276.704960 +The maximum resident set size (KB) = 953056 Test 067 rap_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_noah_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_noah_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_noah_debug Checking test 068 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.360041 -The maximum resident set size (KB) = 951060 +The total amount of wall time = 269.387464 +The maximum resident set size (KB) = 951504 Test 068 rap_noah_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_rrtmgp_debug Checking test 069 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 451.550523 -The maximum resident set size (KB) = 1073880 +The total amount of wall time = 460.898425 +The maximum resident set size (KB) = 1074240 Test 069 rap_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_sfcdiff_debug Checking test 070 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 271.411412 -The maximum resident set size (KB) = 953352 +The total amount of wall time = 282.186572 +The maximum resident set size (KB) = 953296 Test 070 rap_sfcdiff_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rap_noah_sfcdiff_cires_ugwp_debug Checking test 071 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 440.213809 -The maximum resident set size (KB) = 951588 +The total amount of wall time = 454.882620 +The maximum resident set size (KB) = 956456 Test 071 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/rrfs_v1beta_debug Checking test 072 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.001354 -The maximum resident set size (KB) = 947524 +The total amount of wall time = 275.547312 +The maximum resident set size (KB) = 950472 Test 072 rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wam_debug -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wam_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/control_wam_debug Checking test 073 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 272.431327 -The maximum resident set size (KB) = 199196 +The total amount of wall time = 282.680911 +The maximum resident set size (KB) = 199548 Test 073 control_wam_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_atm Checking test 074 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 406.051472 -The maximum resident set size (KB) = 648748 +The total amount of wall time = 488.799403 +The maximum resident set size (KB) = 646544 Test 074 hafs_regional_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_atm_thompson_gfdlsf Checking test 075 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 484.064646 -The maximum resident set size (KB) = 1002516 +The total amount of wall time = 523.503620 +The maximum resident set size (KB) = 1001156 Test 075 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_atm_ocn Checking test 076 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1791,14 +1791,14 @@ Checking test 076 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 579.958603 -The maximum resident set size (KB) = 670956 +The total amount of wall time = 627.667958 +The maximum resident set size (KB) = 670348 Test 076 hafs_regional_atm_ocn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_atm_wav Checking test 077 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1807,14 +1807,14 @@ Checking test 077 hafs_regional_atm_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 1021.650608 -The maximum resident set size (KB) = 697380 +The total amount of wall time = 1139.410750 +The maximum resident set size (KB) = 697776 Test 077 hafs_regional_atm_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_atm_ocn_wav Checking test 078 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1825,28 +1825,28 @@ Checking test 078 hafs_regional_atm_ocn_wav results .... Comparing 20190829.060000.restart.ww3 .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 1053.051708 -The maximum resident set size (KB) = 709360 +The total amount of wall time = 1267.950646 +The maximum resident set size (KB) = 707076 Test 078 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_1nest_atm Checking test 079 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 395.350242 -The maximum resident set size (KB) = 243536 +The total amount of wall time = 413.589850 +The maximum resident set size (KB) = 246460 Test 079 hafs_regional_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_telescopic_2nests_atm Checking test 080 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1855,56 +1855,56 @@ Checking test 080 hafs_regional_telescopic_2nests_atm results .... Comparing atm.nest03.f006.nc .........OK Comparing sfc.nest03.f006.nc .........OK -The total amount of wall time = 448.958610 -The maximum resident set size (KB) = 248804 +The total amount of wall time = 468.677199 +The maximum resident set size (KB) = 250840 Test 080 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_global_1nest_atm Checking test 081 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 176.531580 -The maximum resident set size (KB) = 148204 +The total amount of wall time = 190.475353 +The maximum resident set size (KB) = 148412 Test 081 hafs_global_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_specified_moving_1nest_atm Checking test 082 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 -The total amount of wall time = 249.498429 -The maximum resident set size (KB) = 253296 +The total amount of wall time = 273.118668 +The maximum resident set size (KB) = 254436 Test 082 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_storm_following_1nest_atm Checking test 083 hafs_regional_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 237.398685 -The maximum resident set size (KB) = 252768 +The total amount of wall time = 253.088996 +The maximum resident set size (KB) = 253712 Test 083 hafs_regional_storm_following_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_storm_following_1nest_atm_ocn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_storm_following_1nest_atm_ocn Checking test 084 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1913,14 +1913,14 @@ Checking test 084 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -The total amount of wall time = 276.180558 -The maximum resident set size (KB) = 280148 +The total amount of wall time = 327.576508 +The maximum resident set size (KB) = 280512 Test 084 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_regional_storm_following_1nest_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_regional_storm_following_1nest_atm_ocn_wav Checking test 085 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1931,26 +1931,26 @@ Checking test 085 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 585.789254 -The maximum resident set size (KB) = 335624 +The total amount of wall time = 625.246872 +The maximum resident set size (KB) = 336416 Test 085 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_global_storm_following_1nest_atm -working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/hafs_global_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_18690/hafs_global_storm_following_1nest_atm Checking test 086 hafs_global_storm_following_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 67.917412 -The maximum resident set size (KB) = 166920 +The total amount of wall time = 91.956440 +The maximum resident set size (KB) = 166548 Test 086 hafs_global_storm_following_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Sat Jun 4 02:55:56 UTC 2022 -Elapsed time: 00h:40m:31s. Have a nice day! +Tue Jun 7 22:35:09 UTC 2022 +Elapsed time: 01h:22m:07s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 4a70018ec1..7349241ba1 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,25 +1,26 @@ -Sat Jun 4 02:13:44 UTC 2022 +Tue Jun 7 20:06:04 UTC 2022 Start Regression test -Compile 001 elapsed time 2310 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 640 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1123 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1282 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 877 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 448 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 347 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 357 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 286 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 011 elapsed time 1793 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 012 elapsed time 1721 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 013 elapsed time 794 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 314 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1494 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1028 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 2328 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 647 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1592 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 004 elapsed time 1124 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_HRRR_smoke,FV3_RRFS_v1beta,FV3_RRFS_v1nssl -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 1219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_thompson,FV3_GFS_v16_noahmp -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 007 elapsed time 891 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 008 elapsed time 454 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 351 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_flake -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 359 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 011 elapsed time 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 1789 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 013 elapsed time 1757 seconds. -DAPP=HAFS-ALL -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 014 elapsed time 799 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 015 elapsed time 317 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 016 elapsed time 1511 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 017 elapsed time 1022 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +85,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.ww3 .........OK Comparing 20210323.060000.out_grd.ww3 .........OK -[0] The total amount of wall time = 443.022309 -[0] The maximum resident set size (KB) = 1469636 +[0] The total amount of wall time = 442.653946 +[0] The maximum resident set size (KB) = 1470092 Test 001 cpld_control_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +145,14 @@ Checking test 002 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 = 269.464816 -[0] The maximum resident set size (KB) = 1434856 +[0] The total amount of wall time = 269.474237 +[0] The maximum resident set size (KB) = 1436304 Test 002 cpld_restart_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_2threads_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +205,14 @@ Checking test 003 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 = 493.907731 -[0] The maximum resident set size (KB) = 2207084 +[0] The total amount of wall time = 488.670137 +[0] The maximum resident set size (KB) = 2210012 Test 003 cpld_2threads_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_decomp_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +265,14 @@ Checking test 004 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 = 443.432792 -[0] The maximum resident set size (KB) = 1635984 +[0] The total amount of wall time = 443.838535 +[0] The maximum resident set size (KB) = 1637956 Test 004 cpld_decomp_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_mpi_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +325,14 @@ Checking test 005 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 = 371.907989 -[0] The maximum resident set size (KB) = 1274624 +[0] The total amount of wall time = 375.574570 +[0] The maximum resident set size (KB) = 1277552 Test 005 cpld_mpi_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +385,14 @@ Checking test 006 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 = 776.911266 -[0] The maximum resident set size (KB) = 1751516 +[0] The total amount of wall time = 777.915515 +[0] The maximum resident set size (KB) = 1749332 Test 006 cpld_control_c192_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +445,14 @@ Checking test 007 cpld_restart_c192_p8 results .... Comparing 20210323.120000.out_grd.ww3 .........OK Comparing 20210323.120000.out_pnt.ww3 .........OK -[0] The total amount of wall time = 460.594372 -[0] The maximum resident set size (KB) = 1715668 +[0] The total amount of wall time = 455.571888 +[0] The maximum resident set size (KB) = 1717548 Test 007 cpld_restart_c192_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +498,14 @@ Checking test 008 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 = 1324.190591 -[0] The maximum resident set size (KB) = 2576984 +[0] The total amount of wall time = 1319.741171 +[0] The maximum resident set size (KB) = 2603648 Test 008 cpld_bmark_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +551,14 @@ Checking test 009 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 = 853.728602 -[0] The maximum resident set size (KB) = 2547956 +[0] The total amount of wall time = 830.782562 +[0] The maximum resident set size (KB) = 2572304 Test 009 cpld_restart_bmark_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,15 +611,84 @@ Checking test 010 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 = 873.694287 -[0] The maximum resident set size (KB) = 1535312 +[0] The total amount of wall time = 869.896772 +[0] The maximum resident set size (KB) = 1535704 Test 010 cpld_debug_p8 PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_noaero_p8_agrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/cpld_control_noaero_p8_agrid +Checking test 011 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc ............MISSING baseline + Comparing sfcf021.tile2.nc ............MISSING baseline + Comparing sfcf021.tile3.nc ............MISSING baseline + Comparing sfcf021.tile4.nc ............MISSING baseline + Comparing sfcf021.tile5.nc ............MISSING baseline + Comparing sfcf021.tile6.nc ............MISSING baseline + Comparing atmf021.tile1.nc ............MISSING baseline + Comparing atmf021.tile2.nc ............MISSING baseline + Comparing atmf021.tile3.nc ............MISSING baseline + Comparing atmf021.tile4.nc ............MISSING baseline + Comparing atmf021.tile5.nc ............MISSING baseline + Comparing atmf021.tile6.nc ............MISSING baseline + Comparing sfcf024.tile1.nc ............MISSING baseline + Comparing sfcf024.tile2.nc ............MISSING baseline + Comparing sfcf024.tile3.nc ............MISSING baseline + Comparing sfcf024.tile4.nc ............MISSING baseline + Comparing sfcf024.tile5.nc ............MISSING baseline + Comparing sfcf024.tile6.nc ............MISSING baseline + Comparing atmf024.tile1.nc ............MISSING baseline + Comparing atmf024.tile2.nc ............MISSING baseline + Comparing atmf024.tile3.nc ............MISSING baseline + Comparing atmf024.tile4.nc ............MISSING baseline + Comparing atmf024.tile5.nc ............MISSING baseline + Comparing atmf024.tile6.nc ............MISSING baseline + Comparing RESTART/coupler.res ............MISSING baseline + Comparing RESTART/fv_core.res.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile1.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile2.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile3.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile4.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile5.nc ............MISSING baseline + Comparing RESTART/fv_core.res.tile6.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile1.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile2.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile3.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile4.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile5.nc ............MISSING baseline + Comparing RESTART/fv_srf_wnd.res.tile6.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile1.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile2.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile3.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile4.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile5.nc ............MISSING baseline + Comparing RESTART/fv_tracer.res.tile6.nc ............MISSING baseline + Comparing RESTART/phy_data.tile1.nc ............MISSING baseline + Comparing RESTART/phy_data.tile2.nc ............MISSING baseline + Comparing RESTART/phy_data.tile3.nc ............MISSING baseline + Comparing RESTART/phy_data.tile4.nc ............MISSING baseline + Comparing RESTART/phy_data.tile5.nc ............MISSING baseline + Comparing RESTART/phy_data.tile6.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile1.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile2.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile3.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile4.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile5.nc ............MISSING baseline + Comparing RESTART/sfc_data.tile6.nc ............MISSING baseline + Comparing RESTART/MOM.res.nc ............MISSING baseline + Comparing RESTART/iced.2021-03-23-21600.nc ............MISSING baseline + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc ............MISSING baseline + +[0] The total amount of wall time = 324.646458 +[0] The maximum resident set size (KB) = 985552 + +Test 011 cpld_control_noaero_p8_agrid FAIL + + baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control -Checking test 011 control results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control +Checking test 012 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -664,15 +734,15 @@ Checking test 011 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 145.150132 -[0] The maximum resident set size (KB) = 466548 +[0] The total amount of wall time = 148.024207 +[0] The maximum resident set size (KB) = 465612 -Test 011 control PASS +Test 012 control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_decomp -Checking test 012 control_decomp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_decomp +Checking test 013 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -714,29 +784,29 @@ Checking test 012 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 155.929494 -[0] The maximum resident set size (KB) = 462976 +[0] The total amount of wall time = 151.275613 +[0] The maximum resident set size (KB) = 463228 -Test 012 control_decomp PASS +Test 013 control_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2dwrtdecomp -Checking test 013 control_2dwrtdecomp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_2dwrtdecomp +Checking test 014 control_2dwrtdecomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 142.032098 -[0] The maximum resident set size (KB) = 463792 +[0] The total amount of wall time = 143.233879 +[0] The maximum resident set size (KB) = 466584 -Test 013 control_2dwrtdecomp PASS +Test 014 control_2dwrtdecomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2threads -Checking test 014 control_2threads results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_2threads +Checking test 015 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -778,15 +848,15 @@ Checking test 014 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 136.639433 -[0] The maximum resident set size (KB) = 517416 +[0] The total amount of wall time = 136.318825 +[0] The maximum resident set size (KB) = 519360 -Test 014 control_2threads PASS +Test 015 control_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_restart -Checking test 015 control_restart results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_restart +Checking test 016 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -824,15 +894,15 @@ Checking test 015 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 76.475815 -[0] The maximum resident set size (KB) = 212636 +[0] The total amount of wall time = 75.914794 +[0] The maximum resident set size (KB) = 213008 -Test 015 control_restart PASS +Test 016 control_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_fhzero -Checking test 016 control_fhzero results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_fhzero +Checking test 017 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK @@ -874,15 +944,15 @@ Checking test 016 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 136.773360 -[0] The maximum resident set size (KB) = 462136 +[0] The total amount of wall time = 141.372128 +[0] The maximum resident set size (KB) = 466168 -Test 016 control_fhzero PASS +Test 017 control_fhzero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_CubedSphereGrid -Checking test 017 control_CubedSphereGrid results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_CubedSphereGrid +Checking test 018 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -908,15 +978,15 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 141.024779 -[0] The maximum resident set size (KB) = 469888 +[0] The total amount of wall time = 138.674584 +[0] The maximum resident set size (KB) = 467672 -Test 017 control_CubedSphereGrid PASS +Test 018 control_CubedSphereGrid PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_latlon -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_latlon -Checking test 018 control_latlon results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_latlon +Checking test 019 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -926,17 +996,17 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 142.702135 -[0] The maximum resident set size (KB) = 464256 +[0] The total amount of wall time = 142.765288 +[0] The maximum resident set size (KB) = 467256 -Test 018 control_latlon PASS +Test 019 control_latlon PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_wrtGauss_netcdf_parallel -Checking test 019 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc .........OK +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_wrtGauss_netcdf_parallel +Checking test 020 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -944,15 +1014,15 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 145.323481 -[0] The maximum resident set size (KB) = 463176 +[0] The total amount of wall time = 150.969207 +[0] The maximum resident set size (KB) = 465688 -Test 019 control_wrtGauss_netcdf_parallel PASS +Test 020 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c48 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c48 -Checking test 020 control_c48 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_c48 +Checking test 021 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -990,15 +1060,15 @@ Checking test 020 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 448.072031 -[0] The maximum resident set size (KB) = 665548 +[0] The total amount of wall time = 453.166277 +[0] The maximum resident set size (KB) = 662924 -Test 020 control_c48 PASS +Test 021 control_c48 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c192 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c192 -Checking test 021 control_c192 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_c192 +Checking test 022 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1008,15 +1078,15 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 561.025690 -[0] The maximum resident set size (KB) = 565120 +[0] The total amount of wall time = 570.566799 +[0] The maximum resident set size (KB) = 565420 -Test 021 control_c192 PASS +Test 022 control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384 -Checking test 022 control_c384 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_c384 +Checking test 023 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1026,15 +1096,15 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 561.776633 -[0] The maximum resident set size (KB) = 837512 +[0] The total amount of wall time = 559.855174 +[0] The maximum resident set size (KB) = 836032 -Test 022 control_c384 PASS +Test 023 control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384gdas -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384gdas -Checking test 023 control_c384gdas results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_c384gdas +Checking test 024 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK Comparing atmf000.nc .........OK @@ -1076,15 +1146,15 @@ Checking test 023 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 553.855443 -[0] The maximum resident set size (KB) = 983712 +[0] The total amount of wall time = 536.697949 +[0] The maximum resident set size (KB) = 987648 -Test 023 control_c384gdas PASS +Test 024 control_c384gdas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384_progsigma -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384_progsigma -Checking test 024 control_c384_progsigma results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_c384_progsigma +Checking test 025 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1094,15 +1164,15 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 573.405126 -[0] The maximum resident set size (KB) = 856460 +[0] The total amount of wall time = 578.143319 +[0] The maximum resident set size (KB) = 856608 -Test 024 control_c384_progsigma PASS +Test 025 control_c384_progsigma PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_stochy -Checking test 025 control_stochy results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_stochy +Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1112,29 +1182,29 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 98.898938 -[0] The maximum resident set size (KB) = 470804 +[0] The total amount of wall time = 95.512705 +[0] The maximum resident set size (KB) = 468904 -Test 025 control_stochy PASS +Test 026 control_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_stochy_restart -Checking test 026 control_stochy_restart results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_stochy_restart +Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 52.302679 -[0] The maximum resident set size (KB) = 264560 +[0] The total amount of wall time = 50.789006 +[0] The maximum resident set size (KB) = 265912 -Test 026 control_stochy_restart PASS +Test 027 control_stochy_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_lndp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_lndp -Checking test 027 control_lndp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_lndp +Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -1144,15 +1214,15 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 86.380892 -[0] The maximum resident set size (KB) = 464560 +[0] The total amount of wall time = 85.198485 +[0] The maximum resident set size (KB) = 466888 -Test 027 control_lndp PASS +Test 028 control_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr4 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_iovr4 -Checking test 028 control_iovr4 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_iovr4 +Checking test 029 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1166,15 +1236,15 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 145.589141 -[0] The maximum resident set size (KB) = 463824 +[0] The total amount of wall time = 149.549298 +[0] The maximum resident set size (KB) = 466796 -Test 028 control_iovr4 PASS +Test 029 control_iovr4 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr5 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_iovr5 -Checking test 029 control_iovr5 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_iovr5 +Checking test 030 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1188,15 +1258,15 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 143.691109 -[0] The maximum resident set size (KB) = 463864 +[0] The total amount of wall time = 144.682342 +[0] The maximum resident set size (KB) = 463372 -Test 029 control_iovr5 PASS +Test 030 control_iovr5 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8 -Checking test 030 control_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_p8 +Checking test 031 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1242,15 +1312,15 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 191.009812 -[0] The maximum resident set size (KB) = 841936 +[0] The total amount of wall time = 190.353792 +[0] The maximum resident set size (KB) = 847388 -Test 030 control_p8 PASS +Test 031 control_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8_lndp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8_lndp -Checking test 031 control_p8_lndp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_p8_lndp +Checking test 032 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1268,15 +1338,15 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -[0] The total amount of wall time = 352.561470 -[0] The maximum resident set size (KB) = 847836 +[0] The total amount of wall time = 354.545719 +[0] The maximum resident set size (KB) = 849352 -Test 031 control_p8_lndp PASS +Test 032 control_p8_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_restart_p8 -Checking test 032 control_restart_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_restart_p8 +Checking test 033 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1314,15 +1384,15 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 99.058722 -[0] The maximum resident set size (KB) = 591760 +[0] The total amount of wall time = 101.149001 +[0] The maximum resident set size (KB) = 596452 -Test 032 control_restart_p8 PASS +Test 033 control_restart_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_decomp_p8 +Checking test 034 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1364,15 +1434,15 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 195.644473 -[0] The maximum resident set size (KB) = 840704 +[0] The total amount of wall time = 196.844599 +[0] The maximum resident set size (KB) = 843092 -Test 033 control_decomp_p8 PASS +Test 034 control_decomp_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_2threads_p8 +Checking test 035 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -1414,15 +1484,15 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 174.953631 -[0] The maximum resident set size (KB) = 923204 +[0] The total amount of wall time = 175.491250 +[0] The maximum resident set size (KB) = 921084 -Test 034 control_2threads_p8 PASS +Test 035 control_2threads_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8_rrtmgp -Checking test 035 control_p8_rrtmgp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_p8_rrtmgp +Checking test 036 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1468,15 +1538,15 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 229.906180 -[0] The maximum resident set size (KB) = 966656 +[0] The total amount of wall time = 228.532747 +[0] The maximum resident set size (KB) = 963680 -Test 035 control_p8_rrtmgp PASS +Test 036 control_p8_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_control -Checking test 036 regional_control results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_control +Checking test 037 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1486,58 +1556,58 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 378.955681 -[0] The maximum resident set size (KB) = 580664 +[0] The total amount of wall time = 375.721094 +[0] The maximum resident set size (KB) = 579540 -Test 036 regional_control PASS +Test 037 regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_restart -Checking test 037 regional_restart results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_restart +Checking test 038 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 206.356630 -[0] The maximum resident set size (KB) = 584828 +[0] The total amount of wall time = 203.093948 +[0] The maximum resident set size (KB) = 585172 -Test 037 regional_restart PASS +Test 038 regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_control_2dwrtdecomp -Checking test 038 regional_control_2dwrtdecomp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_control_2dwrtdecomp +Checking test 039 regional_control_2dwrtdecomp results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -[0] The total amount of wall time = 372.261955 -[0] The maximum resident set size (KB) = 579472 +[0] The total amount of wall time = 373.611338 +[0] The maximum resident set size (KB) = 583264 -Test 038 regional_control_2dwrtdecomp PASS +Test 039 regional_control_2dwrtdecomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_noquilt -Checking test 039 regional_noquilt results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_noquilt +Checking test 040 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK Comparing fv3_history.nc .........OK Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 402.908865 -[0] The maximum resident set size (KB) = 611240 +[0] The total amount of wall time = 404.677341 +[0] The maximum resident set size (KB) = 612540 -Test 039 regional_noquilt PASS +Test 040 regional_noquilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_2threads -Checking test 040 regional_2threads results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_2threads +Checking test 041 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK @@ -1547,29 +1617,29 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 223.197417 -[0] The maximum resident set size (KB) = 583620 +[0] The total amount of wall time = 223.040694 +[0] The maximum resident set size (KB) = 579156 -Test 040 regional_2threads PASS +Test 041 regional_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_netcdf_parallel +Checking test 042 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc .........OK - Comparing phyf000.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 375.446267 -[0] The maximum resident set size (KB) = 573016 +[0] The total amount of wall time = 371.741276 +[0] The maximum resident set size (KB) = 579312 -Test 041 regional_netcdf_parallel PASS +Test 042 regional_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_3km -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_3km -Checking test 042 regional_3km results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_3km +Checking test 043 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK Comparing phyf000.nc .........OK @@ -1579,15 +1649,15 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 306.227213 -[0] The maximum resident set size (KB) = 608120 +[0] The total amount of wall time = 305.540731 +[0] The maximum resident set size (KB) = 610244 -Test 042 regional_3km PASS +Test 043 regional_3km PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_control -Checking test 043 rap_control results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_control +Checking test 044 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1633,15 +1703,15 @@ Checking test 043 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 471.211531 -[0] The maximum resident set size (KB) = 840616 +[0] The total amount of wall time = 476.950050 +[0] The maximum resident set size (KB) = 843640 -Test 043 rap_control PASS +Test 044 rap_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_rrtmgp -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_rrtmgp -Checking test 044 rap_rrtmgp results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_rrtmgp +Checking test 045 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1687,15 +1757,15 @@ Checking test 044 rap_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 513.517038 -[0] The maximum resident set size (KB) = 952308 +[0] The total amount of wall time = 509.569148 +[0] The maximum resident set size (KB) = 952084 -Test 044 rap_rrtmgp PASS +Test 045 rap_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/regional_spp_sppt_shum_skeb -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_spp_sppt_shum_skeb -Checking test 045 regional_spp_sppt_shum_skeb results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_spp_sppt_shum_skeb +Checking test 046 regional_spp_sppt_shum_skeb results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK @@ -1705,15 +1775,15 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 264.148449 -[0] The maximum resident set size (KB) = 934200 +[0] The total amount of wall time = 264.258040 +[0] The maximum resident set size (KB) = 936988 -Test 045 regional_spp_sppt_shum_skeb PASS +Test 046 regional_spp_sppt_shum_skeb PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_2threads -Checking test 046 rap_2threads results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_2threads +Checking test 047 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1759,15 +1829,15 @@ Checking test 046 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 440.370492 -[0] The maximum resident set size (KB) = 902448 +[0] The total amount of wall time = 444.927070 +[0] The maximum resident set size (KB) = 905180 -Test 046 rap_2threads PASS +Test 047 rap_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_restart -Checking test 047 rap_restart results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_restart +Checking test 048 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1805,15 +1875,15 @@ Checking test 047 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 243.286234 -[0] The maximum resident set size (KB) = 593816 +[0] The total amount of wall time = 240.704994 +[0] The maximum resident set size (KB) = 588044 -Test 047 rap_restart PASS +Test 048 rap_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_sfcdiff -Checking test 048 rap_sfcdiff results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_sfcdiff +Checking test 049 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1859,15 +1929,15 @@ Checking test 048 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 466.649018 -[0] The maximum resident set size (KB) = 839488 +[0] The total amount of wall time = 467.031269 +[0] The maximum resident set size (KB) = 837648 -Test 048 rap_sfcdiff PASS +Test 049 rap_sfcdiff PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_sfcdiff_restart -Checking test 049 rap_sfcdiff_restart results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_sfcdiff_restart +Checking test 050 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF24 .........OK @@ -1905,15 +1975,15 @@ Checking test 049 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 = 237.263444 -[0] The maximum resident set size (KB) = 589568 +[0] The total amount of wall time = 240.128599 +[0] The maximum resident set size (KB) = 594108 -Test 049 rap_sfcdiff_restart PASS +Test 050 rap_sfcdiff_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hrrr_control -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hrrr_control -Checking test 050 hrrr_control results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hrrr_control +Checking test 051 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -1959,15 +2029,15 @@ Checking test 050 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 454.071923 -[0] The maximum resident set size (KB) = 834736 +[0] The total amount of wall time = 447.687503 +[0] The maximum resident set size (KB) = 833576 -Test 050 hrrr_control PASS +Test 051 hrrr_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1beta -Checking test 051 rrfs_v1beta results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_v1beta +Checking test 052 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2013,15 +2083,15 @@ Checking test 051 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 469.500011 -[0] The maximum resident set size (KB) = 836892 +[0] The total amount of wall time = 458.091919 +[0] The maximum resident set size (KB) = 835024 -Test 051 rrfs_v1beta PASS +Test 052 rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1nssl -Checking test 052 rrfs_v1nssl results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_v1nssl +Checking test 053 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2035,15 +2105,15 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 536.162089 -[0] The maximum resident set size (KB) = 524060 +[0] The total amount of wall time = 523.635237 +[0] The maximum resident set size (KB) = 521492 -Test 052 rrfs_v1nssl PASS +Test 053 rrfs_v1nssl PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1nssl_nohailnoccn -Checking test 053 rrfs_v1nssl_nohailnoccn results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_v1nssl_nohailnoccn +Checking test 054 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,15 +2127,15 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 517.250098 -[0] The maximum resident set size (KB) = 515652 +[0] The total amount of wall time = 521.950614 +[0] The maximum resident set size (KB) = 514740 -Test 053 rrfs_v1nssl_nohailnoccn PASS +Test 054 rrfs_v1nssl_nohailnoccn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_conus13km_hrrr_warm -Checking test 054 rrfs_conus13km_hrrr_warm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_conus13km_hrrr_warm +Checking test 055 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2073,15 +2143,15 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 201.719075 -[0] The maximum resident set size (KB) = 667888 +[0] The total amount of wall time = 199.338943 +[0] The maximum resident set size (KB) = 666084 -Test 054 rrfs_conus13km_hrrr_warm PASS +Test 055 rrfs_conus13km_hrrr_warm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_conus13km_radar_tten_warm -Checking test 055 rrfs_conus13km_radar_tten_warm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_conus13km_radar_tten_warm +Checking test 056 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2089,15 +2159,15 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 203.839331 -[0] The maximum resident set size (KB) = 670124 +[0] The total amount of wall time = 199.410084 +[0] The maximum resident set size (KB) = 670156 -Test 055 rrfs_conus13km_radar_tten_warm PASS +Test 056 rrfs_conus13km_radar_tten_warm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_smoke_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_smoke_conus13km_hrrr_warm -Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_smoke_conus13km_hrrr_warm +Checking test 057 rrfs_smoke_conus13km_hrrr_warm results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing sfcf002.nc .........OK @@ -2105,15 +2175,15 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 215.934250 -[0] The maximum resident set size (KB) = 682220 +[0] The total amount of wall time = 216.513317 +[0] The maximum resident set size (KB) = 682428 -Test 056 rrfs_smoke_conus13km_hrrr_warm PASS +Test 057 rrfs_smoke_conus13km_hrrr_warm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmg -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmg -Checking test 057 control_csawmg results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_csawmg +Checking test 058 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2123,15 +2193,15 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 374.083298 -[0] The maximum resident set size (KB) = 525220 +[0] The total amount of wall time = 381.093153 +[0] The maximum resident set size (KB) = 527900 -Test 057 control_csawmg PASS +Test 058 control_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmgt -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmgt -Checking test 058 control_csawmgt results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_csawmgt +Checking test 059 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2141,15 +2211,15 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 370.190201 -[0] The maximum resident set size (KB) = 525776 +[0] The total amount of wall time = 373.512200 +[0] The maximum resident set size (KB) = 527420 -Test 058 control_csawmgt PASS +Test 059 control_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_flake -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_flake -Checking test 059 control_flake results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_flake +Checking test 060 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2159,15 +2229,15 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 260.076341 -[0] The maximum resident set size (KB) = 532832 +[0] The total amount of wall time = 261.620880 +[0] The maximum resident set size (KB) = 531072 -Test 059 control_flake PASS +Test 060 control_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_ras -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_ras -Checking test 060 control_ras results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_ras +Checking test 061 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2177,15 +2247,15 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 193.423446 -[0] The maximum resident set size (KB) = 495536 +[0] The total amount of wall time = 196.139362 +[0] The maximum resident set size (KB) = 492308 -Test 060 control_ras PASS +Test 061 control_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson -Checking test 061 control_thompson results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson +Checking test 062 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2195,15 +2265,15 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 268.391358 -[0] The maximum resident set size (KB) = 848676 +[0] The total amount of wall time = 265.005041 +[0] The maximum resident set size (KB) = 852636 -Test 061 control_thompson PASS +Test 062 control_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson_no_aero -Checking test 062 control_thompson_no_aero results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson_no_aero +Checking test 063 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -2213,43 +2283,55 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 250.697648 -[0] The maximum resident set size (KB) = 840620 +[0] The total amount of wall time = 256.690563 +[0] The maximum resident set size (KB) = 843688 -Test 062 control_thompson_no_aero PASS +Test 063 control_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wam -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_wam -Checking test 063 control_wam results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_wam +Checking test 064 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 121.302605 -[0] The maximum resident set size (KB) = 231132 +[0] The total amount of wall time = 119.348757 +[0] The maximum resident set size (KB) = 226868 + +Test 064 control_wam PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_debug +Checking test 065 control_debug results .... + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf001.nc .........OK -Test 063 control_wam PASS +[0] The total amount of wall time = 166.955517 +[0] The maximum resident set size (KB) = 632772 -Test 064 control_debug FAIL +Test 065 control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2threads_debug -Checking test 065 control_2threads_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_2threads_debug +Checking test 066 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 156.392038 -[0] The maximum resident set size (KB) = 685044 +[0] The total amount of wall time = 156.060793 +[0] The maximum resident set size (KB) = 680144 -Test 065 control_2threads_debug PASS +Test 066 control_2threads_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_CubedSphereGrid_debug -Checking test 066 control_CubedSphereGrid_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_CubedSphereGrid_debug +Checking test 067 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK Comparing sfcf000.tile3.nc .........OK @@ -2275,405 +2357,416 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 182.311297 -[0] The maximum resident set size (KB) = 634732 +[0] The total amount of wall time = 180.727582 +[0] The maximum resident set size (KB) = 627400 -Test 066 control_CubedSphereGrid_debug PASS +Test 067 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_wrtGauss_netcdf_parallel_debug -Checking test 067 control_wrtGauss_netcdf_parallel_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_wrtGauss_netcdf_parallel_debug +Checking test 068 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc .........OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 170.146405 -[0] The maximum resident set size (KB) = 629768 +[0] The total amount of wall time = 178.596384 +[0] The maximum resident set size (KB) = 628436 -Test 067 control_wrtGauss_netcdf_parallel_debug PASS +Test 068 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_stochy_debug -Checking test 068 control_stochy_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_stochy_debug +Checking test 069 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.337130 -[0] The maximum resident set size (KB) = 635184 +[0] The total amount of wall time = 191.623859 +[0] The maximum resident set size (KB) = 633388 -Test 068 control_stochy_debug PASS +Test 069 control_stochy_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_lndp_debug -Checking test 069 control_lndp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_lndp_debug +Checking test 070 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 170.775958 -[0] The maximum resident set size (KB) = 632628 +[0] The total amount of wall time = 170.931462 +[0] The maximum resident set size (KB) = 632960 -Test 069 control_lndp_debug PASS +Test 070 control_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmg_debug -Checking test 070 control_csawmg_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_csawmg_debug +Checking test 071 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 269.505200 -[0] The maximum resident set size (KB) = 666120 +[0] The total amount of wall time = 268.049593 +[0] The maximum resident set size (KB) = 664280 -Test 070 control_csawmg_debug PASS +Test 071 control_csawmg_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmgt_debug -Checking test 071 control_csawmgt_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_csawmgt_debug +Checking test 072 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 265.151183 -[0] The maximum resident set size (KB) = 664408 +[0] The total amount of wall time = 263.242459 +[0] The maximum resident set size (KB) = 662960 -Test 071 control_csawmgt_debug PASS +Test 072 control_csawmgt_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_ras_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_ras_debug -Checking test 072 control_ras_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_ras_debug +Checking test 073 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 173.949200 -[0] The maximum resident set size (KB) = 644436 +[0] The total amount of wall time = 173.724989 +[0] The maximum resident set size (KB) = 640296 -Test 072 control_ras_debug PASS +Test 073 control_ras_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_diag_debug -Checking test 073 control_diag_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_diag_debug +Checking test 074 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 176.310253 -[0] The maximum resident set size (KB) = 688012 +[0] The total amount of wall time = 176.008375 +[0] The maximum resident set size (KB) = 685996 -Test 073 control_diag_debug PASS +Test 074 control_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_debug_p8 -Checking test 074 control_debug_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_debug_p8 +Checking test 075 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 190.053164 -[0] The maximum resident set size (KB) = 1013212 +[0] The total amount of wall time = 189.511656 +[0] The maximum resident set size (KB) = 1011936 -Test 074 control_debug_p8 PASS +Test 075 control_debug_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson_debug -Checking test 075 control_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson_debug +Checking test 076 control_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 = 197.645275 -[0] The maximum resident set size (KB) = 992596 +[0] The total amount of wall time = 197.575646 +[0] The maximum resident set size (KB) = 993468 -Test 075 control_thompson_debug PASS +Test 076 control_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson_no_aero_debug -Checking test 076 control_thompson_no_aero_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson_no_aero_debug +Checking test 077 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 190.752476 -[0] The maximum resident set size (KB) = 986428 +[0] The total amount of wall time = 190.350264 +[0] The maximum resident set size (KB) = 982524 -Test 076 control_thompson_no_aero_debug PASS +Test 077 control_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson_extdiag_debug -Checking test 077 control_thompson_extdiag_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson_extdiag_debug +Checking test 078 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 207.167858 -[0] The maximum resident set size (KB) = 1022148 +[0] The total amount of wall time = 206.788383 +[0] The maximum resident set size (KB) = 1019580 -Test 077 control_thompson_extdiag_debug PASS +Test 078 control_thompson_extdiag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson_progcld_thompson_debug -Checking test 078 control_thompson_progcld_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_thompson_progcld_thompson_debug +Checking test 079 control_thompson_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 = 197.919831 -[0] The maximum resident set size (KB) = 993560 +[0] The total amount of wall time = 198.078714 +[0] The maximum resident set size (KB) = 995240 -Test 078 control_thompson_progcld_thompson_debug PASS +Test 079 control_thompson_progcld_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_debug -Checking test 079 regional_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/regional_debug +Checking test 080 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -[0] The total amount of wall time = 283.143677 -[0] The maximum resident set size (KB) = 607820 +[0] The total amount of wall time = 282.734542 +[0] The maximum resident set size (KB) = 610204 -Test 079 regional_debug PASS +Test 080 regional_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_control_debug -Checking test 080 rap_control_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_control_debug +Checking test 081 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 307.103955 -[0] The maximum resident set size (KB) = 999740 +[0] The total amount of wall time = 305.394653 +[0] The maximum resident set size (KB) = 999304 -Test 080 rap_control_debug PASS +Test 081 rap_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_unified_drag_suite_debug -Checking test 081 rap_unified_drag_suite_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_unified_drag_suite_debug +Checking test 082 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 308.528958 -[0] The maximum resident set size (KB) = 999220 +[0] The total amount of wall time = 306.996418 +[0] The maximum resident set size (KB) = 999188 -Test 081 rap_unified_drag_suite_debug PASS +Test 082 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_diag_debug -Checking test 082 rap_diag_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_diag_debug +Checking test 083 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 323.006533 -[0] The maximum resident set size (KB) = 1082180 +[0] The total amount of wall time = 322.212410 +[0] The maximum resident set size (KB) = 1082844 -Test 082 rap_diag_debug PASS +Test 083 rap_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_cires_ugwp_debug -Checking test 083 rap_cires_ugwp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_cires_ugwp_debug +Checking test 084 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 313.554327 -[0] The maximum resident set size (KB) = 1001360 +[0] The total amount of wall time = 312.327553 +[0] The maximum resident set size (KB) = 997720 -Test 083 rap_cires_ugwp_debug PASS +Test 084 rap_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_unified_ugwp_debug -Checking test 084 rap_unified_ugwp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_unified_ugwp_debug +Checking test 085 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 312.886658 -[0] The maximum resident set size (KB) = 995872 +[0] The total amount of wall time = 310.662247 +[0] The maximum resident set size (KB) = 996336 -Test 084 rap_unified_ugwp_debug PASS +Test 085 rap_unified_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_lndp_debug +Checking test 086 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 309.184493 -[0] The maximum resident set size (KB) = 997780 +[0] The total amount of wall time = 308.639708 +[0] The maximum resident set size (KB) = 1000812 -Test 085 rap_lndp_debug PASS +Test 086 rap_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_flake_debug -Checking test 086 rap_flake_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_flake_debug +Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 306.059062 -[0] The maximum resident set size (KB) = 998436 +[0] The total amount of wall time = 306.093471 +[0] The maximum resident set size (KB) = 997368 -Test 086 rap_flake_debug PASS +Test 087 rap_flake_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_progcld_thompson_debug -Checking test 087 rap_progcld_thompson_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_progcld_thompson_debug +Checking test 088 rap_progcld_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 308.357079 -[0] The maximum resident set size (KB) = 996764 +[0] The total amount of wall time = 307.510580 +[0] The maximum resident set size (KB) = 999632 -Test 087 rap_progcld_thompson_debug PASS +Test 088 rap_progcld_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_noah_debug -Checking test 088 rap_noah_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_noah_debug +Checking test 089 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 303.293741 -[0] The maximum resident set size (KB) = 999852 +[0] The total amount of wall time = 302.757805 +[0] The maximum resident set size (KB) = 995948 -Test 088 rap_noah_debug PASS +Test 089 rap_noah_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_rrtmgp_debug -Checking test 089 rap_rrtmgp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_rrtmgp_debug +Checking test 090 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 518.876774 -[0] The maximum resident set size (KB) = 1114540 +[0] The total amount of wall time = 520.671878 +[0] The maximum resident set size (KB) = 1112052 -Test 089 rap_rrtmgp_debug PASS +Test 090 rap_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_sfcdiff_debug -Checking test 090 rap_sfcdiff_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_sfcdiff_debug +Checking test 091 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 309.923890 -[0] The maximum resident set size (KB) = 1002044 +[0] The total amount of wall time = 315.063390 +[0] The maximum resident set size (KB) = 1001228 -Test 090 rap_sfcdiff_debug PASS +Test 091 rap_sfcdiff_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 091 rap_noah_sfcdiff_cires_ugwp_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 092 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 509.548287 -[0] The maximum resident set size (KB) = 1002096 +[0] The total amount of wall time = 510.514968 +[0] The maximum resident set size (KB) = 1001060 -Test 091 rap_noah_sfcdiff_cires_ugwp_debug PASS +Test 092 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1beta_debug -Checking test 092 rrfs_v1beta_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/rrfs_v1beta_debug +Checking test 093 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 304.952539 -[0] The maximum resident set size (KB) = 997056 +[0] The total amount of wall time = 305.385358 +[0] The maximum resident set size (KB) = 996380 -Test 092 rrfs_v1beta_debug PASS +Test 093 rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_wam_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_wam_debug -Checking test 093 control_wam_debug results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_wam_debug +Checking test 094 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -[0] The total amount of wall time = 322.862136 -[0] The maximum resident set size (KB) = 258392 +[0] The total amount of wall time = 322.255081 +[0] The maximum resident set size (KB) = 257180 + +Test 094 control_wam_debug PASS + -Test 093 control_wam_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_atm +Checking test 095 hafs_regional_atm results .... + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK + Comparing HURPRS.GrbF06 .........OK + +[0] The total amount of wall time = 285.180289 +[0] The maximum resident set size (KB) = 711480 -Test 094 hafs_regional_atm FAIL +Test 095 hafs_regional_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_atm_thompson_gfdlsf -Checking test 095 hafs_regional_atm_thompson_gfdlsf results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_atm_thompson_gfdlsf +Checking test 096 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 379.154242 -[0] The maximum resident set size (KB) = 1077680 +[0] The total amount of wall time = 368.041315 +[0] The maximum resident set size (KB) = 1070308 -Test 095 hafs_regional_atm_thompson_gfdlsf PASS +Test 096 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_atm_ocn -Checking test 096 hafs_regional_atm_ocn results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_atm_ocn +Checking test 097 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2681,15 +2774,15 @@ Checking test 096 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 = 430.611189 -[0] The maximum resident set size (KB) = 744520 +[0] The total amount of wall time = 426.253873 +[0] The maximum resident set size (KB) = 747512 -Test 096 hafs_regional_atm_ocn PASS +Test 097 hafs_regional_atm_ocn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_atm_wav -Checking test 097 hafs_regional_atm_wav results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_atm_wav +Checking test 098 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK @@ -2697,15 +2790,15 @@ Checking test 097 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 = 980.797020 -[0] The maximum resident set size (KB) = 778100 +[0] The total amount of wall time = 985.177281 +[0] The maximum resident set size (KB) = 778120 -Test 097 hafs_regional_atm_wav PASS +Test 098 hafs_regional_atm_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_atm_ocn_wav -Checking test 098 hafs_regional_atm_ocn_wav results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_atm_ocn_wav +Checking test 099 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK @@ -2715,29 +2808,29 @@ Checking test 098 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 = 1099.699116 -[0] The maximum resident set size (KB) = 791184 +[0] The total amount of wall time = 1091.984217 +[0] The maximum resident set size (KB) = 788000 -Test 098 hafs_regional_atm_ocn_wav PASS +Test 099 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_1nest_atm -Checking test 099 hafs_regional_1nest_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_1nest_atm +Checking test 100 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 = 417.263947 -[0] The maximum resident set size (KB) = 324736 +[0] The total amount of wall time = 418.968625 +[0] The maximum resident set size (KB) = 316608 -Test 099 hafs_regional_1nest_atm PASS +Test 100 hafs_regional_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_telescopic_2nests_atm -Checking test 100 hafs_regional_telescopic_2nests_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_telescopic_2nests_atm +Checking test 101 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2745,29 +2838,29 @@ Checking test 100 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 = 466.992329 -[0] The maximum resident set size (KB) = 331232 +[0] The total amount of wall time = 466.241952 +[0] The maximum resident set size (KB) = 321996 -Test 100 hafs_regional_telescopic_2nests_atm PASS +Test 101 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_global_1nest_atm -Checking test 101 hafs_global_1nest_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_global_1nest_atm +Checking test 102 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 = 187.862018 -[0] The maximum resident set size (KB) = 206088 +[0] The total amount of wall time = 188.390817 +[0] The maximum resident set size (KB) = 204360 -Test 101 hafs_global_1nest_atm PASS +Test 102 hafs_global_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_global_multiple_4nests_atm -Checking test 102 hafs_global_multiple_4nests_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_global_multiple_4nests_atm +Checking test 103 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2779,43 +2872,43 @@ Checking test 102 hafs_global_multiple_4nests_atm results .... Comparing atm.nest05.f006.nc .........OK Comparing sfc.nest05.f006.nc .........OK -[0] The total amount of wall time = 574.628260 -[0] The maximum resident set size (KB) = 251308 +[0] The total amount of wall time = 572.555945 +[0] The maximum resident set size (KB) = 251792 -Test 102 hafs_global_multiple_4nests_atm PASS +Test 103 hafs_global_multiple_4nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_specified_moving_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_specified_moving_1nest_atm -Checking test 103 hafs_regional_specified_moving_1nest_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_specified_moving_1nest_atm +Checking test 104 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 -[0] The total amount of wall time = 250.376879 -[0] The maximum resident set size (KB) = 326280 +[0] The total amount of wall time = 250.602268 +[0] The maximum resident set size (KB) = 323924 -Test 103 hafs_regional_specified_moving_1nest_atm PASS +Test 104 hafs_regional_specified_moving_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_storm_following_1nest_atm -Checking test 104 hafs_regional_storm_following_1nest_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_storm_following_1nest_atm +Checking test 105 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 = 241.243489 -[0] The maximum resident set size (KB) = 322476 +[0] The total amount of wall time = 237.048550 +[0] The maximum resident set size (KB) = 322484 -Test 104 hafs_regional_storm_following_1nest_atm PASS +Test 105 hafs_regional_storm_following_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm_ocn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_storm_following_1nest_atm_ocn -Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_storm_following_1nest_atm_ocn +Checking test 106 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2823,15 +2916,15 @@ Checking test 105 hafs_regional_storm_following_1nest_atm_ocn results .... Comparing archv.2020_238_18.a .........OK Comparing archs.2020_238_18.a .........OK -[0] The total amount of wall time = 272.861570 -[0] The maximum resident set size (KB) = 349504 +[0] The total amount of wall time = 269.799564 +[0] The maximum resident set size (KB) = 346028 -Test 105 hafs_regional_storm_following_1nest_atm_ocn PASS +Test 106 hafs_regional_storm_following_1nest_atm_ocn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_storm_following_1nest_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_storm_following_1nest_atm_ocn_wav -Checking test 106 hafs_regional_storm_following_1nest_atm_ocn_wav results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_storm_following_1nest_atm_ocn_wav +Checking test 107 hafs_regional_storm_following_1nest_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK @@ -2841,163 +2934,163 @@ Checking test 106 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 = 688.184412 -[0] The maximum resident set size (KB) = 417900 +[0] The total amount of wall time = 687.569431 +[0] The maximum resident set size (KB) = 412596 -Test 106 hafs_regional_storm_following_1nest_atm_ocn_wav PASS +Test 107 hafs_regional_storm_following_1nest_atm_ocn_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_global_storm_following_1nest_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_global_storm_following_1nest_atm -Checking test 107 hafs_global_storm_following_1nest_atm results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_global_storm_following_1nest_atm +Checking test 108 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 = 80.724801 -[0] The maximum resident set size (KB) = 225164 +[0] The total amount of wall time = 78.637339 +[0] The maximum resident set size (KB) = 222328 -Test 107 hafs_global_storm_following_1nest_atm PASS +Test 108 hafs_global_storm_following_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_docn -Checking test 108 hafs_regional_docn results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_docn +Checking test 109 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 = 424.775770 -[0] The maximum resident set size (KB) = 762160 +[0] The total amount of wall time = 423.951682 +[0] The maximum resident set size (KB) = 768004 -Test 108 hafs_regional_docn PASS +Test 109 hafs_regional_docn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_docn_oisst -Checking test 109 hafs_regional_docn_oisst results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_docn_oisst +Checking test 110 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 = 432.345237 -[0] The maximum resident set size (KB) = 739772 +[0] The total amount of wall time = 427.291962 +[0] The maximum resident set size (KB) = 740348 -Test 109 hafs_regional_docn_oisst PASS +Test 110 hafs_regional_docn_oisst PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_datm_cdeps -Checking test 110 hafs_regional_datm_cdeps results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/hafs_regional_datm_cdeps +Checking test 111 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 = 1090.234332 -[0] The maximum resident set size (KB) = 888392 +[0] The total amount of wall time = 1090.376249 +[0] The maximum resident set size (KB) = 888544 -Test 110 hafs_regional_datm_cdeps PASS +Test 111 hafs_regional_datm_cdeps PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_control_cfsr -Checking test 111 datm_cdeps_control_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_control_cfsr +Checking test 112 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 = 175.311549 -[0] The maximum resident set size (KB) = 725068 +[0] The total amount of wall time = 173.403793 +[0] The maximum resident set size (KB) = 727884 -Test 111 datm_cdeps_control_cfsr PASS +Test 112 datm_cdeps_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_restart_cfsr -Checking test 112 datm_cdeps_restart_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_restart_cfsr +Checking test 113 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 = 121.180201 -[0] The maximum resident set size (KB) = 744736 +[0] The total amount of wall time = 118.949052 +[0] The maximum resident set size (KB) = 726648 -Test 112 datm_cdeps_restart_cfsr PASS +Test 113 datm_cdeps_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_control_gefs -Checking test 113 datm_cdeps_control_gefs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_control_gefs +Checking test 114 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 172.179091 -[0] The maximum resident set size (KB) = 628000 +[0] The total amount of wall time = 169.590865 +[0] The maximum resident set size (KB) = 630080 -Test 113 datm_cdeps_control_gefs PASS +Test 114 datm_cdeps_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_iau_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_iau_gefs -Checking test 114 datm_cdeps_iau_gefs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_iau_gefs +Checking test 115 datm_cdeps_iau_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 171.428404 -[0] The maximum resident set size (KB) = 625588 +[0] The total amount of wall time = 168.593770 +[0] The maximum resident set size (KB) = 628648 -Test 114 datm_cdeps_iau_gefs PASS +Test 115 datm_cdeps_iau_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_stochy_gefs -Checking test 115 datm_cdeps_stochy_gefs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_stochy_gefs +Checking test 116 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 170.468271 -[0] The maximum resident set size (KB) = 624460 +[0] The total amount of wall time = 170.785644 +[0] The maximum resident set size (KB) = 628088 -Test 115 datm_cdeps_stochy_gefs PASS +Test 116 datm_cdeps_stochy_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_bulk_cfsr -Checking test 116 datm_cdeps_bulk_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_bulk_cfsr +Checking test 117 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 = 176.083018 -[0] The maximum resident set size (KB) = 725772 +[0] The total amount of wall time = 175.052758 +[0] The maximum resident set size (KB) = 728172 -Test 116 datm_cdeps_bulk_cfsr PASS +Test 117 datm_cdeps_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_bulk_gefs -Checking test 117 datm_cdeps_bulk_gefs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_bulk_gefs +Checking test 118 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 168.809330 -[0] The maximum resident set size (KB) = 625900 +[0] The total amount of wall time = 169.263143 +[0] The maximum resident set size (KB) = 628592 -Test 117 datm_cdeps_bulk_gefs PASS +Test 118 datm_cdeps_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_mx025_cfsr -Checking test 118 datm_cdeps_mx025_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_mx025_cfsr +Checking test 119 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 @@ -3005,15 +3098,15 @@ Checking test 118 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 = 346.946419 -[0] The maximum resident set size (KB) = 553708 +[0] The total amount of wall time = 359.881140 +[0] The maximum resident set size (KB) = 557956 -Test 118 datm_cdeps_mx025_cfsr PASS +Test 119 datm_cdeps_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_mx025_gefs -Checking test 119 datm_cdeps_mx025_gefs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_mx025_gefs +Checking test 120 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 @@ -3021,65 +3114,65 @@ Checking test 119 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 345.892088 -[0] The maximum resident set size (KB) = 519908 +[0] The total amount of wall time = 338.078711 +[0] The maximum resident set size (KB) = 544248 -Test 119 datm_cdeps_mx025_gefs PASS +Test 120 datm_cdeps_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_multiple_files_cfsr -Checking test 120 datm_cdeps_multiple_files_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_multiple_files_cfsr +Checking test 121 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 = 175.348529 -[0] The maximum resident set size (KB) = 724568 +[0] The total amount of wall time = 173.434680 +[0] The maximum resident set size (KB) = 728624 -Test 120 datm_cdeps_multiple_files_cfsr PASS +Test 121 datm_cdeps_multiple_files_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_3072x1536_cfsr -Checking test 121 datm_cdeps_3072x1536_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_3072x1536_cfsr +Checking test 122 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 = 250.747385 -[0] The maximum resident set size (KB) = 1837500 +[0] The total amount of wall time = 249.753163 +[0] The maximum resident set size (KB) = 1839832 -Test 121 datm_cdeps_3072x1536_cfsr PASS +Test 122 datm_cdeps_3072x1536_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_gfs -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_gfs -Checking test 122 datm_cdeps_gfs results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_gfs +Checking test 123 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 = 253.953650 -[0] The maximum resident set size (KB) = 1837172 +[0] The total amount of wall time = 251.059359 +[0] The maximum resident set size (KB) = 1838236 -Test 122 datm_cdeps_gfs PASS +Test 123 datm_cdeps_gfs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/datm_cdeps_debug_cfsr -Checking test 123 datm_cdeps_debug_cfsr results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/datm_cdeps_debug_cfsr +Checking test 124 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 = 500.306755 -[0] The maximum resident set size (KB) = 730376 +[0] The total amount of wall time = 501.934728 +[0] The maximum resident set size (KB) = 732652 -Test 123 datm_cdeps_debug_cfsr PASS +Test 124 datm_cdeps_debug_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_atmwav -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_atmwav -Checking test 124 control_atmwav results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/control_atmwav +Checking test 125 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK Comparing atmf000.nc .........OK @@ -3122,15 +3215,15 @@ Checking test 124 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 96.722457 -[0] The maximum resident set size (KB) = 473412 +[0] The total amount of wall time = 95.364775 +[0] The maximum resident set size (KB) = 475268 -Test 124 control_atmwav PASS +Test 125 control_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/atmaero_control_p8 -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/atmaero_control_p8 -Checking test 125 atmaero_control_p8 results .... +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_34107/atmaero_control_p8 +Checking test 126 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK @@ -3173,55 +3266,95 @@ Checking test 125 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 = 358.572683 -[0] The maximum resident set size (KB) = 1371980 +[0] The total amount of wall time = 357.975256 +[0] The maximum resident set size (KB) = 1371096 -Test 125 atmaero_control_p8 PASS +Test 126 atmaero_control_p8 PASS FAILED TESTS: -Test control_debug 064 failed in run_test failed -Test hafs_regional_atm 094 failed in run_test failed +Test cpld_control_noaero_p8_agrid 011 failed in check_result failed +Test cpld_control_noaero_p8_agrid 011 failed in run_test failed REGRESSION TEST FAILED -Sat Jun 4 03:47:02 UTC 2022 -Elapsed time: 01h:33m:20s. Have a nice day! - +Tue Jun 7 22:31:14 UTC 2022 +Elapsed time: 02h:25m:16s. Have a nice day! -Sat Jun 4 10:53:07 UTC 2022 +Wed Jun 8 12:04:47 UTC 2022 Start Regression test -Compile 001 elapsed time 472 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_csawmg,FV3_GFS_v16_flake,FV3_GFS_v16_ugwpv1,FV3_GFS_v16_ras,FV3_GFS_v16_noahmp,FV3_GFS_v16_thompson,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 002 elapsed time 1829 seconds. -DAPP=HAFSW -DMOVING_NEST=ON -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 1616 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_39075/control_debug -Checking test 001 control_debug results .... - Comparing sfcf000.nc .........OK - Comparing sfcf001.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK - -[0] The total amount of wall time = 166.886082 -[0] The maximum resident set size (KB) = 634096 - -Test 001 control_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_39075/hafs_regional_atm -Checking test 002 hafs_regional_atm results .... - Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........OK - Comparing HURPRS.GrbF06 .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_noaero_p8_agrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_356/cpld_control_noaero_p8_agrid +Checking test 001 cpld_control_noaero_p8_agrid results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.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 = 279.037556 -[0] The maximum resident set size (KB) = 716624 +[0] The total amount of wall time = 327.346872 +[0] The maximum resident set size (KB) = 989500 -Test 002 hafs_regional_atm PASS +Test 001 cpld_control_noaero_p8_agrid PASS REGRESSION TEST WAS SUCCESSFUL -Sat Jun 4 11:31:01 UTC 2022 -Elapsed time: 00h:37m:55s. Have a nice day! +Wed Jun 8 12:38:36 UTC 2022 +Elapsed time: 00h:33m:52s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index f562506f36..87232f2ff3 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -449,6 +449,7 @@ export CPLFLX=.false. export CPLICE=.false. export CPLWAV=.false. export CPLWAV2ATM=.false. +export USE_MED_FLUX=.false. export DAYS=1 export NPX=97 export NPY=97 @@ -753,6 +754,7 @@ export CPLICE=.true. export CPL=.true. export CPLWAV=.true. export CPLWAV2ATM=.true. +export USE_MED_FLUX=.false. export CPLCHM=.true. # for FV3: default values will be changed if doing a warm-warm restart diff --git a/tests/fv3_conf/cpld_control_run.IN b/tests/fv3_conf/cpld_control_run.IN index 39c9a13a3a..5334111ad4 100644 --- a/tests/fv3_conf/cpld_control_run.IN +++ b/tests/fv3_conf/cpld_control_run.IN @@ -102,6 +102,12 @@ else cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} . ls -1 ${RFILE}>rpointer.cpl + # CMEPS/CCPP restart file + if [[ $CPLMODE =~ 'nems_frac_aoflux' ]]; then + RFILE_CCPP=ufs.cpld.cpl.ccpp.${RESTART_FILE_SUFFIX_SECS}.nc + cp ../${DEP_RUN}${SUFFIX}/${RFILE_CCPP} . + fi + # CICE restart and pointer files RFILE=iced.${RESTART_FILE_SUFFIX_SECS}.nc cp ../${DEP_RUN}${SUFFIX}/RESTART/${RFILE} ./INPUT diff --git a/tests/parm/cpld_control.nml.IN b/tests/parm/cpld_control.nml.IN index 8fcd55c175..5f541cc2a3 100644 --- a/tests/parm/cpld_control.nml.IN +++ b/tests/parm/cpld_control.nml.IN @@ -222,6 +222,7 @@ deflate_level=1 rrtmgp_nBandsSW = 14 doGP_cldoptics_LUT = @[DOGP_CLDOPTICS_LUT] doGP_lwscat = @[DOGP_LWSCAT] + use_med_flux = @[USE_MED_FLUX] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] cplflx = @[CPLFLX] diff --git a/tests/parm/fd_nems.yaml b/tests/parm/fd_nems.yaml index 7a571e8f71..6ba57b23db 100644 --- a/tests/parm/fd_nems.yaml +++ b/tests/parm/fd_nems.yaml @@ -181,16 +181,40 @@ canonical_units: N m-2 description: atmosphere export - meridional component of momentum flux # + - standard_name: Faxx_evap + canonical_units: kg m-2 s-1 + description: atmosphere import + # - standard_name: Faxa_lat alias: mean_laten_heat_flx canonical_units: W m-2 description: atmosphere export - latent heat flux # + - standard_name: Faxx_lat + alias: mean_laten_heat_flx + canonical_units: W m-2 + description: atmosphere import + # - standard_name: Faxx_lwup alias: mean_up_lw_flx canonical_units: W m-2 description: atmosphere import - merged ocn/ice flux # + - standard_name: Faxx_sen + alias: mean_sensi_heat_flx + canonical_units: W m-2 + description: atmosphere import + # + - standard_name: Faxx_taux + alias: mean_zonal_moment_flx + canonical_units: N m-2 + description: atmosphere import - zonal component of momentum flux + # + - standard_name: Faxx_tauy + alias: mean_merid_moment_flx + canonical_units: N m-2 + description: atmosphere import - meridional component of momentum flux + # - standard_name: Sa_ofrac alias: openwater_frac_in_atm canonical_units: 1 @@ -625,6 +649,35 @@ description: mediator calculation - atm/ocn specific humidity flux # #----------------------------------- + # fields to use fluxes from mediator + #----------------------------------- + # + - standard_name: Faox_lat + alias: mean_laten_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface latent heat flux + # + - standard_name: Faox_sen + alias: mean_sensi_heat_flx_atm_into_ocn + canonical_units: W m-2 + description: mediator export - atm/ocn surface sensible heat flux + # + - standard_name: Faox_lwup + alias: mean_up_lw_flx_ocn + canonical_units: W m-2 + description: mediator export - long wave radiation flux over the ocean + # + - standard_name: Faox_taux + alias: stress_on_air_ocn_zonal + canonical_units: N m-2 + description: mediator export + # + - standard_name: Faox_tauy + alias: stress_on_air_ocn_merid + canonical_units: N m-2 + description: mediator export + # + #----------------------------------- # section: atmosphere fields that need to be defined but are not used #----------------------------------- # diff --git a/tests/parm/nems.configure.cpld_agrid.IN b/tests/parm/nems.configure.cpld_agrid.IN new file mode 100644 index 0000000000..ce6f772dbb --- /dev/null +++ b/tests/parm/nems.configure.cpld_agrid.IN @@ -0,0 +1,124 @@ +############################################# +#### NEMS Run-Time Configuration File ##### +############################################# + +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + +# EARTH # +EARTH_component_list: MED ATM OCN ICE +EARTH_attributes:: + Verbosity = 0 +:: + +# MED # +MED_model: @[med_model] +MED_petlist_bounds: @[med_petlist_bounds] +:: + +# ATM # +ATM_model: @[atm_model] +ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true +:: + +# OCN # +OCN_model: @[ocn_model] +OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ocn = @[MESHOCN_ICE] +:: + +# ICE # +ICE_model: @[ice_model] +ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_attributes:: + Verbosity = 0 + DumpFields = false + ProfileMemory = false + OverwriteSlice = true + mesh_ice = @[MESHOCN_ICE] + stop_n = @[RESTART_N] + stop_option = nhours + stop_ymd = -999 +:: + +# CMEPS warm run sequence +runSeq:: +@@[coupling_interval_slow_sec] + MED med_phases_prep_ocn_avg + MED -> OCN :remapMethod=redist + OCN + @@[coupling_interval_fast_sec] + MED med_phases_aofluxes_run + MED med_phases_prep_atm + MED med_phases_prep_ice + MED -> ATM :remapMethod=redist + MED -> ICE :remapMethod=redist + ATM + ICE + ATM -> MED :remapMethod=redist + MED med_phases_post_atm + ICE -> MED :remapMethod=redist + MED med_phases_post_ice + MED med_phases_prep_ocn_accum + @ + OCN -> MED :remapMethod=redist + MED med_phases_post_ocn + MED med_phases_restart_write + MED med_phases_history_write +@ +:: + +# CMEPS variables + +DRIVER_attributes:: +:: + +MED_attributes:: + ATM_model = @[atm_model] + ICE_model = @[ice_model] + OCN_model = @[ocn_model] + history_n = 1 + history_option = nhours + history_ymd = -999 + coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] + aoflux_grid = 'agrid' + aoflux_code = 'ccpp' + aoflux_ccpp_suite = 'FV3_sfc_ocean' + ccpp_restart_interval = @[RESTART_N_SEC] + ccpp_input_dir = 'INPUT/' + ccpp_nstf_name = @[NSTF_NAME] + ccpp_ini_mosaic_file = 'INPUT/C96_mosaic.nc' + ccpp_ini_file_prefix = 'INPUT/sfc_data.tile' + ccpp_ini_layout = @[INPES],@[JNPES] + ccpp_ini_read = false +:: +ALLCOMP_attributes:: + ScalarFieldCount = 2 + ScalarFieldIdxGridNX = 1 + ScalarFieldIdxGridNY = 2 + ScalarFieldName = cpl_scalars + start_type = @[RUNTYPE] + restart_dir = RESTART/ + case_name = ufs.cpld + restart_n = @[RESTART_N] + restart_option = nhours + restart_ymd = -999 + dbug_flag = @[cap_dbug_flag] + use_coldstart = @[use_coldstart] + use_mommesh = @[use_mommesh] + eps_imesh = @[eps_imesh] + stop_n = @[FHMAX] + stop_option = nhours + stop_ymd = -999 +:: diff --git a/tests/rt.conf b/tests/rt.conf index 6956c8ca85..e4777861c9 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -19,6 +19,10 @@ RUN | cpld_restart_bmark_p8 COMPILE | -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | - wcoss_cray wcoss2.intel | fv3 | RUN | cpld_debug_p8 | - wcoss_cray wcoss2.intel | fv3 | +# Waves and aerosol off for computing fluxes in mediator +COMPILE | -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_sfcocn -DCMEPS_AOFLUX=ON | - wcoss_cray | fv3 | +RUN | cpld_control_noaero_p8_agrid | - wcoss_cray | fv3 | + ################################################################################################################################################################################### # ATM tests # ################################################################################################################################################################################### diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid new file mode 100644 index 0000000000..f5b2bdeee8 --- /dev/null +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -0,0 +1,97 @@ +# +# cpld_control C96 noaero P8 test but receives atm-ocn fluxes from mediator +# + +export TEST_DESCR="Fully coupled FV3-CCPP-MOM6-CICE-CMEPS system - C96MX100" + +export CNTL_DIR="cpld_control_noaero_p8_agrid" + +export LIST_FILES="sfcf021.tile1.nc \ + sfcf021.tile2.nc \ + sfcf021.tile3.nc \ + sfcf021.tile4.nc \ + sfcf021.tile5.nc \ + sfcf021.tile6.nc \ + atmf021.tile1.nc \ + atmf021.tile2.nc \ + atmf021.tile3.nc \ + atmf021.tile4.nc \ + atmf021.tile5.nc \ + atmf021.tile6.nc \ + sfcf024.tile1.nc \ + sfcf024.tile2.nc \ + sfcf024.tile3.nc \ + sfcf024.tile4.nc \ + sfcf024.tile5.nc \ + sfcf024.tile6.nc \ + atmf024.tile1.nc \ + atmf024.tile2.nc \ + atmf024.tile3.nc \ + atmf024.tile4.nc \ + atmf024.tile5.nc \ + atmf024.tile6.nc \ + RESTART/coupler.res \ + RESTART/fv_core.res.nc \ + RESTART/fv_core.res.tile1.nc \ + RESTART/fv_core.res.tile2.nc \ + RESTART/fv_core.res.tile3.nc \ + RESTART/fv_core.res.tile4.nc \ + RESTART/fv_core.res.tile5.nc \ + RESTART/fv_core.res.tile6.nc \ + RESTART/fv_srf_wnd.res.tile1.nc \ + RESTART/fv_srf_wnd.res.tile2.nc \ + RESTART/fv_srf_wnd.res.tile3.nc \ + RESTART/fv_srf_wnd.res.tile4.nc \ + RESTART/fv_srf_wnd.res.tile5.nc \ + RESTART/fv_srf_wnd.res.tile6.nc \ + RESTART/fv_tracer.res.tile1.nc \ + RESTART/fv_tracer.res.tile2.nc \ + RESTART/fv_tracer.res.tile3.nc \ + RESTART/fv_tracer.res.tile4.nc \ + RESTART/fv_tracer.res.tile5.nc \ + RESTART/fv_tracer.res.tile6.nc \ + RESTART/phy_data.tile1.nc \ + RESTART/phy_data.tile2.nc \ + RESTART/phy_data.tile3.nc \ + RESTART/phy_data.tile4.nc \ + RESTART/phy_data.tile5.nc \ + RESTART/phy_data.tile6.nc \ + RESTART/sfc_data.tile1.nc \ + RESTART/sfc_data.tile2.nc \ + RESTART/sfc_data.tile3.nc \ + RESTART/sfc_data.tile4.nc \ + RESTART/sfc_data.tile5.nc \ + RESTART/sfc_data.tile6.nc \ + RESTART/MOM.res.nc \ + RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc" + +#TODO: add comparison of CA restart files? + +export_fv3 +export_cpl + +#OCN_tasks=$OCN_tasks_cpl_dflt +#ICE_tasks=$ICE_tasks_cpl_dflt +#WAV_tasks=$WAV_tasks_cpl_dflt + +export RESTART_N=12 +export RESTART_N_SEC=$((RESTART_N*3600)) +export RESTART_INTERVAL="${RESTART_N} -1" +export OUTPUT_FH='0 21 24' + +export CPLCHM=.false. +export CPLWAV=.false. +export CPLWAV2ATM=.false. +export CPLMODE=nems_frac_aoflux +export CCPP_SUITE="FV3_GFS_v17_coupled_p8_sfcocn" +export USE_MED_FLUX=.true. +export MOM6_USE_WAVES=False +export TOPOEDITS=ufs.topo_edits_011818.nc +export MOM6_ALLOW_LANDMASK_CHANGES=True +export eps_imesh=2.5e-1 + +export DIAG_TABLE=diag_table_template +export NEMS_CONFIGURE=nems.configure.cpld_agrid.IN + +export FV3_RUN=cpld_control_run.IN