From 4376018fb484033f2c1cf73c7993a0bd4489ada9 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Mon, 6 Jun 2022 10:13:07 -0400 Subject: [PATCH] Require specific package version in top-level CMakeLists.txt, rename EARTH_GRID_COMP to UFSDriver (#1239) * Require specific package version in top-level CMakeLists.txt * Rename EARTH_GRID_COMP to UFSDriver * Update s4 support (#31) * Updated S4 compiler versions #1223 * Single dt output (#30) --- CMakeLists.txt | 17 +- FV3 | 2 +- driver/UFS.F90 | 64 +- driver/{EARTH_GRID_COMP.F90 => UFSDriver.F90} | 63 +- modulefiles/ufs_s4.intel | 4 +- modulefiles/ufs_s4.intel_debug | 4 +- tests/RegressionTests_cheyenne.gnu.log | 248 ++--- tests/RegressionTests_cheyenne.intel.log | 786 ++++++++-------- tests/RegressionTests_gaea.intel.log | 776 ++++++++-------- tests/RegressionTests_hera.gnu.log | 248 ++--- tests/RegressionTests_hera.intel.log | 798 ++++++++-------- tests/RegressionTests_jet.intel.log | 751 ++++++++------- tests/RegressionTests_orion.intel.log | 794 ++++++++-------- tests/RegressionTests_wcoss2.intel.log | 626 ++++++------- tests/RegressionTests_wcoss_cray.log | 538 +++++------ tests/RegressionTests_wcoss_dell_p3.log | 872 +++++++++--------- tests/default_vars.sh | 18 +- 17 files changed, 3292 insertions(+), 3317 deletions(-) rename driver/{EARTH_GRID_COMP.F90 => UFSDriver.F90} (94%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5050a009e1..bab9487c8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -110,10 +110,11 @@ find_package(MPI REQUIRED) if(OPENMP) find_package(OpenMP REQUIRED) endif() -find_package(NetCDF REQUIRED C Fortran) -find_package(ESMF MODULE REQUIRED) + +find_package(NetCDF 4.7.4 REQUIRED C Fortran) +find_package(ESMF 8.3.0 MODULE REQUIRED) if(FMS) - find_package(FMS REQUIRED COMPONENTS R4 R8) + find_package(FMS 2022.01 REQUIRED COMPONENTS R4 R8) if(32BIT) add_library(fms ALIAS FMS::fms_r4) else() @@ -121,12 +122,12 @@ if(FMS) endif() endif() if(CMEPS) - find_package(PIO REQUIRED COMPONENTS C Fortran STATIC) + find_package(PIO 2.5.3 REQUIRED COMPONENTS C Fortran STATIC) endif() -find_package(bacio REQUIRED) -find_package(sp REQUIRED) -find_package(w3nco REQUIRED) +find_package(bacio 2.4.0 REQUIRED) +find_package(sp 2.3.3 REQUIRED) +find_package(w3nco 2.4.0 REQUIRED) # Configure Python find_package(Python 3.6 REQUIRED COMPONENTS Interpreter) @@ -208,7 +209,7 @@ endif() ############################################################################### ### UFS Library ############################################################################### -add_library(ufs driver/EARTH_GRID_COMP.F90) +add_library(ufs driver/UFSDriver.F90) set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs INTERFACE $ diff --git a/FV3 b/FV3 index 61f060f3c0..ca1d0c0d75 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit 61f060f3c09192c0c53e867a1b14edea83b872fd +Subproject commit ca1d0c0d751d97936369346bdbce4b95e3dda599 diff --git a/driver/UFS.F90 b/driver/UFS.F90 index 305c925545..a180578883 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -36,12 +36,12 @@ PROGRAM UFS USE ESMF ! !----------------------------------------------------------------------- -!*** USE the EARTH gridded component module. Although it +!*** USE the UFSDriver module. Although it !*** contains the calls to Register and the top level Initialize, !*** Run, and Finalize, only the Register routine is public. !----------------------------------------------------------------------- ! - USE module_EARTH_GRID_COMP + USE UFSDriver, only : UFSDriver_SS ! !----------------------------------------------------------------------- ! @@ -54,8 +54,9 @@ PROGRAM UFS INTEGER :: MYPE & !<-- The MPI task ID ,NSECONDS_FCST & !<-- Length of forecast in seconds ,YY,MM,DD & !<-- Time variables for date - ,HH,MNS,SEC & !<-- Time variables for time of day - ,fhrot + ,HH,MNS,SEC !<-- Time variables for time of day + + REAL(ESMF_KIND_R8) :: fhrot !< forecast hour at restart time ! REAL :: NHOURS_FCST !<-- Length of forecast in hours @@ -71,7 +72,7 @@ PROGRAM UFS ! the computer CPU resource ! for the ESMF grid components. ! - TYPE(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH gridded component. + TYPE(ESMF_GridComp) :: UFSDriverComp !<-- The UFS Driver gridded component. ! TYPE(ESMF_Clock) :: CLOCK_MAIN !<-- The ESMF time management clock ! @@ -158,33 +159,33 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Create the EARTH gridded component which will create and +!*** Create the UFS Driver gridded component which will create and !*** control the ATM (atmoshpere), OCN (ocean), ICE (sea ice), etc. !*** gridded components. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Create the EARTH Gridded Component" + MESSAGE_CHECK="Create the UFS Driver Gridded Component" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - EARTH_GRID_COMP=ESMF_GridCompCreate(name ='EARTH Grid Comp' & !<-- EARTH component name + UFSDriverComp=ESMF_GridCompCreate(name ='UFS Driver Grid Comp' & ,rc = RC) ESMF_ERR_ABORT(RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Register the EARTH gridded component's Initialize, Run and +!*** Register the UFS Driver gridded component's Initialize, Run and !*** Finalize routines. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Register EARTH Gridded Component Init, Run, Finalize" + MESSAGE_CHECK="Register UFS Driver Gridded Component Init, Run, Finalize" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompSetServices(EARTH_GRID_COMP & !<-- The EARTH component - ,EARTH_REGISTER & !<-- User's subroutineName + CALL ESMF_GridCompSetServices(UFSDriverComp & + ,UFSDriver_SS & ,rc=RC) ESMF_ERR_ABORT(RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ @@ -344,19 +345,18 @@ PROGRAM UFS !----------------------------------------------------------------------- !*** Adjust the currTime of the main clock: CLOCK_MAIN !*** if the fhrot is > 0 -!*** This will correctly set the EARTH clocks in case of +!*** This will correctly set the UFS Driver clocks in case of !*** Restart-From-History. !----------------------------------------------------------------------- - - CALL ESMF_ConfigGetAttribute(config = CF_MAIN & - ,value = fhrot & - ,label = 'fhrot:' & - ,default = 0 & + CALL ESMF_ConfigGetAttribute(config = CF_MAIN & + ,value = fhrot & + ,label = 'fhrot:' & + ,default = 0.0_ESMF_KIND_R8 & ,rc = RC) ESMF_ERR_ABORT(RC) if (fhrot > 0) then - CALL ESMF_TimeIntervalSet(restartOffset, h=fhrot, rc=RC) + CALL ESMF_TimeIntervalSet(restartOffset, h_r8=fhrot, rc=RC) ESMF_ERR_ABORT(RC) CURRTIME = STARTTIME + restartOffset call ESMF_ClockSet(CLOCK_MAIN, currTime=CURRTIME, & @@ -367,19 +367,19 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the INITIALIZE step for the EARTH component. +!*** Execute the INITIALIZE step for the UFS Driver component. !*** The Initialize routine that is called here as well as the !*** Run and Finalize routines invoked below are those specified !*** in the Register routine called in ESMF_GridCompSetServices above. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Initialize Step" + MESSAGE_CHECK="Execute the UFS Driver Component Initialize Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompInitialize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The ESMF clock + CALL ESMF_GridCompInitialize(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -387,16 +387,16 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the RUN step for the EARTH component. +!*** Execute the RUN step for the UFS Driver component. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Run Step" + MESSAGE_CHECK="Execute the UFS Driver Component Run Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompRun(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The ESMF clock + CALL ESMF_GridCompRun(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -404,16 +404,16 @@ PROGRAM UFS ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! !----------------------------------------------------------------------- -!*** Execute the FINALIZE step for the EARTH component. +!*** Execute the FINALIZE step for the UFS Driver component. !----------------------------------------------------------------------- ! ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ - MESSAGE_CHECK="Execute the EARTH Component Finalize Step" + MESSAGE_CHECK="Execute the UFS Driver Component Finalize Step" ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompFinalize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component - ,clock =CLOCK_MAIN & !<-- The Main ESMF clock + CALL ESMF_GridCompFinalize(gridcomp =UFSDriverComp & + ,clock =CLOCK_MAIN & ,userRc =RC_USER & ,rc =RC) ESMF_ERR_ABORT(RC) @@ -451,7 +451,7 @@ PROGRAM UFS ! CALL ESMF_LogWrite(MESSAGE_CHECK, ESMF_LOGMSG_INFO, rc = RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - CALL ESMF_GridCompDestroy(gridcomp=EARTH_GRID_COMP & + CALL ESMF_GridCompDestroy(gridcomp=UFSDriverComp & ,rc =RC) ESMF_ERR_ABORT(RC) diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/UFSDriver.F90 similarity index 94% rename from driver/EARTH_GRID_COMP.F90 rename to driver/UFSDriver.F90 index c6ca6b22f8..86c38f2579 100644 --- a/driver/EARTH_GRID_COMP.F90 +++ b/driver/UFSDriver.F90 @@ -1,13 +1,13 @@ !----------------------------------------------------------------------- ! - MODULE module_EARTH_GRID_COMP + MODULE UFSDriver ! !----------------------------------------------------------------------- -!*** This module contains codes directly related to the EARTH component. +!*** This module contains codes directly related to the UFS Driver component. !----------------------------------------------------------------------- ! !----------------------------------------------------------------------- -! 2010-03-24 Black - Created Earth component module. +! 2010-03-24 Black - Created UFS Driver component module. ! 2010-04 Yang - Added Ensemble capability. ! 2011-05-11 Theurich & Yang - Modified for using the ESMF 5.2.0r_beta_snapshot_07. ! 2011-10-04 Yang - Modified for using the ESMF 5.2.0r library. @@ -16,11 +16,11 @@ MODULE module_EARTH_GRID_COMP ! 2013-07 Theurich - Macro based ESMF error handling !----------------------------------------------------------------------- ! -!*** The EARTH component lies in the hierarchy seen here: +!*** The UFS Driver component lies in the hierarchy seen here: ! ! Main program ! | -! EARTH component +! UFS Driver component ! /|\ ! / | \ ! ATM/OCN/ICE/WAV/LND/IPM/HYD .. components @@ -103,8 +103,7 @@ MODULE module_EARTH_GRID_COMP ! private ! - public :: earth_register - public :: verbose_diagnostics + public :: UFSDriver_SS ! !----------------------------------------------------------------------- ! @@ -114,19 +113,7 @@ MODULE module_EARTH_GRID_COMP character(len=*),parameter :: u_FILE_u = & __FILE__ - CONTAINS - - logical function verbose_diagnostics(set) - !! Mutator for the verbose diagnostics flag; returns true if - !! verbose diagnostics should be used, and false otherwise. - !! If the "set" argument is present, then the flag is set to - !! the given value. - logical, optional :: set - if(present(set)) then - flag_verbose_diagnostics=set - endif - verbose_diagnostics=flag_verbose_diagnostics - end function verbose_diagnostics + contains logical function ChkErr(rc, line, file) integer, intent(in) :: rc !< return code to check @@ -144,7 +131,7 @@ end function ChkErr !####################################################################### !----------------------------------------------------------------------- ! - SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) + SUBROUTINE UFSDriver_SS(driver,RC) ! !----------------------------------------------------------------------- ! @@ -152,9 +139,9 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !*** Argument Variables !------------------------ ! - type(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH component + type(ESMF_GridComp) :: driver ! - integer,intent(out) :: rc !<-- Error return code + integer,intent(out) :: rc ! !--------------------- !*** Local Variables @@ -173,33 +160,33 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !----------------------------------------------------------------------- ! ! Derive from NUOPC_Driver - call NUOPC_CompDerive(EARTH_GRID_COMP, Driver_routine_SS, rc=RC) + call NUOPC_CompDerive(driver, Driver_routine_SS, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! specializations: - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetModelServices, specRoutine=SetModelServices, & rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetRunSequence, specRoutine=SetRunSequence, & rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return #ifndef JEDI_DRIVER - ! The NEMS Earth component is currently the top-level driver and + ! The UFS Driver component is currently the top-level driver and ! does not need to coordinate Clocks with its parent. - call ESMF_MethodRemove(EARTH_GRID_COMP, Driver_label_SetRunClock, rc=RC) + call ESMF_MethodRemove(driver, Driver_label_SetRunClock, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + call NUOPC_CompSpecialize(driver, & specLabel=Driver_label_SetRunClock, specRoutine=NUOPC_NoOp, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return #endif ! register an internal initialization method - call NUOPC_CompSetInternalEntryPoint(EARTH_GRID_COMP, ESMF_METHOD_INITIALIZE, & + call NUOPC_CompSetInternalEntryPoint(driver, ESMF_METHOD_INITIALIZE, & phaseLabelList=(/"IPDv04p2"/), userRoutine=ModifyCplLists, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -208,7 +195,7 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return call ESMF_ConfigLoadFile(config, "nems.configure", rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return - call ESMF_GridCompSet(EARTH_GRID_COMP, config=config, rc=RC) + call ESMF_GridCompSet(driver, config=config, rc=RC) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! Load the required entries from the fd_nems.yaml file @@ -217,7 +204,7 @@ SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) !----------------------------------------------------------------------- ! - END SUBROUTINE EARTH_REGISTER + END SUBROUTINE UFSDriver_SS ! !----------------------------------------------------------------------- !####################################################################### @@ -584,7 +571,7 @@ subroutine SetRunSequence(driver, rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return ! Diagnostic output - if(verbose_diagnostics()) then + if(flag_verbose_diagnostics) then call NUOPC_DriverPrint(driver, orderflag=.true., rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return endif @@ -673,7 +660,7 @@ subroutine ReadAttributes(gcomp, config, label, relaxedflag, formatprint, rc) ! local variables type(NUOPC_FreeFormat) :: attrFF - character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:ReadAttributes)" + character(len=*), parameter :: subname = "(UFSDriver.F90:ReadAttributes)" !------------------------------------------- rc = ESMF_SUCCESS @@ -720,7 +707,7 @@ subroutine InitRestart(driver, config, rc) logical :: read_restart ! read the restart file, based on start_type character(len=ESMF_MAXSTR) :: cvalue ! temporary character(len=ESMF_MAXSTR) :: attribute ! - character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:InitRestart)" + character(len=*) , parameter :: subname = "(UFSDriver.F90:InitRestart)" !------------------------------------------- rc = ESMF_SUCCESS @@ -764,7 +751,7 @@ function IsRestart(gcomp, config, rc) character(len=*) , parameter :: start_type_start = "startup" character(len=*) , parameter :: start_type_cont = "continue" character(len=*) , parameter :: start_type_brnch = "branch" - character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:IsRestart)" + character(len=*) , parameter :: subname = "(UFSDriver.F90:IsRestart)" !--------------------------------------- rc = ESMF_SUCCESS @@ -819,7 +806,7 @@ subroutine AddAttributes(gcomp, driver, config, compname, rc) character(len=32), allocatable :: compLabels(:) character(len=32), allocatable :: attrList(:) integer :: componentCount - character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:AddAttributes)" + character(len=*), parameter :: subname = "(UFSDriver.F90:AddAttributes)" logical :: lvalue = .false. !------------------------------------------- @@ -878,6 +865,6 @@ end subroutine AddAttributes ! !----------------------------------------------------------------------- ! - END MODULE module_EARTH_GRID_COMP + END MODULE UFSDriver ! !----------------------------------------------------------------------- diff --git a/modulefiles/ufs_s4.intel b/modulefiles/ufs_s4.intel index da621b4a13..95029242b8 100644 --- a/modulefiles/ufs_s4.intel +++ b/modulefiles/ufs_s4.intel @@ -9,8 +9,8 @@ module-whatis "loads UFS Model prerequisites for S4" module load license_intel/S4 module use /data/prod/hpc-stack/modulefiles/stack module load hpc/1.1.0 -module load hpc-intel/18.0.4 -module load hpc-impi/18.0.4 +module load hpc-intel/2022.1 +module load hpc-impi/2022.1 module load ufs_common diff --git a/modulefiles/ufs_s4.intel_debug b/modulefiles/ufs_s4.intel_debug index 2259e980a9..f5b9643d43 100644 --- a/modulefiles/ufs_s4.intel_debug +++ b/modulefiles/ufs_s4.intel_debug @@ -10,8 +10,8 @@ module-whatis "loads UFS Model prerequisites for S4" module load license_intel/S4 module use /data/prod/hpc-stack/modulefiles/stack module load hpc/1.1.0 -module load hpc-intel/18.0.4 -module load hpc-impi/18.0.4 +module load hpc-intel/2022.1 +module load hpc-impi/2022.1 module load ufs_common_debug diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index c9767509bf..cb5a2ca1c5 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,16 +1,16 @@ -Thu Jun 2 09:16:28 MDT 2022 +Fri Jun 3 16:46:28 MDT 2022 Start Regression test -Compile 001 elapsed time 400 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 419 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 835 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 211 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 550 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 324 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 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_71876/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.865285 -0:The maximum resident set size (KB) = 433460 +0:The total amount of wall time = 274.818645 +0:The maximum resident set size (KB) = 433520 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_71876/control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 138.647412 -0:The maximum resident set size (KB) = 183160 +0:The total amount of wall time = 137.600503 +0:The maximum resident set size (KB) = 183524 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_71876/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 816.761026 -0:The maximum resident set size (KB) = 676640 +0:The total amount of wall time = 817.831961 +0:The maximum resident set size (KB) = 676212 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_71876/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 174.862468 -0:The maximum resident set size (KB) = 427812 +0:The total amount of wall time = 175.906823 +0:The maximum resident set size (KB) = 427796 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_71876/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 340.218410 -0:The maximum resident set size (KB) = 485932 +0:The total amount of wall time = 338.420263 +0:The maximum resident set size (KB) = 485756 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_71876/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 375.672362 -0:The maximum resident set size (KB) = 796060 +0:The total amount of wall time = 378.060280 +0:The maximum resident set size (KB) = 796052 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_71876/control_thompson_no_aero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 356.050357 -0:The maximum resident set size (KB) = 789896 +0:The total amount of wall time = 359.488253 +0:The maximum resident set size (KB) = 789952 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_71876/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 289.143647 -0:The maximum resident set size (KB) = 446268 +0:The total amount of wall time = 291.227220 +0:The maximum resident set size (KB) = 446392 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_71876/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 319.057684 -0:The maximum resident set size (KB) = 818656 +0:The total amount of wall time = 323.660018 +0:The maximum resident set size (KB) = 818624 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_71876/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 705.368491 -0:The maximum resident set size (KB) = 774916 +0:The total amount of wall time = 704.627777 +0:The maximum resident set size (KB) = 774908 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_71876/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 1235.091742 -0:The maximum resident set size (KB) = 842908 +0:The total amount of wall time = 1242.506099 +0:The maximum resident set size (KB) = 843108 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_71876/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 350.853914 -0:The maximum resident set size (KB) = 522792 +0:The total amount of wall time = 352.143954 +0:The maximum resident set size (KB) = 522952 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_71876/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 706.524329 -0:The maximum resident set size (KB) = 774720 +0:The total amount of wall time = 707.302121 +0:The maximum resident set size (KB) = 774752 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_71876/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.268661 -0:The maximum resident set size (KB) = 522728 +0:The total amount of wall time = 353.647174 +0:The maximum resident set size (KB) = 523324 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_71876/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 681.921627 -0:The maximum resident set size (KB) = 772316 +0:The total amount of wall time = 683.664537 +0:The maximum resident set size (KB) = 772240 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_71876/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 693.563337 -0:The maximum resident set size (KB) = 771944 +0:The total amount of wall time = 698.214150 +0:The maximum resident set size (KB) = 771892 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_71876/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 314.748369 -0:The maximum resident set size (KB) = 593284 +0:The total amount of wall time = 320.471021 +0:The maximum resident set size (KB) = 593380 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_71876/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 319.681448 -0:The maximum resident set size (KB) = 596132 +0:The total amount of wall time = 321.575719 +0:The maximum resident set size (KB) = 596036 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_71876/rrfs_smoke_conus13km_hrrr_warm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 342.115359 -0:The maximum resident set size (KB) = 607508 +0:The total amount of wall time = 347.505261 +0:The maximum resident set size (KB) = 607320 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_71876/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.060907 -0:The maximum resident set size (KB) = 424852 +0:The total amount of wall time = 81.249799 +0:The maximum resident set size (KB) = 424896 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_71876/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.707910 -0:The maximum resident set size (KB) = 482104 +0:The total amount of wall time = 87.430705 +0:The maximum resident set size (KB) = 482144 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_71876/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 136.030436 -0:The maximum resident set size (KB) = 536600 +0:The total amount of wall time = 134.107634 +0:The maximum resident set size (KB) = 536580 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_71876/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.294837 -0:The maximum resident set size (KB) = 797264 +0:The total amount of wall time = 149.896923 +0:The maximum resident set size (KB) = 796928 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_71876/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 156.013192 -0:The maximum resident set size (KB) = 879868 +0:The total amount of wall time = 158.833827 +0:The maximum resident set size (KB) = 879848 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_71876/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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.335658 -0:The maximum resident set size (KB) = 795520 +0:The total amount of wall time = 237.904162 +0:The maximum resident set size (KB) = 795512 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_71876/rap_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 147.312917 -0:The maximum resident set size (KB) = 797308 +0:The total amount of wall time = 148.843237 +0:The maximum resident set size (KB) = 796956 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_71876/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 145.824995 -0:The maximum resident set size (KB) = 791312 +0:The total amount of wall time = 150.399689 +0:The maximum resident set size (KB) = 791252 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_71876/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 95.767222 -0:The maximum resident set size (KB) = 782652 +0:The total amount of wall time = 96.054580 +0:The maximum resident set size (KB) = 782636 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_71876/control_thompson_no_aero_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 92.731457 -0:The maximum resident set size (KB) = 778004 +0:The total amount of wall time = 94.241901 +0:The maximum resident set size (KB) = 778408 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_71876/control_thompson_extdiag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 102.502767 -0:The maximum resident set size (KB) = 824036 +0:The total amount of wall time = 104.534037 +0:The maximum resident set size (KB) = 824396 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_71876/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 98.418089 -0:The maximum resident set size (KB) = 783048 +0:The total amount of wall time = 97.075761 +0:The maximum resident set size (KB) = 783064 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_71876/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 85.853400 -0:The maximum resident set size (KB) = 434712 +0:The total amount of wall time = 84.097378 +0:The maximum resident set size (KB) = 434724 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_71876/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 95.264762 -0:The maximum resident set size (KB) = 428876 +0:The total amount of wall time = 92.567232 +0:The maximum resident set size (KB) = 428868 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_71876/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 93.521993 -0:The maximum resident set size (KB) = 809328 +0:The total amount of wall time = 94.803461 +0:The maximum resident set size (KB) = 809356 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_71876/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 143.502926 -0:The maximum resident set size (KB) = 171820 +0:The total amount of wall time = 145.093572 +0:The maximum resident set size (KB) = 171804 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_71876/cpld_control_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 535.898656 -0:The maximum resident set size (KB) = 794684 +0:The total amount of wall time = 540.672542 +0:The maximum resident set size (KB) = 795804 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_71876/cpld_debug_noaero_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 206.221861 -0:The maximum resident set size (KB) = 812796 +0:The total amount of wall time = 214.384593 +0:The maximum resident set size (KB) = 811240 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_71876/datm_cdeps_control_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_5378/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 = 166.664511 -0:The maximum resident set size (KB) = 644220 +0:The total amount of wall time = 174.178359 +0:The maximum resident set size (KB) = 643316 Test 038 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 09:47:44 MDT 2022 -Elapsed time: 00h:31m:17s. Have a nice day! +Fri Jun 3 17:21:42 MDT 2022 +Elapsed time: 00h:35m:15s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index a2a7b1967e..825f8c6771 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,25 +1,25 @@ -Thu Jun 2 09:01:29 MDT 2022 +Fri Jun 3 16:31:34 MDT 2022 Start Regression test -Compile 001 elapsed time 1156 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 451 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 707 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 768 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 747 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 583 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 361 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 311 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 320 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 282 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 894 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 857 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 421 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 210 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 764 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 615 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 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_59298/cpld_control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,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.439457 -0:The maximum resident set size (KB) = 4406944 +0:The total amount of wall time = 374.230743 +0:The maximum resident set size (KB) = 4407120 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_59298/cpld_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +144,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 = 226.369621 -0:The maximum resident set size (KB) = 4365352 +0:The total amount of wall time = 227.142715 +0:The maximum resident set size (KB) = 4365824 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_59298/cpld_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +204,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 = 649.687520 -0:The maximum resident set size (KB) = 4812024 +0:The total amount of wall time = 656.797403 +0:The maximum resident set size (KB) = 4812152 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_59298/cpld_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +264,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 = 373.692811 -0:The maximum resident set size (KB) = 4394852 +0:The total amount of wall time = 379.552483 +0:The maximum resident set size (KB) = 4395132 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_59298/cpld_mpi_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +324,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 = 339.872363 -0:The maximum resident set size (KB) = 4279416 +0:The total amount of wall time = 342.492523 +0:The maximum resident set size (KB) = 4279236 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_59298/cpld_control_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +384,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 = 1451.141972 -0:The maximum resident set size (KB) = 4741324 +0:The total amount of wall time = 1438.389864 +0:The maximum resident set size (KB) = 4741292 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_59298/cpld_restart_c192_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +444,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 = 798.351230 -0:The maximum resident set size (KB) = 4708424 +0:The total amount of wall time = 862.824702 +0:The maximum resident set size (KB) = 4708504 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_59298/cpld_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +497,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 = 1616.229618 -0:The maximum resident set size (KB) = 5052520 +0:The total amount of wall time = 1490.466708 +0:The maximum resident set size (KB) = 5055136 Test 008 cpld_bmark_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_59298/cpld_restart_bmark_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +550,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 = 1087.056562 -0:The maximum resident set size (KB) = 5020440 +0:The total amount of wall time = 1152.498375 +0:The maximum resident set size (KB) = 5019812 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_59298/cpld_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,14 +610,14 @@ 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 = 535.570964 -0:The maximum resident set size (KB) = 4495484 +0:The total amount of wall time = 545.255333 +0:The maximum resident set size (KB) = 4494828 Test 010 cpld_debug_p8 PASS baseline dir = /glade/scratch/epicufsrt/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /glade/scratch/epicufsrt/FV3_RT/rt_59298/control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -664,14 +664,14 @@ 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 = 139.787115 -0:The maximum resident set size (KB) = 453140 +0:The total amount of wall time = 140.721400 +0:The maximum resident set size (KB) = 452616 Test 011 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_59298/control_decomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -714,28 +714,28 @@ 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 = 143.675489 -0:The maximum resident set size (KB) = 450996 +0:The total amount of wall time = 146.878613 +0:The maximum resident set size (KB) = 450552 Test 012 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_59298/control_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2dwrtdecomp Checking test 013 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 = 135.703810 -0:The maximum resident set size (KB) = 453180 +0:The total amount of wall time = 133.744273 +0:The maximum resident set size (KB) = 453312 Test 013 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_59298/control_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -778,14 +778,14 @@ 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 = 362.068675 -0:The maximum resident set size (KB) = 500232 +0:The total amount of wall time = 360.839301 +0:The maximum resident set size (KB) = 499988 Test 014 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_59298/control_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -824,14 +824,14 @@ 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.487956 -0:The maximum resident set size (KB) = 193676 +0:The total amount of wall time = 73.874397 +0:The maximum resident set size (KB) = 193548 Test 015 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_59298/control_fhzero +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -874,14 +874,14 @@ 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 = 133.191302 -0:The maximum resident set size (KB) = 452664 +0:The total amount of wall time = 132.647682 +0:The maximum resident set size (KB) = 452772 Test 016 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_59298/control_CubedSphereGrid +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -908,14 +908,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 134.587732 -0:The maximum resident set size (KB) = 452604 +0:The total amount of wall time = 137.073648 +0:The maximum resident set size (KB) = 452580 Test 017 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_59298/control_latlon +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -926,32 +926,32 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 137.849966 -0:The maximum resident set size (KB) = 452900 +0:The total amount of wall time = 138.955596 +0:The maximum resident set size (KB) = 452872 Test 018 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_59298/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 .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 140.337603 -0:The maximum resident set size (KB) = 452696 +0:The total amount of wall time = 143.075972 +0:The maximum resident set size (KB) = 452684 Test 019 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_59298/control_c48 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,14 +990,14 @@ 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 = 430.007323 -0:The maximum resident set size (KB) = 627592 +0:The total amount of wall time = 427.784699 +0:The maximum resident set size (KB) = 627564 Test 020 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_59298/control_c192 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 570.939957 -0:The maximum resident set size (KB) = 557768 +0:The total amount of wall time = 569.992624 +0:The maximum resident set size (KB) = 557880 Test 021 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_59298/control_c384 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1026,14 +1026,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1231.586247 -0:The maximum resident set size (KB) = 834308 +0:The total amount of wall time = 1239.988267 +0:The maximum resident set size (KB) = 834040 Test 022 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_59298/control_c384gdas +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1076,14 +1076,14 @@ 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 = 1312.875623 -0:The maximum resident set size (KB) = 970180 +0:The total amount of wall time = 1320.827052 +0:The maximum resident set size (KB) = 970748 Test 023 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_59298/control_c384_progsigma +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_c384_progsigma Checking test 024 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1094,14 +1094,14 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1259.692974 -0:The maximum resident set size (KB) = 854556 +0:The total amount of wall time = 1282.733468 +0:The maximum resident set size (KB) = 854700 Test 024 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_59298/control_stochy +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1112,28 +1112,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 90.884171 -0:The maximum resident set size (KB) = 455036 +0:The total amount of wall time = 92.839139 +0:The maximum resident set size (KB) = 454960 Test 025 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_59298/control_stochy_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 48.711048 -0:The maximum resident set size (KB) = 225856 +0:The total amount of wall time = 48.525794 +0:The maximum resident set size (KB) = 225792 Test 026 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_59298/control_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 83.683085 -0:The maximum resident set size (KB) = 455428 +0:The total amount of wall time = 84.391642 +0:The maximum resident set size (KB) = 455576 Test 027 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_59298/control_iovr4 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1166,14 +1166,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 139.727890 -0:The maximum resident set size (KB) = 452780 +0:The total amount of wall time = 140.808168 +0:The maximum resident set size (KB) = 452588 Test 028 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_59298/control_iovr5 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 140.356912 -0:The maximum resident set size (KB) = 452644 +0:The total amount of wall time = 141.372329 +0:The maximum resident set size (KB) = 452608 Test 029 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_59298/control_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 183.208573 -0:The maximum resident set size (KB) = 849940 +0:The total amount of wall time = 183.744846 +0:The maximum resident set size (KB) = 849880 Test 030 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_59298/control_p8_lndp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -0:The total amount of wall time = 340.182711 -0:The maximum resident set size (KB) = 850116 +0:The total amount of wall time = 347.949638 +0:The maximum resident set size (KB) = 850112 Test 031 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_59298/control_restart_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1314,14 +1314,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 99.361675 -0:The maximum resident set size (KB) = 579352 +0:The total amount of wall time = 99.585829 +0:The maximum resident set size (KB) = 579320 Test 032 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_59298/control_decomp_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,14 +1364,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 187.978577 -0:The maximum resident set size (KB) = 841984 +0:The total amount of wall time = 188.359310 +0:The maximum resident set size (KB) = 842012 Test 033 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_59298/control_2threads_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 502.547411 -0:The maximum resident set size (KB) = 919108 +0:The total amount of wall time = 496.646922 +0:The maximum resident set size (KB) = 919056 Test 034 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_59298/control_p8_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1468,14 +1468,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 239.372076 -0:The maximum resident set size (KB) = 965508 +0:The total amount of wall time = 246.021944 +0:The maximum resident set size (KB) = 965440 Test 035 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_59298/regional_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,42 +1486,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 362.618844 -0:The maximum resident set size (KB) = 564364 +0:The total amount of wall time = 362.872014 +0:The maximum resident set size (KB) = 564700 Test 036 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_59298/regional_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_restart Checking test 037 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.004714 -0:The maximum resident set size (KB) = 558512 +0:The total amount of wall time = 198.900775 +0:The maximum resident set size (KB) = 558272 Test 037 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_59298/regional_control_2dwrtdecomp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_control_2dwrtdecomp Checking test 038 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 = 360.545537 -0:The maximum resident set size (KB) = 563584 +0:The total amount of wall time = 352.889457 +0:The maximum resident set size (KB) = 563444 Test 038 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_59298/regional_noquilt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 384.250843 -0:The maximum resident set size (KB) = 559616 +0:The total amount of wall time = 386.977899 +0:The maximum resident set size (KB) = 559780 Test 039 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_59298/regional_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1547,28 +1547,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 1171.785360 -0:The maximum resident set size (KB) = 557832 +0:The total amount of wall time = 1173.009142 +0:The maximum resident set size (KB) = 557480 Test 040 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_59298/regional_netcdf_parallel +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK - Comparing dynf024.nc .........OK + Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -0:The total amount of wall time = 360.060254 -0:The maximum resident set size (KB) = 554776 +0:The total amount of wall time = 361.831231 +0:The maximum resident set size (KB) = 554584 Test 041 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_59298/regional_3km +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/regional_3km Checking test 042 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -0:The total amount of wall time = 297.803565 -0:The maximum resident set size (KB) = 594612 +0:The total amount of wall time = 298.745369 +0:The maximum resident set size (KB) = 594992 Test 042 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_59298/rap_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1633,14 +1633,14 @@ 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 = 457.794471 -0:The maximum resident set size (KB) = 821696 +0:The total amount of wall time = 460.851949 +0:The maximum resident set size (KB) = 821476 Test 043 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_59298/rap_rrtmgp +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_rrtmgp Checking test 044 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1687,14 +1687,14 @@ 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 = 520.246792 -0:The maximum resident set size (KB) = 948388 +0:The total amount of wall time = 526.794528 +0:The maximum resident set size (KB) = 948444 Test 044 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_59298/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -0:The total amount of wall time = 702.438257 -0:The maximum resident set size (KB) = 931220 +0:The total amount of wall time = 701.257030 +0:The maximum resident set size (KB) = 931020 Test 045 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_59298/rap_2threads +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1759,14 +1759,14 @@ 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 = 1098.565272 -0:The maximum resident set size (KB) = 880020 +0:The total amount of wall time = 1093.155334 +0:The maximum resident set size (KB) = 879880 Test 046 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_59298/rap_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1805,14 +1805,14 @@ 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 = 231.374417 -0:The maximum resident set size (KB) = 566580 +0:The total amount of wall time = 233.966155 +0:The maximum resident set size (KB) = 566544 Test 047 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_59298/rap_sfcdiff +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1859,14 +1859,14 @@ 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 = 461.422199 -0:The maximum resident set size (KB) = 821468 +0:The total amount of wall time = 464.643772 +0:The maximum resident set size (KB) = 821372 Test 048 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_59298/rap_sfcdiff_restart +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1905,14 +1905,14 @@ 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.657220 -0:The maximum resident set size (KB) = 566336 +0:The total amount of wall time = 230.865948 +0:The maximum resident set size (KB) = 566380 Test 049 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_59298/hrrr_control +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1959,14 +1959,14 @@ 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 = 438.058281 -0:The maximum resident set size (KB) = 822064 +0:The total amount of wall time = 440.455481 +0:The maximum resident set size (KB) = 822032 Test 050 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_59298/rrfs_v1beta +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2013,14 +2013,14 @@ 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 = 449.033039 -0:The maximum resident set size (KB) = 816976 +0:The total amount of wall time = 448.481205 +0:The maximum resident set size (KB) = 817100 Test 051 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_59298/rrfs_v1nssl +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 552.738530 +0:The total amount of wall time = 554.399303 0:The maximum resident set size (KB) = 506432 Test 052 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_59298/rrfs_v1nssl_nohailnoccn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 529.505751 -0:The maximum resident set size (KB) = 502300 +0:The total amount of wall time = 535.667714 +0:The maximum resident set size (KB) = 502376 Test 053 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 193.290115 -0:The maximum resident set size (KB) = 638252 +0:The total amount of wall time = 197.252727 +0:The maximum resident set size (KB) = 638256 Test 054 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 194.079698 -0:The maximum resident set size (KB) = 640416 +0:The total amount of wall time = 196.057911 +0:The maximum resident set size (KB) = 640488 Test 055 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2105,14 +2105,14 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -0:The total amount of wall time = 214.185582 -0:The maximum resident set size (KB) = 653140 +0:The total amount of wall time = 216.282541 +0:The maximum resident set size (KB) = 653412 Test 056 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_59298/control_csawmg +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmg Checking test 057 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 369.147508 -0:The maximum resident set size (KB) = 530148 +0:The total amount of wall time = 390.594005 +0:The maximum resident set size (KB) = 530092 Test 057 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_59298/control_csawmgt +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_csawmgt Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 381.834516 -0:The maximum resident set size (KB) = 529932 +0:The total amount of wall time = 389.437794 +0:The maximum resident set size (KB) = 529968 Test 058 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_59298/control_flake +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_flake Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2159,14 +2159,14 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 250.136784 -0:The maximum resident set size (KB) = 525312 +0:The total amount of wall time = 250.993042 +0:The maximum resident set size (KB) = 525752 Test 059 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_59298/control_ras +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_ras Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 195.607910 -0:The maximum resident set size (KB) = 487848 +0:The total amount of wall time = 197.772128 +0:The maximum resident set size (KB) = 487780 Test 060 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_59298/control_thompson +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_thompson Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 267.468531 -0:The maximum resident set size (KB) = 836644 +0:The total amount of wall time = 258.036297 +0:The maximum resident set size (KB) = 836612 Test 061 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2213,54 +2213,54 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 252.410946 -0:The maximum resident set size (KB) = 832480 +0:The total amount of wall time = 253.013632 +0:The maximum resident set size (KB) = 832380 -Test 062 control_thompson_no_aero PASS Tries: 2 +Test 062 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_59298/control_wam +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_wam Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 120.480310 -0:The maximum resident set size (KB) = 204600 +0:The total amount of wall time = 121.202672 +0:The maximum resident set size (KB) = 204100 Test 063 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_59298/control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 159.865229 -0:The maximum resident set size (KB) = 620248 +0:The total amount of wall time = 157.207037 +0:The maximum resident set size (KB) = 620236 Test 064 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_59298/control_2threads_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 276.951538 -0:The maximum resident set size (KB) = 665712 +0:The total amount of wall time = 279.082859 +0:The maximum resident set size (KB) = 665788 Test 065 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_59298/control_CubedSphereGrid_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_CubedSphereGrid_debug Checking test 066 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2287,415 +2287,415 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 175.283397 -0:The maximum resident set size (KB) = 620280 +0:The total amount of wall time = 171.199977 +0:The maximum resident set size (KB) = 620296 Test 066 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.531325 -0:The maximum resident set size (KB) = 620292 +0:The total amount of wall time = 160.622793 +0:The maximum resident set size (KB) = 620120 Test 067 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_59298/control_stochy_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 181.802492 -0:The maximum resident set size (KB) = 625720 +0:The total amount of wall time = 180.695408 +0:The maximum resident set size (KB) = 625784 Test 068 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_59298/control_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 163.877340 -0:The maximum resident set size (KB) = 626352 +0:The total amount of wall time = 161.879769 +0:The maximum resident set size (KB) = 626504 Test 069 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_59298/control_csawmg_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 256.545177 -0:The maximum resident set size (KB) = 671008 +0:The total amount of wall time = 252.788991 +0:The maximum resident set size (KB) = 671156 Test 070 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_59298/control_csawmgt_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 251.446582 -0:The maximum resident set size (KB) = 671292 +0:The total amount of wall time = 249.335221 +0:The maximum resident set size (KB) = 671400 Test 071 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_59298/control_ras_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 165.426550 -0:The maximum resident set size (KB) = 634148 +0:The total amount of wall time = 164.278283 +0:The maximum resident set size (KB) = 634288 Test 072 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_59298/control_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 167.339650 -0:The maximum resident set size (KB) = 677928 +0:The total amount of wall time = 166.494444 +0:The maximum resident set size (KB) = 677684 Test 073 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_59298/control_debug_p8 +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 179.481023 -0:The maximum resident set size (KB) = 1017980 +0:The total amount of wall time = 179.017059 +0:The maximum resident set size (KB) = 1018416 Test 074 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_59298/control_thompson_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 189.335535 -0:The maximum resident set size (KB) = 979776 +0:The total amount of wall time = 188.454393 +0:The maximum resident set size (KB) = 979732 Test 075 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 185.237551 -0:The maximum resident set size (KB) = 977596 +0:The total amount of wall time = 178.972134 +0:The maximum resident set size (KB) = 977628 Test 076 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_59298/control_thompson_extdiag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 195.316557 -0:The maximum resident set size (KB) = 1008356 +0:The total amount of wall time = 196.750327 +0:The maximum resident set size (KB) = 1008464 Test 077 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 187.019607 -0:The maximum resident set size (KB) = 979688 +0:The total amount of wall time = 186.206142 +0:The maximum resident set size (KB) = 979852 Test 078 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_59298/regional_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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.273242 -0:The maximum resident set size (KB) = 588800 +0:The total amount of wall time = 259.246408 +0:The maximum resident set size (KB) = 588628 Test 079 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_59298/rap_control_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 289.050847 -0:The maximum resident set size (KB) = 986892 +0:The total amount of wall time = 287.387549 +0:The maximum resident set size (KB) = 986852 Test 080 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_59298/rap_unified_drag_suite_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 294.446297 -0:The maximum resident set size (KB) = 986980 +0:The total amount of wall time = 287.862191 +0:The maximum resident set size (KB) = 986944 Test 081 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_59298/rap_diag_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 301.930129 -0:The maximum resident set size (KB) = 1071148 +0:The total amount of wall time = 301.267021 +0:The maximum resident set size (KB) = 1071008 Test 082 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 295.810468 -0:The maximum resident set size (KB) = 987948 +0:The total amount of wall time = 292.429400 +0:The maximum resident set size (KB) = 987776 Test 083 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_59298/rap_unified_ugwp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 296.543454 -0:The maximum resident set size (KB) = 987036 +0:The total amount of wall time = 293.983909 +0:The maximum resident set size (KB) = 987040 Test 084 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_59298/rap_lndp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 292.042111 -0:The maximum resident set size (KB) = 989524 +0:The total amount of wall time = 289.491010 +0:The maximum resident set size (KB) = 989228 Test 085 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_59298/rap_flake_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 286.814880 -0:The maximum resident set size (KB) = 986968 +0:The total amount of wall time = 286.538993 +0:The maximum resident set size (KB) = 986992 Test 086 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.789219 -0:The maximum resident set size (KB) = 986880 +0:The total amount of wall time = 286.644028 +0:The maximum resident set size (KB) = 986756 Test 087 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_59298/rap_noah_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 286.996718 -0:The maximum resident set size (KB) = 986052 +0:The total amount of wall time = 283.508653 +0:The maximum resident set size (KB) = 986112 Test 088 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_59298/rap_rrtmgp_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 488.585089 -0:The maximum resident set size (KB) = 1117308 +0:The total amount of wall time = 485.438769 +0:The maximum resident set size (KB) = 1117340 Test 089 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_59298/rap_sfcdiff_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 288.363468 +0:The total amount of wall time = 287.418302 0:The maximum resident set size (KB) = 987816 Test 090 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_59298/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 472.731630 -0:The maximum resident set size (KB) = 986592 +0:The total amount of wall time = 472.814775 +0:The maximum resident set size (KB) = 986424 Test 091 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_59298/rrfs_v1beta_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 285.383737 -0:The maximum resident set size (KB) = 983192 +0:The total amount of wall time = 285.375228 +0:The maximum resident set size (KB) = 983256 Test 092 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_59298/control_wam_debug +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 297.495016 -0:The maximum resident set size (KB) = 237852 +0:The total amount of wall time = 295.050919 +0:The maximum resident set size (KB) = 237756 Test 093 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_59298/hafs_regional_atm +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 633.815551 -0:The maximum resident set size (KB) = 688112 +0:The total amount of wall time = 636.976581 +0:The maximum resident set size (KB) = 687900 Test 094 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 687.630789 -0:The maximum resident set size (KB) = 1053356 +0:The total amount of wall time = 696.020491 +0:The maximum resident set size (KB) = 1054092 Test 095 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2704,14 +2704,14 @@ 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 = 465.252638 -0:The maximum resident set size (KB) = 722256 +0:The total amount of wall time = 460.351617 +0:The maximum resident set size (KB) = 722544 Test 096 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2720,14 +2720,14 @@ 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 = 1068.754893 -0:The maximum resident set size (KB) = 747540 +0:The total amount of wall time = 1022.764411 +0:The maximum resident set size (KB) = 747668 Test 097 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2738,28 +2738,28 @@ 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 = 1061.989396 -0:The maximum resident set size (KB) = 766248 +0:The total amount of wall time = 1031.666570 +0:The maximum resident set size (KB) = 766224 Test 098 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 1332.590259 -0:The maximum resident set size (KB) = 275332 +0:The total amount of wall time = 1329.089741 +0:The maximum resident set size (KB) = 275080 Test 099 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2768,28 +2768,28 @@ 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.208078 -0:The maximum resident set size (KB) = 288720 +0:The total amount of wall time = 1426.406154 +0:The maximum resident set size (KB) = 288592 Test 100 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 828.309479 -0:The maximum resident set size (KB) = 184632 +0:The total amount of wall time = 830.445710 +0:The maximum resident set size (KB) = 184812 Test 101 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2802,42 +2802,42 @@ 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 = 1416.746911 -0:The maximum resident set size (KB) = 266364 +0:The total amount of wall time = 1407.789460 +0:The maximum resident set size (KB) = 266204 Test 102 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_59298/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 .... Comparing atmf006.nc .........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.333378 -0:The maximum resident set size (KB) = 288140 +0:The total amount of wall time = 732.519358 +0:The maximum resident set size (KB) = 289040 Test 103 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 720.606570 -0:The maximum resident set size (KB) = 288076 +0:The total amount of wall time = 719.195382 +0:The maximum resident set size (KB) = 288928 Test 104 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2846,14 +2846,14 @@ 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 = 741.784828 -0:The maximum resident set size (KB) = 320088 +0:The total amount of wall time = 737.725800 +0:The maximum resident set size (KB) = 320372 Test 105 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2864,28 +2864,28 @@ 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 = 1299.156301 -0:The maximum resident set size (KB) = 385864 +0:The total amount of wall time = 1324.969310 +0:The maximum resident set size (KB) = 385708 Test 106 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -0:The total amount of wall time = 412.675951 -0:The maximum resident set size (KB) = 203540 +0:The total amount of wall time = 414.554390 +0:The maximum resident set size (KB) = 204628 Test 107 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_59298/hafs_regional_docn +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2893,14 +2893,14 @@ Checking test 108 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 415.154885 -0:The maximum resident set size (KB) = 735544 +0:The total amount of wall time = 420.205898 +0:The maximum resident set size (KB) = 735488 Test 108 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_59298/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2908,118 +2908,118 @@ Checking test 109 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 423.133006 -0:The maximum resident set size (KB) = 721636 +0:The total amount of wall time = 419.552295 +0:The maximum resident set size (KB) = 721812 Test 109 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_59298/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 .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK -0:The total amount of wall time = 1285.895618 -0:The maximum resident set size (KB) = 867600 +0:The total amount of wall time = 1274.497690 +0:The maximum resident set size (KB) = 867016 Test 110 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_59298/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 .... 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.303732 -0:The maximum resident set size (KB) = 691520 +0:The total amount of wall time = 167.275912 +0:The maximum resident set size (KB) = 680552 Test 111 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_59298/datm_cdeps_restart_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 100.660591 -0:The maximum resident set size (KB) = 680880 +0:The total amount of wall time = 103.169508 +0:The maximum resident set size (KB) = 681040 Test 112 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_59298/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 .... 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 = 159.723099 -0:The maximum resident set size (KB) = 578512 +0:The total amount of wall time = 161.263720 +0:The maximum resident set size (KB) = 578400 Test 113 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_59298/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 .... 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 = 162.981004 -0:The maximum resident set size (KB) = 578436 +0:The total amount of wall time = 158.310542 +0:The maximum resident set size (KB) = 578420 Test 114 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_59298/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 .... 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.364892 -0:The maximum resident set size (KB) = 578428 +0:The total amount of wall time = 163.722045 +0:The maximum resident set size (KB) = 578420 Test 115 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_59298/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 166.892526 -0:The maximum resident set size (KB) = 680540 +0:The total amount of wall time = 167.402071 +0:The maximum resident set size (KB) = 680520 Test 116 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_59298/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 .... 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 = 160.597380 -0:The maximum resident set size (KB) = 578440 +0:The total amount of wall time = 156.446469 +0:The maximum resident set size (KB) = 578508 Test 117 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_59298/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3028,14 +3028,14 @@ 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 = 350.422898 -0:The maximum resident set size (KB) = 501160 +0:The total amount of wall time = 361.959948 +0:The maximum resident set size (KB) = 493200 Test 118 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_59298/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3044,64 +3044,64 @@ 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 = 349.533216 -0:The maximum resident set size (KB) = 475136 +0:The total amount of wall time = 355.285776 +0:The maximum resident set size (KB) = 475088 Test 119 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_59298/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 165.369218 -0:The maximum resident set size (KB) = 691680 +0:The total amount of wall time = 161.032809 +0:The maximum resident set size (KB) = 680520 Test 120 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_59298/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 .... 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 = 268.725571 -0:The maximum resident set size (KB) = 1825876 +0:The total amount of wall time = 272.867046 +0:The maximum resident set size (KB) = 1825848 Test 121 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_59298/datm_cdeps_gfs +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/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 = 267.106794 -0:The maximum resident set size (KB) = 1826660 +0:The total amount of wall time = 240.647219 +0:The maximum resident set size (KB) = 1794732 Test 122 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_59298/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 .... 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 = 453.500242 -0:The maximum resident set size (KB) = 699864 +0:The total amount of wall time = 452.429998 +0:The maximum resident set size (KB) = 699816 Test 123 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_59298/control_atmwav +working dir = /glade/scratch/epicufsrt/FV3_RT/rt_46458/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3145,12 +3145,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.309812 -0:The maximum resident set size (KB) = 478936 +0:The total amount of wall time = 94.203499 +0:The maximum resident set size (KB) = 479052 Test 124 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 10:34:09 MDT 2022 -Elapsed time: 01h:32m:41s. Have a nice day! +Fri Jun 3 20:28:26 MDT 2022 +Elapsed time: 03h:56m:52s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index 75308ece57..7e244d73ec 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,25 +1,25 @@ -Thu Jun 2 13:49:55 EDT 2022 +Fri Jun 3 18:34:23 EDT 2022 Start Regression test -Compile 001 elapsed time 667 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 454 seconds. -DAPP=ATM -DCCPP_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 484 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 467 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 420 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 248 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 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 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 010 elapsed time 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 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 590 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 245 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 161 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 632 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 417 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -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 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_26385/cpld_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,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 = 440.764153 - 0: The maximum resident set size (KB) = 1606132 + 0: The total amount of wall time = 442.577915 + 0: The maximum resident set size (KB) = 1606076 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_26385/cpld_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +144,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 = 277.168737 - 0: The maximum resident set size (KB) = 1556424 + 0: The total amount of wall time = 272.206725 + 0: The maximum resident set size (KB) = 1556492 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_26385/cpld_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +204,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 = 587.817617 - 0: The maximum resident set size (KB) = 2455096 + 0: The total amount of wall time = 592.899485 + 0: The maximum resident set size (KB) = 2358256 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_26385/cpld_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +264,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 = 442.704974 - 0: The maximum resident set size (KB) = 1658868 + 0: The total amount of wall time = 448.287421 + 0: The maximum resident set size (KB) = 1673308 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_26385/cpld_mpi_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +324,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 = 375.767612 - 0: The maximum resident set size (KB) = 1324008 + 0: The total amount of wall time = 379.619627 + 0: The maximum resident set size (KB) = 1181104 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_26385/cpld_control_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +384,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 = 939.588106 - 0: The maximum resident set size (KB) = 1601504 + 0: The total amount of wall time = 943.514614 + 0: The maximum resident set size (KB) = 1661208 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_26385/cpld_restart_c192_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +444,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 = 580.084580 - 0: The maximum resident set size (KB) = 1634400 + 0: The total amount of wall time = 576.274356 + 0: The maximum resident set size (KB) = 1633620 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_26385/cpld_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +497,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 = 1437.479607 - 0: The maximum resident set size (KB) = 2553012 + 0: The total amount of wall time = 1429.118782 + 0: The maximum resident set size (KB) = 2476476 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_26385/cpld_restart_bmark_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +550,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 = 973.495526 - 0: The maximum resident set size (KB) = 2468728 + 0: The total amount of wall time = 955.329628 + 0: The maximum resident set size (KB) = 2501576 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_26385/cpld_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,14 +610,14 @@ 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 = 647.619750 - 0: The maximum resident set size (KB) = 1651068 + 0: The total amount of wall time = 650.979967 + 0: The maximum resident set size (KB) = 1674056 Test 010 cpld_debug_p8 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_26385/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -664,14 +664,14 @@ 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 = 153.078992 - 0: The maximum resident set size (KB) = 434940 + 0: The total amount of wall time = 136.106452 + 0: The maximum resident set size (KB) = 434916 Test 011 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_26385/control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -714,28 +714,28 @@ 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 = 139.668494 - 0: The maximum resident set size (KB) = 433692 + 0: The total amount of wall time = 144.278393 + 0: The maximum resident set size (KB) = 433688 Test 012 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_26385/control_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2dwrtdecomp Checking test 013 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.085943 - 0: The maximum resident set size (KB) = 435084 + 0: The total amount of wall time = 129.798654 + 0: The maximum resident set size (KB) = 434872 Test 013 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_26385/control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -778,14 +778,14 @@ 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 = 174.135832 - 0: The maximum resident set size (KB) = 487444 + 0: The total amount of wall time = 175.359029 + 0: The maximum resident set size (KB) = 486396 Test 014 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_26385/control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -824,14 +824,14 @@ 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.403282 - 0: The maximum resident set size (KB) = 172944 + 0: The total amount of wall time = 72.814004 + 0: The maximum resident set size (KB) = 173208 Test 015 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_26385/control_fhzero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -874,14 +874,14 @@ 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 = 128.116654 - 0: The maximum resident set size (KB) = 434840 + 0: The total amount of wall time = 132.620775 + 0: The maximum resident set size (KB) = 435116 Test 016 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_26385/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -908,14 +908,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 135.575124 - 0: The maximum resident set size (KB) = 435916 + 0: The total amount of wall time = 131.291917 + 0: The maximum resident set size (KB) = 436024 Test 017 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_26385/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -926,14 +926,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 138.687993 - 0: The maximum resident set size (KB) = 435048 + 0: The total amount of wall time = 132.992948 + 0: The maximum resident set size (KB) = 435032 Test 018 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_26385/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 .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -944,14 +944,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 144.516828 - 0: The maximum resident set size (KB) = 435052 + 0: The total amount of wall time = 140.357900 + 0: The maximum resident set size (KB) = 435024 Test 019 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_26385/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,14 +990,14 @@ 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 = 359.658112 -0: The maximum resident set size (KB) = 629716 +0: The total amount of wall time = 358.713623 +0: The maximum resident set size (KB) = 629776 Test 020 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_26385/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 552.929153 - 0: The maximum resident set size (KB) = 539120 + 0: The total amount of wall time = 548.195940 + 0: The maximum resident set size (KB) = 538956 Test 021 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_26385/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1026,14 +1026,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 780.989931 - 0: The maximum resident set size (KB) = 810412 + 0: The total amount of wall time = 782.435523 + 0: The maximum resident set size (KB) = 811052 Test 022 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_26385/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1076,14 +1076,14 @@ 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 = 758.715699 - 0: The maximum resident set size (KB) = 932772 + 0: The total amount of wall time = 770.375952 + 0: The maximum resident set size (KB) = 934404 Test 023 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_26385/control_c384_progsigma +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_c384_progsigma Checking test 024 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1094,14 +1094,14 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 787.152081 - 0: The maximum resident set size (KB) = 831728 + 0: The total amount of wall time = 799.842375 + 0: The maximum resident set size (KB) = 831984 Test 024 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_26385/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1112,28 +1112,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 88.965520 - 0: The maximum resident set size (KB) = 439256 + 0: The total amount of wall time = 89.696415 + 0: The maximum resident set size (KB) = 439312 Test 025 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_26385/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 48.525988 - 0: The maximum resident set size (KB) = 189968 + 0: The total amount of wall time = 49.476189 + 0: The maximum resident set size (KB) = 190088 Test 026 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_26385/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.957928 - 0: The maximum resident set size (KB) = 439868 + 0: The total amount of wall time = 82.881693 + 0: The maximum resident set size (KB) = 439828 Test 027 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_26385/control_iovr4 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1166,14 +1166,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.709246 - 0: The maximum resident set size (KB) = 434872 + 0: The total amount of wall time = 136.491716 + 0: The maximum resident set size (KB) = 434936 Test 028 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_26385/control_iovr5 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 136.041128 - 0: The maximum resident set size (KB) = 434936 + 0: The total amount of wall time = 135.641215 + 0: The maximum resident set size (KB) = 435072 Test 029 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_26385/control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 187.856061 - 0: The maximum resident set size (KB) = 824500 + 0: The total amount of wall time = 189.055735 + 0: The maximum resident set size (KB) = 824576 Test 030 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_26385/control_p8_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 345.149593 - 0: The maximum resident set size (KB) = 824848 + 0: The total amount of wall time = 347.760577 + 0: The maximum resident set size (KB) = 824964 Test 031 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_26385/control_restart_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1314,14 +1314,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.641647 - 0: The maximum resident set size (KB) = 560392 + 0: The total amount of wall time = 107.832434 + 0: The maximum resident set size (KB) = 546204 Test 032 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_26385/control_decomp_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,14 +1364,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 198.731273 - 0: The maximum resident set size (KB) = 817600 + 0: The total amount of wall time = 195.347715 + 0: The maximum resident set size (KB) = 794072 Test 033 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_26385/control_2threads_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.003402 - 0: The maximum resident set size (KB) = 900252 + 0: The total amount of wall time = 239.259715 + 0: The maximum resident set size (KB) = 900388 Test 034 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_26385/control_p8_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1468,14 +1468,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 230.596671 - 0: The maximum resident set size (KB) = 915544 + 0: The total amount of wall time = 231.088412 + 0: The maximum resident set size (KB) = 939576 Test 035 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_26385/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,42 +1486,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 367.231701 - 0: The maximum resident set size (KB) = 544092 + 0: The total amount of wall time = 360.783661 + 0: The maximum resident set size (KB) = 544168 Test 036 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_26385/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_restart Checking test 037 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 = 200.201942 - 0: The maximum resident set size (KB) = 541984 + 0: The total amount of wall time = 199.438532 + 0: The maximum resident set size (KB) = 541904 Test 037 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_26385/regional_control_2dwrtdecomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_control_2dwrtdecomp Checking test 038 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 = 358.014610 - 0: The maximum resident set size (KB) = 544188 + 0: The total amount of wall time = 359.913001 + 0: The maximum resident set size (KB) = 544332 Test 038 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_26385/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 377.768761 - 0: The maximum resident set size (KB) = 547100 + 0: The total amount of wall time = 380.239321 + 0: The maximum resident set size (KB) = 547120 Test 039 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_26385/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1547,28 +1547,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 282.049374 - 0: The maximum resident set size (KB) = 545968 + 0: The total amount of wall time = 279.753700 + 0: The maximum resident set size (KB) = 545988 Test 040 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_26385/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_netcdf_parallel Checking test 041 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 = 361.539487 - 0: The maximum resident set size (KB) = 541544 + 0: The total amount of wall time = 359.858119 + 0: The maximum resident set size (KB) = 541744 Test 041 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_26385/regional_3km +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_3km Checking test 042 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 278.492962 - 0: The maximum resident set size (KB) = 572020 + 0: The total amount of wall time = 280.952751 + 0: The maximum resident set size (KB) = 572072 Test 042 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_26385/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1633,14 +1633,14 @@ 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 = 454.836492 - 0: The maximum resident set size (KB) = 804420 + 0: The total amount of wall time = 448.988953 + 0: The maximum resident set size (KB) = 804412 Test 043 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_26385/rap_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_rrtmgp Checking test 044 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1687,14 +1687,14 @@ 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 = 514.653539 - 0: The maximum resident set size (KB) = 922964 + 0: The total amount of wall time = 497.184963 + 0: The maximum resident set size (KB) = 922992 Test 044 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_26385/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 351.756440 - 0: The maximum resident set size (KB) = 887912 + 0: The total amount of wall time = 350.857429 + 0: The maximum resident set size (KB) = 887604 Test 045 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_26385/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1759,14 +1759,14 @@ 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 = 574.044938 - 0: The maximum resident set size (KB) = 867680 + 0: The total amount of wall time = 565.500253 + 0: The maximum resident set size (KB) = 867748 Test 046 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_26385/rap_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1805,14 +1805,14 @@ 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 = 231.443155 - 0: The maximum resident set size (KB) = 546196 + 0: The total amount of wall time = 232.633783 + 0: The maximum resident set size (KB) = 546008 Test 047 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_26385/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1859,14 +1859,14 @@ 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 = 451.425595 - 0: The maximum resident set size (KB) = 804512 + 0: The total amount of wall time = 450.335269 + 0: The maximum resident set size (KB) = 804440 Test 048 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_26385/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1905,14 +1905,14 @@ 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.740033 - 0: The maximum resident set size (KB) = 545748 + 0: The total amount of wall time = 233.608176 + 0: The maximum resident set size (KB) = 545936 Test 049 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_26385/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1959,14 +1959,14 @@ 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.859398 - 0: The maximum resident set size (KB) = 802260 + 0: The total amount of wall time = 430.479817 + 0: The maximum resident set size (KB) = 802156 Test 050 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_26385/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2013,14 +2013,14 @@ 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 = 440.159428 - 0: The maximum resident set size (KB) = 799356 + 0: The total amount of wall time = 441.317803 + 0: The maximum resident set size (KB) = 799272 Test 051 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_26385/rrfs_v1nssl +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 536.780927 - 0: The maximum resident set size (KB) = 489836 + 0: The total amount of wall time = 536.991521 + 0: The maximum resident set size (KB) = 489792 Test 052 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_26385/rrfs_v1nssl_nohailnoccn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 522.069409 - 0: The maximum resident set size (KB) = 482220 + 0: The total amount of wall time = 519.801729 + 0: The maximum resident set size (KB) = 482072 Test 053 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 204.764945 - 0: The maximum resident set size (KB) = 616452 + 0: The total amount of wall time = 203.583184 + 0: The maximum resident set size (KB) = 616644 Test 054 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 204.617635 - 0: The maximum resident set size (KB) = 619100 + 0: The total amount of wall time = 205.957034 + 0: The maximum resident set size (KB) = 619276 Test 055 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2105,14 +2105,14 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 224.893677 - 0: The maximum resident set size (KB) = 626472 + 0: The total amount of wall time = 228.897677 + 0: The maximum resident set size (KB) = 626452 Test 056 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_26385/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmgt Checking test 057 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 057 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 373.606290 - 0: The maximum resident set size (KB) = 504128 + 0: The total amount of wall time = 380.435324 + 0: The maximum resident set size (KB) = 504196 Test 057 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_26385/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_flake Checking test 058 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 058 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 251.783273 - 0: The maximum resident set size (KB) = 507692 + 0: The total amount of wall time = 247.231540 + 0: The maximum resident set size (KB) = 507516 Test 058 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_26385/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_ras Checking test 059 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2159,14 +2159,14 @@ Checking test 059 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 186.350234 - 0: The maximum resident set size (KB) = 470656 + 0: The total amount of wall time = 185.121409 + 0: The maximum resident set size (KB) = 471272 Test 059 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_26385/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson Checking test 060 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 060 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 253.208988 - 0: The maximum resident set size (KB) = 818572 + 0: The total amount of wall time = 275.174571 + 0: The maximum resident set size (KB) = 818444 Test 060 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2195,54 +2195,54 @@ Checking test 061 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 240.599241 - 0: The maximum resident set size (KB) = 815236 + 0: The total amount of wall time = 239.298246 + 0: The maximum resident set size (KB) = 815284 Test 061 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_26385/control_wam +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wam Checking test 062 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 115.678541 - 0: The maximum resident set size (KB) = 183616 + 0: The total amount of wall time = 115.024230 + 0: The maximum resident set size (KB) = 183684 Test 062 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_26385/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_debug Checking test 063 control_debug 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.600872 - 0: The maximum resident set size (KB) = 599808 + 0: The total amount of wall time = 151.260408 + 0: The maximum resident set size (KB) = 599672 Test 063 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_26385/control_2threads_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_2threads_debug Checking test 064 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 = 262.193119 - 0: The maximum resident set size (KB) = 656768 + 0: The total amount of wall time = 259.079566 + 0: The maximum resident set size (KB) = 656688 Test 064 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_26385/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_CubedSphereGrid_debug Checking test 065 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2269,415 +2269,415 @@ Checking test 065 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 176.446667 - 0: The maximum resident set size (KB) = 599304 + 0: The total amount of wall time = 162.903622 + 0: The maximum resident set size (KB) = 599636 Test 065 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 240.128685 - 0: The maximum resident set size (KB) = 600020 + 0: The total amount of wall time = 160.480555 + 0: The maximum resident set size (KB) = 599784 Test 066 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_26385/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_stochy_debug Checking test 067 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 199.263303 - 0: The maximum resident set size (KB) = 606132 + 0: The total amount of wall time = 175.199521 + 0: The maximum resident set size (KB) = 606200 Test 067 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_26385/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_lndp_debug Checking test 068 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.663087 - 0: The maximum resident set size (KB) = 604672 + 0: The total amount of wall time = 154.110426 + 0: The maximum resident set size (KB) = 604912 Test 068 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_26385/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmg_debug Checking test 069 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 253.679108 - 0: The maximum resident set size (KB) = 642016 + 0: The total amount of wall time = 278.215837 + 0: The maximum resident set size (KB) = 641804 Test 069 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_26385/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_csawmgt_debug Checking test 070 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 243.429358 - 0: The maximum resident set size (KB) = 643036 + 0: The total amount of wall time = 247.442225 + 0: The maximum resident set size (KB) = 642948 Test 070 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_26385/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_ras_debug Checking test 071 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.780023 - 0: The maximum resident set size (KB) = 614228 + 0: The total amount of wall time = 157.558695 + 0: The maximum resident set size (KB) = 613968 Test 071 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_26385/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_diag_debug Checking test 072 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.302176 - 0: The maximum resident set size (KB) = 657368 + 0: The total amount of wall time = 159.341981 + 0: The maximum resident set size (KB) = 657548 Test 072 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_26385/control_debug_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_debug_p8 Checking test 073 control_debug_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.746151 - 0: The maximum resident set size (KB) = 946412 + 0: The total amount of wall time = 197.842053 + 0: The maximum resident set size (KB) = 988764 Test 073 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_26385/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_debug Checking test 074 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 = 186.696675 - 0: The maximum resident set size (KB) = 959624 + 0: The total amount of wall time = 184.736645 + 0: The maximum resident set size (KB) = 959456 Test 074 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.348828 - 0: The maximum resident set size (KB) = 955216 + 0: The total amount of wall time = 176.249012 + 0: The maximum resident set size (KB) = 955088 Test 075 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_26385/control_thompson_extdiag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_thompson_extdiag_debug Checking test 076 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 = 189.865368 - 0: The maximum resident set size (KB) = 988572 + 0: The total amount of wall time = 190.554391 + 0: The maximum resident set size (KB) = 988364 Test 076 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 186.248029 - 0: The maximum resident set size (KB) = 959460 + 0: The total amount of wall time = 181.544884 + 0: The maximum resident set size (KB) = 959800 Test 077 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_26385/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/regional_debug Checking test 078 regional_debug 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.568727 - 0: The maximum resident set size (KB) = 569988 + 0: The total amount of wall time = 260.703865 + 0: The maximum resident set size (KB) = 570332 Test 078 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_26385/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_control_debug Checking test 079 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.819758 - 0: The maximum resident set size (KB) = 967720 + 0: The total amount of wall time = 307.230520 + 0: The maximum resident set size (KB) = 967800 Test 079 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_26385/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.425726 - 0: The maximum resident set size (KB) = 967724 + 0: The total amount of wall time = 284.448187 + 0: The maximum resident set size (KB) = 967656 Test 080 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_26385/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_diag_debug Checking test 081 rap_diag_debug 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.984640 - 0: The maximum resident set size (KB) = 1050188 + 0: The total amount of wall time = 297.945962 + 0: The maximum resident set size (KB) = 1050308 Test 081 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 291.423528 - 0: The maximum resident set size (KB) = 966828 + 0: The total amount of wall time = 288.334463 + 0: The maximum resident set size (KB) = 966728 Test 082 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_26385/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.813873 - 0: The maximum resident set size (KB) = 968016 + 0: The total amount of wall time = 293.177562 + 0: The maximum resident set size (KB) = 967764 Test 083 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_26385/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_lndp_debug Checking test 084 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 300.289677 - 0: The maximum resident set size (KB) = 969024 + 0: The total amount of wall time = 285.056906 + 0: The maximum resident set size (KB) = 969172 Test 084 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_26385/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_flake_debug Checking test 085 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 290.595233 - 0: The maximum resident set size (KB) = 967808 + 0: The total amount of wall time = 281.985812 + 0: The maximum resident set size (KB) = 967752 Test 085 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.304365 - 0: The maximum resident set size (KB) = 968040 + 0: The total amount of wall time = 283.452974 + 0: The maximum resident set size (KB) = 967724 Test 086 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_26385/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_noah_debug Checking test 087 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 286.012784 - 0: The maximum resident set size (KB) = 967380 + 0: The total amount of wall time = 281.167812 + 0: The maximum resident set size (KB) = 967012 Test 087 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_26385/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_rrtmgp_debug Checking test 088 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 = 489.608443 - 0: The maximum resident set size (KB) = 1088860 + 0: The total amount of wall time = 485.430600 + 0: The maximum resident set size (KB) = 1088804 Test 088 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_26385/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rap_sfcdiff_debug Checking test 089 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.726828 - 0: The maximum resident set size (KB) = 968332 + 0: The total amount of wall time = 283.275457 + 0: The maximum resident set size (KB) = 967988 Test 089 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_26385/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 467.465695 - 0: The maximum resident set size (KB) = 966744 + 0: The total amount of wall time = 466.858575 + 0: The maximum resident set size (KB) = 966568 Test 090 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_26385/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/rrfs_v1beta_debug Checking test 091 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.656384 - 0: The maximum resident set size (KB) = 964792 + 0: The total amount of wall time = 280.190801 + 0: The maximum resident set size (KB) = 964796 Test 091 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_26385/control_wam_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_wam_debug Checking test 092 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 311.024150 - 0: The maximum resident set size (KB) = 214084 + 0: The total amount of wall time = 291.688772 + 0: The maximum resident set size (KB) = 214520 Test 092 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_26385/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_atm Checking test 093 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 357.574574 - 0: The maximum resident set size (KB) = 662540 + 0: The total amount of wall time = 362.143699 + 0: The maximum resident set size (KB) = 662652 Test 093 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 407.169161 - 0: The maximum resident set size (KB) = 1023280 + 0: The total amount of wall time = 408.687252 + 0: The maximum resident set size (KB) = 1023968 Test 094 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2686,14 +2686,14 @@ 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 = 455.408275 - 0: The maximum resident set size (KB) = 692780 + 0: The total amount of wall time = 449.355842 + 0: The maximum resident set size (KB) = 693612 Test 095 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2702,14 +2702,14 @@ 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 = 931.428497 - 0: The maximum resident set size (KB) = 723004 + 0: The total amount of wall time = 928.525366 + 0: The maximum resident set size (KB) = 722308 Test 096 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2720,28 +2720,28 @@ 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 = 1025.591065 - 0: The maximum resident set size (KB) = 737744 + 0: The total amount of wall time = 1022.318158 + 0: The maximum resident set size (KB) = 737328 Test 097 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 556.763359 - 0: The maximum resident set size (KB) = 265204 + 0: The total amount of wall time = 562.341251 + 0: The maximum resident set size (KB) = 266556 Test 098 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2750,28 +2750,28 @@ 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 = 611.267796 - 0: The maximum resident set size (KB) = 268436 + 0: The total amount of wall time = 612.979058 + 0: The maximum resident set size (KB) = 268540 Test 099 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_26385/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 .... Comparing atmf006.nc .........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.744900 - 0: The maximum resident set size (KB) = 165596 + 0: The total amount of wall time = 253.153815 + 0: The maximum resident set size (KB) = 165528 Test 100 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2784,42 +2784,42 @@ 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 = 727.684751 - 0: The maximum resident set size (KB) = 219652 + 0: The total amount of wall time = 713.538066 + 0: The maximum resident set size (KB) = 235072 Test 101 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 328.984687 - 0: The maximum resident set size (KB) = 273188 + 0: The total amount of wall time = 331.653441 + 0: The maximum resident set size (KB) = 273900 Test 102 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 317.387026 - 0: The maximum resident set size (KB) = 273736 + 0: The total amount of wall time = 320.055718 + 0: The maximum resident set size (KB) = 273692 Test 103 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2828,14 +2828,14 @@ 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 = 346.572667 - 0: The maximum resident set size (KB) = 299360 + 0: The total amount of wall time = 349.709969 + 0: The maximum resident set size (KB) = 299472 Test 104 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2846,28 +2846,28 @@ 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 = 864.163097 - 0: The maximum resident set size (KB) = 360088 + 0: The total amount of wall time = 861.940393 + 0: The maximum resident set size (KB) = 360224 Test 105 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 94.711641 - 0: The maximum resident set size (KB) = 184756 + 0: The total amount of wall time = 97.530392 + 0: The maximum resident set size (KB) = 185224 Test 106 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_26385/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/hafs_regional_docn Checking test 107 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2875,14 +2875,14 @@ Checking test 107 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 422.717946 - 0: The maximum resident set size (KB) = 704932 + 0: The total amount of wall time = 433.291347 + 0: The maximum resident set size (KB) = 704864 Test 107 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_26385/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2890,118 +2890,118 @@ Checking test 108 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 422.291690 - 0: The maximum resident set size (KB) = 687156 + 0: The total amount of wall time = 433.313464 + 0: The maximum resident set size (KB) = 686920 Test 108 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_26385/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 .... 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 = 1033.531050 - 0: The maximum resident set size (KB) = 806748 + 0: The total amount of wall time = 1045.912537 + 0: The maximum resident set size (KB) = 806772 Test 109 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_26385/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 .... 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 = 151.383545 - 0: The maximum resident set size (KB) = 687132 + 0: The total amount of wall time = 152.128836 + 0: The maximum resident set size (KB) = 679544 Test 110 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_26385/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_restart_cfsr Checking test 111 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 = 91.618451 - 0: The maximum resident set size (KB) = 686964 + 0: The total amount of wall time = 85.397444 + 0: The maximum resident set size (KB) = 687212 Test 111 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_26385/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 .... 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 = 148.446520 - 0: The maximum resident set size (KB) = 566648 + 0: The total amount of wall time = 152.396382 + 0: The maximum resident set size (KB) = 567012 Test 112 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_26385/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 .... 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 = 151.956366 - 0: The maximum resident set size (KB) = 566772 + 0: The total amount of wall time = 181.678304 + 0: The maximum resident set size (KB) = 571608 Test 113 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_26385/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 .... 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 = 149.845086 - 0: The maximum resident set size (KB) = 570748 + 0: The total amount of wall time = 176.353174 + 0: The maximum resident set size (KB) = 566804 Test 114 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_26385/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 .... 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 = 151.925376 - 0: The maximum resident set size (KB) = 687068 + 0: The total amount of wall time = 152.994342 + 0: The maximum resident set size (KB) = 687000 Test 115 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_26385/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 .... 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.963785 - 0: The maximum resident set size (KB) = 566920 + 0: The total amount of wall time = 150.766718 + 0: The maximum resident set size (KB) = 570964 Test 116 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_26385/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3010,14 +3010,14 @@ 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 = 353.717099 - 0: The maximum resident set size (KB) = 482384 + 0: The total amount of wall time = 360.048797 + 0: The maximum resident set size (KB) = 482264 Test 117 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_26385/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3026,64 +3026,64 @@ 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 = 351.647267 - 0: The maximum resident set size (KB) = 452140 + 0: The total amount of wall time = 362.815049 + 0: The maximum resident set size (KB) = 456104 Test 118 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_26385/datm_cdeps_multiple_files_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 .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.708146 - 0: The maximum resident set size (KB) = 687008 + 0: The total amount of wall time = 151.073254 + 0: The maximum resident set size (KB) = 686952 Test 119 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_26385/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 .... 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 = 204.417542 - 0: The maximum resident set size (KB) = 1842792 + 0: The total amount of wall time = 202.778640 + 0: The maximum resident set size (KB) = 1843064 Test 120 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_26385/datm_cdeps_gfs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/datm_cdeps_gfs Checking test 121 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.989575 - 0: The maximum resident set size (KB) = 1847424 + 0: The total amount of wall time = 202.511402 + 0: The maximum resident set size (KB) = 1842780 Test 121 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_26385/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 .... 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 = 365.682535 - 0: The maximum resident set size (KB) = 692300 + 0: The total amount of wall time = 368.640430 + 0: The maximum resident set size (KB) = 692276 Test 122 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_26385/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/control_atmwav Checking test 123 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3127,14 +3127,14 @@ 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.090092 - 0: The maximum resident set size (KB) = 449276 + 0: The total amount of wall time = 90.798402 + 0: The maximum resident set size (KB) = 449348 Test 123 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_26385/atmaero_control_p8 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_36561/atmaero_control_p8 Checking test 124 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3178,12 +3178,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 = 352.612627 - 0: The maximum resident set size (KB) = 1362504 + 0: The total amount of wall time = 355.075875 + 0: The maximum resident set size (KB) = 1348560 Test 124 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 17:34:41 EDT 2022 -Elapsed time: 03h:44m:47s. Have a nice day! +Fri Jun 3 22:01:29 EDT 2022 +Elapsed time: 03h:27m:07s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 30e58337f9..bbfc96fd69 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,16 +1,16 @@ -Fri Jun 3 03:47:30 UTC 2022 +Fri Jun 3 22:47:52 UTC 2022 Start Regression test -Compile 001 elapsed time 191 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 195 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 99 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 232 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 125 seconds. -DAPP=S2SW -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 007 elapsed time 109 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +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 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_31191/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 796.492999 - 0: The maximum resident set size (KB) = 483856 + 0: The total amount of wall time = 797.646239 + 0: The maximum resident set size (KB) = 481964 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_31191/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 388.631964 - 0: The maximum resident set size (KB) = 183828 + 0: The total amount of wall time = 382.240217 + 0: The maximum resident set size (KB) = 183736 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_31191/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 678.166610 -0: The maximum resident set size (KB) = 699480 +0: The total amount of wall time = 673.837064 +0: The maximum resident set size (KB) = 701000 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_31191/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 619.670204 - 0: The maximum resident set size (KB) = 482084 + 0: The total amount of wall time = 629.572994 + 0: The maximum resident set size (KB) = 483336 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_31191/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1361.745456 - 0: The maximum resident set size (KB) = 526240 + 0: The total amount of wall time = 1391.335564 + 0: The maximum resident set size (KB) = 531008 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_31191/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 991.383372 - 0: The maximum resident set size (KB) = 841284 + 0: The total amount of wall time = 985.767463 + 0: The maximum resident set size (KB) = 846412 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_31191/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 966.645053 - 0: The maximum resident set size (KB) = 835816 + 0: The total amount of wall time = 962.983331 + 0: The maximum resident set size (KB) = 836024 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_31191/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 807.018855 - 0: The maximum resident set size (KB) = 488792 + 0: The total amount of wall time = 790.919018 + 0: The maximum resident set size (KB) = 486792 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_31191/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 859.117415 - 0: The maximum resident set size (KB) = 832228 + 0: The total amount of wall time = 850.428816 + 0: The maximum resident set size (KB) = 831444 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_31191/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1390.598837 - 0: The maximum resident set size (KB) = 833764 + 0: The total amount of wall time = 1403.616340 + 0: The maximum resident set size (KB) = 835780 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_31191/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1418.555203 - 0: The maximum resident set size (KB) = 898460 + 0: The total amount of wall time = 1412.559137 + 0: The maximum resident set size (KB) = 894484 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_31191/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 691.128104 - 0: The maximum resident set size (KB) = 546140 + 0: The total amount of wall time = 671.552567 + 0: The maximum resident set size (KB) = 543616 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_31191/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1377.173526 - 0: The maximum resident set size (KB) = 835040 + 0: The total amount of wall time = 1403.510647 + 0: The maximum resident set size (KB) = 835744 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_31191/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 689.413374 - 0: The maximum resident set size (KB) = 543688 + 0: The total amount of wall time = 682.124440 + 0: The maximum resident set size (KB) = 541244 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_31191/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1377.092786 - 0: The maximum resident set size (KB) = 834716 + 0: The total amount of wall time = 1380.602919 + 0: The maximum resident set size (KB) = 833784 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_31191/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1454.074235 - 0: The maximum resident set size (KB) = 832124 + 0: The total amount of wall time = 1412.519511 + 0: The maximum resident set size (KB) = 828476 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_31191/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1505.285868 - 0: The maximum resident set size (KB) = 638652 + 0: The total amount of wall time = 1512.698741 + 0: The maximum resident set size (KB) = 640436 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_31191/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1549.577770 - 0: The maximum resident set size (KB) = 644552 + 0: The total amount of wall time = 1506.896401 + 0: The maximum resident set size (KB) = 644156 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_31191/rrfs_smoke_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1612.587805 - 0: The maximum resident set size (KB) = 651120 + 0: The total amount of wall time = 1583.333888 + 0: The maximum resident set size (KB) = 653320 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_31191/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 99.699823 - 0: The maximum resident set size (KB) = 472080 + 0: The total amount of wall time = 98.222924 + 0: The maximum resident set size (KB) = 477940 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_31191/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 125.852074 - 0: The maximum resident set size (KB) = 536456 + 0: The total amount of wall time = 123.803669 + 0: The maximum resident set size (KB) = 533188 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_31191/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 126.469191 - 0: The maximum resident set size (KB) = 553348 + 0: The total amount of wall time = 125.656289 + 0: The maximum resident set size (KB) = 552780 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_31191/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 171.633131 - 0: The maximum resident set size (KB) = 849224 + 0: The total amount of wall time = 166.044631 + 0: The maximum resident set size (KB) = 848420 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_31191/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 204.119057 - 0: The maximum resident set size (KB) = 931756 + 0: The total amount of wall time = 203.282711 + 0: The maximum resident set size (KB) = 927964 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_31191/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 262.013865 - 0: The maximum resident set size (KB) = 849864 + 0: The total amount of wall time = 267.021815 + 0: The maximum resident set size (KB) = 846924 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_31191/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 165.903296 - 0: The maximum resident set size (KB) = 845092 + 0: The total amount of wall time = 167.040378 + 0: The maximum resident set size (KB) = 844408 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_31191/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 166.456888 - 0: The maximum resident set size (KB) = 848384 + 0: The total amount of wall time = 167.752219 + 0: The maximum resident set size (KB) = 841324 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_31191/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 114.745893 - 0: The maximum resident set size (KB) = 838996 + 0: The total amount of wall time = 112.725619 + 0: The maximum resident set size (KB) = 841304 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_31191/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 107.679541 - 0: The maximum resident set size (KB) = 834640 + 0: The total amount of wall time = 110.412781 + 0: The maximum resident set size (KB) = 831976 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_31191/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 131.761854 - 0: The maximum resident set size (KB) = 870588 + 0: The total amount of wall time = 133.546593 + 0: The maximum resident set size (KB) = 868004 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_31191/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 113.101437 - 0: The maximum resident set size (KB) = 837864 + 0: The total amount of wall time = 114.813218 + 0: The maximum resident set size (KB) = 846188 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_31191/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 100.551278 - 0: The maximum resident set size (KB) = 489264 + 0: The total amount of wall time = 99.941507 + 0: The maximum resident set size (KB) = 486868 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_31191/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 111.765787 - 0: The maximum resident set size (KB) = 482728 + 0: The total amount of wall time = 116.260771 + 0: The maximum resident set size (KB) = 482272 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_31191/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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.044476 - 0: The maximum resident set size (KB) = 834136 + 0: The total amount of wall time = 112.053146 + 0: The maximum resident set size (KB) = 832416 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_31191/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 180.589767 - 0: The maximum resident set size (KB) = 193708 + 0: The total amount of wall time = 179.784403 + 0: The maximum resident set size (KB) = 193464 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_31191/cpld_control_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 1219.713936 - 0: The maximum resident set size (KB) = 878560 + 0: The total amount of wall time = 1230.587760 + 0: The maximum resident set size (KB) = 881580 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_31191/cpld_debug_noaero_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 446.668183 - 0: The maximum resident set size (KB) = 886888 + 0: The total amount of wall time = 442.372872 + 0: The maximum resident set size (KB) = 886036 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_31191/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_2476/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 = 163.309785 - 0: The maximum resident set size (KB) = 627672 + 0: The total amount of wall time = 165.362251 + 0: The maximum resident set size (KB) = 624896 Test 038 datm_cdeps_control_cfsr PASS REGRESSION TEST WAS SUCCESSFUL -Fri Jun 3 04:32:59 UTC 2022 -Elapsed time: 00h:45m:29s. Have a nice day! +Fri Jun 3 23:53:18 UTC 2022 +Elapsed time: 01h:05m:27s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b7ca3056af..7cb7499c36 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,25 +1,25 @@ -Thu Jun 2 17:17:58 UTC 2022 +Fri Jun 3 22:32:12 UTC 2022 Start Regression test -Compile 001 elapsed time 559 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 205 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 328 seconds. -DAPP=ATM -DCCPP_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 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 005 elapsed time 340 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 310 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 182 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 162 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 161 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 529 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 532 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 174 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 98 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 504 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 340 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 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_29839/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,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 = 406.068153 - 0: The maximum resident set size (KB) = 5011204 + 0: The total amount of wall time = 401.840491 + 0: The maximum resident set size (KB) = 5005048 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_29839/cpld_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +144,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 = 262.750753 - 0: The maximum resident set size (KB) = 4962100 + 0: The total amount of wall time = 243.734245 + 0: The maximum resident set size (KB) = 4966704 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_29839/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +204,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 = 501.531362 - 0: The maximum resident set size (KB) = 5491816 + 0: The total amount of wall time = 498.808099 + 0: The maximum resident set size (KB) = 5497380 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_29839/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +264,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 = 400.030538 - 0: The maximum resident set size (KB) = 5177576 + 0: The total amount of wall time = 402.368614 + 0: The maximum resident set size (KB) = 5174916 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_29839/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +324,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 = 334.888773 - 0: The maximum resident set size (KB) = 4737912 + 0: The total amount of wall time = 331.654114 + 0: The maximum resident set size (KB) = 4746820 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_29839/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +384,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 = 813.459612 - 0: The maximum resident set size (KB) = 4863204 + 0: The total amount of wall time = 796.790914 + 0: The maximum resident set size (KB) = 4871064 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_29839/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +444,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 = 476.032082 - 0: The maximum resident set size (KB) = 4910116 + 0: The total amount of wall time = 463.177377 + 0: The maximum resident set size (KB) = 4909720 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_29839/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +497,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 = 1230.495153 - 0: The maximum resident set size (KB) = 5666824 + 0: The total amount of wall time = 1212.627054 + 0: The maximum resident set size (KB) = 5663968 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_29839/cpld_restart_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +550,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 = 769.705016 - 0: The maximum resident set size (KB) = 5617360 + 0: The total amount of wall time = 768.508419 + 0: The maximum resident set size (KB) = 5647380 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_29839/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,14 +610,14 @@ 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 = 761.310968 - 0: The maximum resident set size (KB) = 5067816 + 0: The total amount of wall time = 757.101032 + 0: The maximum resident set size (KB) = 5070032 Test 010 cpld_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_29839/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -664,14 +664,14 @@ 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 = 125.817695 - 0: The maximum resident set size (KB) = 643220 + 0: The total amount of wall time = 126.970273 + 0: The maximum resident set size (KB) = 643464 Test 011 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_29839/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -714,28 +714,28 @@ 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.370862 - 0: The maximum resident set size (KB) = 638340 + 0: The total amount of wall time = 131.968988 + 0: The maximum resident set size (KB) = 637660 Test 012 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_29839/control_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2dwrtdecomp Checking test 013 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 = 119.203971 - 0: The maximum resident set size (KB) = 644324 + 0: The total amount of wall time = 118.275215 + 0: The maximum resident set size (KB) = 646616 Test 013 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_29839/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -778,14 +778,14 @@ 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.976735 - 0: The maximum resident set size (KB) = 695552 + 0: The total amount of wall time = 154.395152 + 0: The maximum resident set size (KB) = 697408 Test 014 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_29839/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -824,14 +824,14 @@ 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 = 71.320436 - 0: The maximum resident set size (KB) = 458792 + 0: The total amount of wall time = 66.198904 + 0: The maximum resident set size (KB) = 476408 Test 015 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_29839/control_fhzero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -874,14 +874,14 @@ 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 = 120.944748 - 0: The maximum resident set size (KB) = 641028 + 0: The total amount of wall time = 118.060634 + 0: The maximum resident set size (KB) = 649016 Test 016 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_29839/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -908,14 +908,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 122.512938 - 0: The maximum resident set size (KB) = 641160 + 0: The total amount of wall time = 120.601180 + 0: The maximum resident set size (KB) = 647424 Test 017 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_29839/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -926,16 +926,16 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.040787 - 0: The maximum resident set size (KB) = 649808 + 0: The total amount of wall time = 123.251241 + 0: The maximum resident set size (KB) = 647904 Test 018 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_29839/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 .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -944,14 +944,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 126.149503 - 0: The maximum resident set size (KB) = 644112 + 0: The total amount of wall time = 125.306922 + 0: The maximum resident set size (KB) = 642056 Test 019 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_29839/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,14 +990,14 @@ 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 = 337.417886 -0: The maximum resident set size (KB) = 821216 +0: The total amount of wall time = 330.993739 +0: The maximum resident set size (KB) = 820428 Test 020 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_29839/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.115128 - 0: The maximum resident set size (KB) = 801028 + 0: The total amount of wall time = 486.308645 + 0: The maximum resident set size (KB) = 802956 Test 021 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_29839/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1026,14 +1026,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 663.285479 - 0: The maximum resident set size (KB) = 1087044 + 0: The total amount of wall time = 651.876760 + 0: The maximum resident set size (KB) = 1089160 Test 022 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_29839/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1076,14 +1076,14 @@ 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 = 592.086146 - 0: The maximum resident set size (KB) = 1243548 + 0: The total amount of wall time = 590.602519 + 0: The maximum resident set size (KB) = 1243028 Test 023 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_29839/control_c384_progsigma +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_c384_progsigma Checking test 024 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1094,14 +1094,14 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 663.584867 - 0: The maximum resident set size (KB) = 1080540 + 0: The total amount of wall time = 669.090949 + 0: The maximum resident set size (KB) = 1086760 Test 024 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_29839/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1112,28 +1112,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 84.271718 - 0: The maximum resident set size (KB) = 644864 + 0: The total amount of wall time = 80.745166 + 0: The maximum resident set size (KB) = 646020 Test 025 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_29839/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.080087 - 0: The maximum resident set size (KB) = 483548 + 0: The total amount of wall time = 44.058185 + 0: The maximum resident set size (KB) = 488404 Test 026 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_29839/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 76.661240 - 0: The maximum resident set size (KB) = 650180 + 0: The total amount of wall time = 73.709001 + 0: The maximum resident set size (KB) = 647864 Test 027 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_29839/control_iovr4 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1166,14 +1166,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 129.611595 - 0: The maximum resident set size (KB) = 648824 + 0: The total amount of wall time = 125.473704 + 0: The maximum resident set size (KB) = 645360 Test 028 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_29839/control_iovr5 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.341912 - 0: The maximum resident set size (KB) = 644076 + 0: The total amount of wall time = 125.320691 + 0: The maximum resident set size (KB) = 645660 Test 029 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_29839/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.324579 - 0: The maximum resident set size (KB) = 1033908 + 0: The total amount of wall time = 166.390313 + 0: The maximum resident set size (KB) = 1039152 Test 030 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_29839/control_p8_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 325.015202 - 0: The maximum resident set size (KB) = 1035752 + 0: The total amount of wall time = 319.179215 + 0: The maximum resident set size (KB) = 1038664 Test 031 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_29839/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1314,14 +1314,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.704271 - 0: The maximum resident set size (KB) = 861916 + 0: The total amount of wall time = 89.642618 + 0: The maximum resident set size (KB) = 851952 Test 032 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_29839/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,14 +1364,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 175.301743 - 0: The maximum resident set size (KB) = 1026364 + 0: The total amount of wall time = 172.574877 + 0: The maximum resident set size (KB) = 1023348 Test 033 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_29839/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 204.480565 - 0: The maximum resident set size (KB) = 1112096 + 0: The total amount of wall time = 201.955973 + 0: The maximum resident set size (KB) = 1120820 Test 034 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_29839/control_p8_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1468,14 +1468,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 200.736695 - 0: The maximum resident set size (KB) = 1168424 + 0: The total amount of wall time = 197.415785 + 0: The maximum resident set size (KB) = 1162484 Test 035 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_29839/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,42 +1486,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 335.498141 - 0: The maximum resident set size (KB) = 835140 + 0: The total amount of wall time = 330.015875 + 0: The maximum resident set size (KB) = 818236 Test 036 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_29839/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_restart Checking test 037 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 = 184.395317 - 0: The maximum resident set size (KB) = 826776 + 0: The total amount of wall time = 181.859287 + 0: The maximum resident set size (KB) = 827884 Test 037 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_29839/regional_control_2dwrtdecomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_control_2dwrtdecomp Checking test 038 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 = 333.730210 - 0: The maximum resident set size (KB) = 828620 + 0: The total amount of wall time = 329.963045 + 0: The maximum resident set size (KB) = 817824 Test 038 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_29839/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 344.560643 - 0: The maximum resident set size (KB) = 809548 + 0: The total amount of wall time = 341.918001 + 0: The maximum resident set size (KB) = 794596 Test 039 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_29839/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1547,28 +1547,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 235.778844 - 0: The maximum resident set size (KB) = 832692 + 0: The total amount of wall time = 231.344415 + 0: The maximum resident set size (KB) = 831816 Test 040 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_29839/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 .........OK + Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc .........OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc .........OK + Comparing phyf000.nc .........OK + Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 329.298088 - 0: The maximum resident set size (KB) = 819700 + 0: The total amount of wall time = 326.306326 + 0: The maximum resident set size (KB) = 823772 Test 041 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_29839/regional_3km +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/regional_3km Checking test 042 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 259.943758 - 0: The maximum resident set size (KB) = 887660 + 0: The total amount of wall time = 254.296360 + 0: The maximum resident set size (KB) = 885108 Test 042 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_29839/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1633,14 +1633,14 @@ 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.836250 - 0: The maximum resident set size (KB) = 1044684 + 0: The total amount of wall time = 431.052647 + 0: The maximum resident set size (KB) = 1043836 Test 043 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_29839/rap_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_rrtmgp Checking test 044 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1687,14 +1687,14 @@ 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 = 465.544834 - 0: The maximum resident set size (KB) = 1205356 + 0: The total amount of wall time = 461.215211 + 0: The maximum resident set size (KB) = 1184592 Test 044 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_29839/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 300.185136 - 0: The maximum resident set size (KB) = 1203672 + 0: The total amount of wall time = 296.235155 + 0: The maximum resident set size (KB) = 1194916 Test 045 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_29839/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1759,14 +1759,14 @@ 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 = 519.492174 - 0: The maximum resident set size (KB) = 1093364 + 0: The total amount of wall time = 518.598785 + 0: The maximum resident set size (KB) = 1093004 Test 046 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_29839/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1805,14 +1805,14 @@ 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 = 224.078537 - 0: The maximum resident set size (KB) = 942796 + 0: The total amount of wall time = 219.730669 + 0: The maximum resident set size (KB) = 950100 Test 047 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_29839/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1859,14 +1859,14 @@ 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 = 439.320772 - 0: The maximum resident set size (KB) = 1037160 + 0: The total amount of wall time = 433.324969 + 0: The maximum resident set size (KB) = 1036332 Test 048 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_29839/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1905,14 +1905,14 @@ 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 = 221.013823 - 0: The maximum resident set size (KB) = 953928 + 0: The total amount of wall time = 219.582604 + 0: The maximum resident set size (KB) = 949312 Test 049 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_29839/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1959,14 +1959,14 @@ 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 = 417.702880 - 0: The maximum resident set size (KB) = 1034068 + 0: The total amount of wall time = 415.396631 + 0: The maximum resident set size (KB) = 1032296 Test 050 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_29839/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2013,14 +2013,14 @@ 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 = 427.394614 - 0: The maximum resident set size (KB) = 1020672 + 0: The total amount of wall time = 423.322718 + 0: The maximum resident set size (KB) = 1015664 Test 051 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_29839/rrfs_v1nssl +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 502.729998 - 0: The maximum resident set size (KB) = 703456 + 0: The total amount of wall time = 499.200213 + 0: The maximum resident set size (KB) = 704420 Test 052 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_29839/rrfs_v1nssl_nohailnoccn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 490.779381 - 0: The maximum resident set size (KB) = 734060 + 0: The total amount of wall time = 486.232587 + 0: The maximum resident set size (KB) = 733564 Test 053 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 180.910439 - 0: The maximum resident set size (KB) = 921688 + 0: The total amount of wall time = 176.120578 + 0: The maximum resident set size (KB) = 922044 Test 054 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2089,14 +2089,14 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 185.464959 - 0: The maximum resident set size (KB) = 927640 + 0: The total amount of wall time = 179.212799 + 0: The maximum resident set size (KB) = 926444 Test 055 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2105,14 +2105,14 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 199.549313 - 0: The maximum resident set size (KB) = 954016 + 0: The total amount of wall time = 196.546521 + 0: The maximum resident set size (KB) = 955448 Test 056 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_29839/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmg Checking test 057 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 329.900623 - 0: The maximum resident set size (KB) = 755148 + 0: The total amount of wall time = 324.820120 + 0: The maximum resident set size (KB) = 757100 Test 057 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_29839/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_csawmgt Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 326.299007 - 0: The maximum resident set size (KB) = 758808 + 0: The total amount of wall time = 320.505736 + 0: The maximum resident set size (KB) = 754256 Test 058 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_29839/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_flake Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2159,14 +2159,14 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.442268 - 0: The maximum resident set size (KB) = 760188 + 0: The total amount of wall time = 208.398728 + 0: The maximum resident set size (KB) = 757992 Test 059 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_29839/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_ras Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 170.209130 - 0: The maximum resident set size (KB) = 727244 + 0: The total amount of wall time = 168.550634 + 0: The maximum resident set size (KB) = 712848 Test 060 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_29839/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_thompson Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.893478 - 0: The maximum resident set size (KB) = 1074148 + 0: The total amount of wall time = 231.684170 + 0: The maximum resident set size (KB) = 1079368 Test 061 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2213,54 +2213,54 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 222.419807 - 0: The maximum resident set size (KB) = 1058684 + 0: The total amount of wall time = 219.068951 + 0: The maximum resident set size (KB) = 1056056 Test 062 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_29839/control_wam +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_wam Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 105.934681 - 0: The maximum resident set size (KB) = 614520 + 0: The total amount of wall time = 100.662745 + 0: The maximum resident set size (KB) = 614416 Test 063 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_29839/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 146.439081 - 0: The maximum resident set size (KB) = 805272 + 0: The total amount of wall time = 143.593383 + 0: The maximum resident set size (KB) = 805552 Test 064 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_29839/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 212.643831 - 0: The maximum resident set size (KB) = 855380 + 0: The total amount of wall time = 210.870794 + 0: The maximum resident set size (KB) = 860684 Test 065 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_29839/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_CubedSphereGrid_debug Checking test 066 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2287,415 +2287,415 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 163.481405 - 0: The maximum resident set size (KB) = 807572 + 0: The total amount of wall time = 153.685358 + 0: The maximum resident set size (KB) = 807032 Test 066 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_29839/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 Comparing sfcf001.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 150.021962 - 0: The maximum resident set size (KB) = 804420 + 0: The total amount of wall time = 147.060548 + 0: The maximum resident set size (KB) = 806592 Test 067 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_29839/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 169.636293 - 0: The maximum resident set size (KB) = 813596 + 0: The total amount of wall time = 163.554502 + 0: The maximum resident set size (KB) = 812788 Test 068 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_29839/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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.232502 - 0: The maximum resident set size (KB) = 812860 + 0: The total amount of wall time = 146.581900 + 0: The maximum resident set size (KB) = 808180 Test 069 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_29839/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 223.906661 - 0: The maximum resident set size (KB) = 858648 + 0: The total amount of wall time = 227.410264 + 0: The maximum resident set size (KB) = 861088 Test 070 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_29839/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 228.347056 - 0: The maximum resident set size (KB) = 859252 + 0: The total amount of wall time = 220.528279 + 0: The maximum resident set size (KB) = 854268 Test 071 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_29839/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 150.532671 - 0: The maximum resident set size (KB) = 817308 + 0: The total amount of wall time = 149.635835 + 0: The maximum resident set size (KB) = 817344 Test 072 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_29839/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 163.624772 - 0: The maximum resident set size (KB) = 867676 + 0: The total amount of wall time = 154.800386 + 0: The maximum resident set size (KB) = 864620 Test 073 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_29839/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 164.353415 - 0: The maximum resident set size (KB) = 1204564 + 0: The total amount of wall time = 160.315710 + 0: The maximum resident set size (KB) = 1199980 Test 074 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_29839/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 174.827404 - 0: The maximum resident set size (KB) = 1180732 + 0: The total amount of wall time = 171.693013 + 0: The maximum resident set size (KB) = 1170680 Test 075 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.205688 - 0: The maximum resident set size (KB) = 1171816 + 0: The total amount of wall time = 162.929798 + 0: The maximum resident set size (KB) = 1170584 Test 076 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_29839/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 188.877144 - 0: The maximum resident set size (KB) = 1202120 + 0: The total amount of wall time = 179.682568 + 0: The maximum resident set size (KB) = 1206916 Test 077 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 174.967338 - 0: The maximum resident set size (KB) = 1182944 + 0: The total amount of wall time = 172.985708 + 0: The maximum resident set size (KB) = 1178984 Test 078 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_29839/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 238.610268 - 0: The maximum resident set size (KB) = 851876 + 0: The total amount of wall time = 234.274944 + 0: The maximum resident set size (KB) = 834456 Test 079 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_29839/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 265.582680 - 0: The maximum resident set size (KB) = 1187336 + 0: The total amount of wall time = 260.999967 + 0: The maximum resident set size (KB) = 1187600 Test 080 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_29839/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.151371 - 0: The maximum resident set size (KB) = 1188120 + 0: The total amount of wall time = 258.000213 + 0: The maximum resident set size (KB) = 1186444 Test 081 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_29839/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 281.254024 - 0: The maximum resident set size (KB) = 1268268 + 0: The total amount of wall time = 282.937931 + 0: The maximum resident set size (KB) = 1269640 Test 082 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.989539 - 0: The maximum resident set size (KB) = 1192164 + 0: The total amount of wall time = 271.199385 + 0: The maximum resident set size (KB) = 1194848 Test 083 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_29839/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 268.739005 - 0: The maximum resident set size (KB) = 1186288 + 0: The total amount of wall time = 270.594618 + 0: The maximum resident set size (KB) = 1186804 Test 084 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_29839/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 269.255538 - 0: The maximum resident set size (KB) = 1189816 + 0: The total amount of wall time = 265.456301 + 0: The maximum resident set size (KB) = 1188424 Test 085 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_29839/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 265.556477 - 0: The maximum resident set size (KB) = 1183132 + 0: The total amount of wall time = 267.702589 + 0: The maximum resident set size (KB) = 1185548 Test 086 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 266.637385 - 0: The maximum resident set size (KB) = 1186240 + 0: The total amount of wall time = 258.634942 + 0: The maximum resident set size (KB) = 1189264 Test 087 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_29839/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 260.423863 - 0: The maximum resident set size (KB) = 1184352 + 0: The total amount of wall time = 259.939094 + 0: The maximum resident set size (KB) = 1188620 Test 088 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_29839/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 442.291098 - 0: The maximum resident set size (KB) = 1318316 + 0: The total amount of wall time = 437.987433 + 0: The maximum resident set size (KB) = 1315424 Test 089 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_29839/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 259.667878 - 0: The maximum resident set size (KB) = 1182904 + 0: The total amount of wall time = 261.240906 + 0: The maximum resident set size (KB) = 1191500 Test 090 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_29839/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 437.824649 - 0: The maximum resident set size (KB) = 1184444 + 0: The total amount of wall time = 431.032751 + 0: The maximum resident set size (KB) = 1186176 Test 091 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_29839/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 266.470386 - 0: The maximum resident set size (KB) = 1186696 + 0: The total amount of wall time = 261.793574 + 0: The maximum resident set size (KB) = 1183496 Test 092 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_29839/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 281.041997 - 0: The maximum resident set size (KB) = 519064 + 0: The total amount of wall time = 275.422350 + 0: The maximum resident set size (KB) = 521028 Test 093 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_29839/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 315.041443 - 0: The maximum resident set size (KB) = 977984 + 0: The total amount of wall time = 315.893529 + 0: The maximum resident set size (KB) = 976740 Test 094 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 408.967245 - 0: The maximum resident set size (KB) = 1352584 + 0: The total amount of wall time = 391.958746 + 0: The maximum resident set size (KB) = 1349200 Test 095 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2704,14 +2704,14 @@ 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.778159 - 0: The maximum resident set size (KB) = 1212848 + 0: The total amount of wall time = 390.689574 + 0: The maximum resident set size (KB) = 1206636 Test 096 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2720,14 +2720,14 @@ 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 = 750.464433 - 0: The maximum resident set size (KB) = 1232376 + 0: The total amount of wall time = 741.775567 + 0: The maximum resident set size (KB) = 1230116 Test 097 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2738,28 +2738,28 @@ 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 = 848.268459 - 0: The maximum resident set size (KB) = 1195876 + 0: The total amount of wall time = 836.565325 + 0: The maximum resident set size (KB) = 1198840 Test 098 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 454.512262 - 0: The maximum resident set size (KB) = 533668 + 0: The total amount of wall time = 451.890876 + 0: The maximum resident set size (KB) = 541520 Test 099 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2768,28 +2768,28 @@ 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 = 507.373401 - 0: The maximum resident set size (KB) = 593476 + 0: The total amount of wall time = 502.353177 + 0: The maximum resident set size (KB) = 588192 Test 100 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 210.672320 - 0: The maximum resident set size (KB) = 383660 + 0: The total amount of wall time = 207.477614 + 0: The maximum resident set size (KB) = 384120 Test 101 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2802,42 +2802,42 @@ 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.074787 - 0: The maximum resident set size (KB) = 384156 + 0: The total amount of wall time = 568.419806 + 0: The maximum resident set size (KB) = 417948 Test 102 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 278.149319 - 0: The maximum resident set size (KB) = 547432 + 0: The total amount of wall time = 271.716910 + 0: The maximum resident set size (KB) = 540368 Test 103 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 264.027186 - 0: The maximum resident set size (KB) = 549432 + 0: The total amount of wall time = 260.225087 + 0: The maximum resident set size (KB) = 545872 Test 104 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2846,14 +2846,14 @@ 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 = 271.517024 - 0: The maximum resident set size (KB) = 627272 + 0: The total amount of wall time = 269.489330 + 0: The maximum resident set size (KB) = 630684 Test 105 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2864,28 +2864,28 @@ 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 = 632.640138 - 0: The maximum resident set size (KB) = 558408 + 0: The total amount of wall time = 614.735750 + 0: The maximum resident set size (KB) = 578972 Test 106 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 79.354789 - 0: The maximum resident set size (KB) = 402688 + 0: The total amount of wall time = 77.449696 + 0: The maximum resident set size (KB) = 399408 Test 107 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_29839/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2893,14 +2893,14 @@ Checking test 108 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.738521 - 0: The maximum resident set size (KB) = 1204980 + 0: The total amount of wall time = 393.973389 + 0: The maximum resident set size (KB) = 1210864 Test 108 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_29839/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2908,118 +2908,118 @@ Checking test 109 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 391.359051 - 0: The maximum resident set size (KB) = 1201044 + 0: The total amount of wall time = 394.564835 + 0: The maximum resident set size (KB) = 1210288 Test 109 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_29839/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 .... 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 = 943.514611 - 0: The maximum resident set size (KB) = 1018468 + 0: The total amount of wall time = 951.021398 + 0: The maximum resident set size (KB) = 1014620 Test 110 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_29839/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.154199 - 0: The maximum resident set size (KB) = 1021164 + 0: The total amount of wall time = 147.227199 + 0: The maximum resident set size (KB) = 1038340 Test 111 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_29839/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 90.339108 - 0: The maximum resident set size (KB) = 1006932 + 0: The total amount of wall time = 88.266232 + 0: The maximum resident set size (KB) = 1007784 Test 112 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_29839/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 .... 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.245627 - 0: The maximum resident set size (KB) = 928688 + 0: The total amount of wall time = 146.487170 + 0: The maximum resident set size (KB) = 932104 Test 113 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_29839/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 .... 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.574726 - 0: The maximum resident set size (KB) = 936548 + 0: The total amount of wall time = 146.682954 + 0: The maximum resident set size (KB) = 931216 Test 114 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_29839/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 .... 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.916645 - 0: The maximum resident set size (KB) = 931248 + 0: The total amount of wall time = 147.719931 + 0: The maximum resident set size (KB) = 938840 Test 115 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_29839/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 149.484993 - 0: The maximum resident set size (KB) = 1024764 + 0: The total amount of wall time = 150.057604 + 0: The maximum resident set size (KB) = 1016648 Test 116 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_29839/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 .... 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.490284 - 0: The maximum resident set size (KB) = 938196 + 0: The total amount of wall time = 145.541893 + 0: The maximum resident set size (KB) = 933248 Test 117 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_29839/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3028,14 +3028,14 @@ 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 = 318.990365 - 0: The maximum resident set size (KB) = 849768 + 0: The total amount of wall time = 305.653781 + 0: The maximum resident set size (KB) = 847204 Test 118 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_29839/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3044,64 +3044,64 @@ 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 = 318.574539 - 0: The maximum resident set size (KB) = 855776 + 0: The total amount of wall time = 302.808028 + 0: The maximum resident set size (KB) = 854636 Test 119 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_29839/datm_cdeps_multiple_files_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 .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.104522 - 0: The maximum resident set size (KB) = 1031732 + 0: The total amount of wall time = 147.945078 + 0: The maximum resident set size (KB) = 1020036 Test 120 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_29839/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 .... 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.380025 - 0: The maximum resident set size (KB) = 2246728 + 0: The total amount of wall time = 200.363226 + 0: The maximum resident set size (KB) = 2244948 Test 121 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_29839/datm_cdeps_gfs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/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 = 205.040239 - 0: The maximum resident set size (KB) = 2241480 + 0: The total amount of wall time = 200.938689 + 0: The maximum resident set size (KB) = 2183676 Test 122 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_29839/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 .... 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 = 429.640096 - 0: The maximum resident set size (KB) = 986420 + 0: The total amount of wall time = 439.197255 + 0: The maximum resident set size (KB) = 976968 Test 123 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_29839/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3145,14 +3145,14 @@ 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 = 87.213766 - 0: The maximum resident set size (KB) = 670980 + 0: The total amount of wall time = 79.364248 + 0: The maximum resident set size (KB) = 671972 Test 124 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_29839/atmaero_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16654/atmaero_control_p8 Checking test 125 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3196,12 +3196,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 = 326.431922 - 0: The maximum resident set size (KB) = 5116512 + 0: The total amount of wall time = 323.601171 + 0: The maximum resident set size (KB) = 5107332 Test 125 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 18:26:24 UTC 2022 -Elapsed time: 01h:08m:26s. Have a nice day! +Sat Jun 4 00:00:54 UTC 2022 +Elapsed time: 01h:28m:43s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index 884c1545f3..d285dce15c 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,25 +1,25 @@ -Thu Jun 2 17:46:52 GMT 2022 +Fri Jun 3 22:31:52 GMT 2022 Start Regression test -Compile 001 elapsed time 1790 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 312 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1404 seconds. -DAPP=ATM -DCCPP_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 1482 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 1446 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 1204 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 242 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 241 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 239 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 194 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 1569 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 1588 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 266 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 014 elapsed time 144 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1545 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 016 elapsed time 1315 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +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_32159/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 @@ -84,14 +84,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 = 533.078654 - 0: The maximum resident set size (KB) = 2025276 + 0: The total amount of wall time = 599.957830 + 0: The maximum resident set size (KB) = 2029092 Test 001 cpld_control_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_32159/cpld_restart_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 @@ -144,14 +144,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 = 331.481425 - 0: The maximum resident set size (KB) = 1987940 + 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_32159/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +204,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 = 1049.461467 - 0: The maximum resident set size (KB) = 2576988 + 0: The total amount of wall time = 1090.213371 + 0: The maximum resident set size (KB) = 2575208 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_32159/cpld_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +264,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 = 539.499759 - 0: The maximum resident set size (KB) = 2181348 + 0: The total amount of wall time = 606.979897 + 0: The maximum resident set size (KB) = 2173000 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_32159/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +324,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 = 459.109970 - 0: The maximum resident set size (KB) = 1865392 + 0: The total amount of wall time = 458.555535 + 0: The maximum resident set size (KB) = 1891496 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_32159/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/cpld_debug_p8 Checking test 006 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -384,14 +384,14 @@ 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 = 990.584890 - 0: The maximum resident set size (KB) = 2086948 + 0: The total amount of wall time = 1010.443045 + 0: The maximum resident set size (KB) = 2071344 Test 006 cpld_debug_p8 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_32159/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control Checking test 007 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -438,14 +438,14 @@ 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 = 178.352719 - 0: The maximum resident set size (KB) = 585108 + 0: The total amount of wall time = 209.577218 + 0: The maximum resident set size (KB) = 584296 Test 007 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_32159/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_decomp Checking test 008 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -488,28 +488,28 @@ 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 = 183.633780 - 0: The maximum resident set size (KB) = 572584 + 0: The total amount of wall time = 188.821852 + 0: The maximum resident set size (KB) = 574316 Test 008 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_32159/control_2dwrtdecomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2dwrtdecomp Checking test 009 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 = 173.156161 - 0: The maximum resident set size (KB) = 581944 + 0: The total amount of wall time = 171.177623 + 0: The maximum resident set size (KB) = 580176 Test 009 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_32159/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_2threads Checking test 010 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -552,14 +552,14 @@ 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 = 405.204963 - 0: The maximum resident set size (KB) = 647468 + 0: The total amount of wall time = 1213.888950 + 0: The maximum resident set size (KB) = 638604 Test 010 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_32159/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_restart Checking test 011 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -598,14 +598,14 @@ 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 = 95.078282 - 0: The maximum resident set size (KB) = 364160 + 0: The total amount of wall time = 92.397535 + 0: The maximum resident set size (KB) = 368960 Test 011 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_32159/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/control_fhzero Checking test 012 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -648,14 +648,14 @@ 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 = 167.289762 - 0: The maximum resident set size (KB) = 584296 + 0: The total amount of wall time = 182.887819 + 0: The maximum resident set size (KB) = 585076 Test 012 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_32159/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 .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -682,14 +682,14 @@ Checking test 013 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 172.853647 - 0: The maximum resident set size (KB) = 580288 + 0: The total amount of wall time = 171.624033 + 0: The maximum resident set size (KB) = 582980 Test 013 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -700,16 +700,16 @@ Checking test 014 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.678737 - 0: The maximum resident set size (KB) = 584512 + 0: The total amount of wall time = 172.072961 + 0: The maximum resident set size (KB) = 584188 -Test 014 control_latlon PASS Tries: 2 +Test 014 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_32159/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 .... - Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK @@ -718,14 +718,14 @@ Checking test 015 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 176.250490 - 0: The maximum resident set size (KB) = 587960 + 0: The total amount of wall time = 183.511878 + 0: The maximum resident set size (KB) = 584824 Test 015 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -764,16 +764,32 @@ 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 = 564.305205 -0: The maximum resident set size (KB) = 785268 +0: The total amount of wall time = 575.751280 +0: The maximum resident set size (KB) = 787132 Test 016 control_c48 PASS -Test 017 control_c192 FAIL + +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 .... + Comparing sfcf000.nc .........OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........OK + Comparing atmf024.nc .........OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + + 0: The total amount of wall time = 699.858711 + 0: The maximum resident set size (KB) = 734524 + +Test 017 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_32159/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 @@ -784,14 +800,14 @@ Checking test 018 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 882.942582 - 0: The maximum resident set size (KB) = 1070648 + 0: The total amount of wall time = 948.750254 + 0: The maximum resident set size (KB) = 1073704 Test 018 control_c384 PASS 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -834,14 +850,14 @@ 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 = 842.255966 - 0: The maximum resident set size (KB) = 1158592 + 0: The total amount of wall time = 924.858969 + 0: The maximum resident set size (KB) = 1161464 Test 019 control_c384gdas PASS 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -852,14 +868,14 @@ Checking test 020 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 910.655871 - 0: The maximum resident set size (KB) = 993192 + 0: The total amount of wall time = 951.234163 + 0: The maximum resident set size (KB) = 995032 Test 020 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -870,28 +886,28 @@ Checking test 021 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 770.055268 - 0: The maximum resident set size (KB) = 585196 + 0: The total amount of wall time = 121.864707 + 0: The maximum resident set size (KB) = 584448 Test 021 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_32159/control_stochy_restart +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 .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 62.783929 - 0: The maximum resident set size (KB) = 392312 + 0: The total amount of wall time = 62.740726 + 0: The maximum resident set size (KB) = 390732 Test 022 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -902,14 +918,14 @@ Checking test 023 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 105.892701 - 0: The maximum resident set size (KB) = 587024 + 0: The total amount of wall time = 106.851299 + 0: The maximum resident set size (KB) = 586116 Test 023 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -924,14 +940,14 @@ Checking test 024 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 177.743912 - 0: The maximum resident set size (KB) = 579064 + 0: The total amount of wall time = 214.444418 + 0: The maximum resident set size (KB) = 581948 Test 024 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -946,14 +962,14 @@ Checking test 025 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 178.593350 - 0: The maximum resident set size (KB) = 584180 + 0: The total amount of wall time = 181.961655 + 0: The maximum resident set size (KB) = 581308 Test 025 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1000,14 +1016,14 @@ 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 = 228.104553 - 0: The maximum resident set size (KB) = 967404 + 0: The total amount of wall time = 257.488484 + 0: The maximum resident set size (KB) = 976904 Test 026 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1026,14 +1042,14 @@ Checking test 027 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 439.381967 - 0: The maximum resident set size (KB) = 976660 + 0: The total amount of wall time = 465.007826 + 0: The maximum resident set size (KB) = 977380 Test 027 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_32159/control_restart_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 .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1072,14 +1088,14 @@ 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 = 122.875833 - 0: The maximum resident set size (KB) = 774476 + 0: The total amount of wall time = 125.532976 + 0: The maximum resident set size (KB) = 769448 Test 028 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_32159/control_decomp_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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1122,14 +1138,14 @@ 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 = 234.629419 - 0: The maximum resident set size (KB) = 965016 + 0: The total amount of wall time = 267.096110 + 0: The maximum resident set size (KB) = 965500 Test 029 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_32159/control_2threads_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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1172,14 +1188,14 @@ 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 = 541.504843 - 0: The maximum resident set size (KB) = 1047836 + 0: The total amount of wall time = 550.506272 + 0: The maximum resident set size (KB) = 1058192 Test 030 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1226,14 +1242,14 @@ 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 = 267.396876 - 0: The maximum resident set size (KB) = 1093860 + 0: The total amount of wall time = 298.226156 + 0: The maximum resident set size (KB) = 1104100 Test 031 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_32159/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 .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1244,42 +1260,42 @@ Checking test 032 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 459.244624 - 0: The maximum resident set size (KB) = 745520 + 0: The total amount of wall time = 487.408185 + 0: The maximum resident set size (KB) = 747372 Test 032 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_32159/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/regional_restart Checking test 033 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 = 260.903692 - 0: The maximum resident set size (KB) = 737140 + 0: The total amount of wall time = 305.335109 + 0: The maximum resident set size (KB) = 740516 Test 033 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_32159/regional_control_2dwrtdecomp +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 .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 461.333554 - 0: The maximum resident set size (KB) = 745608 + 0: The total amount of wall time = 488.321321 + 0: The maximum resident set size (KB) = 742272 Test 034 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_32159/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 .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1287,28 +1303,28 @@ Checking test 035 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 488.292604 - 0: The maximum resident set size (KB) = 716048 + 0: The total amount of wall time = 510.032393 + 0: The maximum resident set size (KB) = 722532 Test 035 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_32159/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 - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 454.415051 - 0: The maximum resident set size (KB) = 733980 + 0: The total amount of wall time = 476.798313 + 0: The maximum resident set size (KB) = 737832 Test 036 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_32159/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 .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1319,14 +1335,14 @@ Checking test 037 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 355.207477 - 0: The maximum resident set size (KB) = 780292 + 0: The total amount of wall time = 386.426677 + 0: The maximum resident set size (KB) = 783316 Test 037 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1373,14 +1389,14 @@ 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 = 583.770976 - 0: The maximum resident set size (KB) = 965368 + 0: The total amount of wall time = 599.213230 + 0: The maximum resident set size (KB) = 967856 Test 038 rap_control PASS 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1427,14 +1443,14 @@ 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 = 614.870664 - 0: The maximum resident set size (KB) = 1092440 + 0: The total amount of wall time = 651.229937 + 0: The maximum resident set size (KB) = 1094812 Test 039 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_32159/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1445,14 +1461,14 @@ Checking test 040 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK - 0: The total amount of wall time = 846.946917 - 0: The maximum resident set size (KB) = 1095980 + 0: The total amount of wall time = 864.644998 + 0: The maximum resident set size (KB) = 1097484 Test 040 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_32159/rap_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196604/rap_restart Checking test 041 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1491,14 +1507,14 @@ 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 = 294.179964 - 0: The maximum resident set size (KB) = 816572 + 0: The total amount of wall time = 298.193298 + 0: The maximum resident set size (KB) = 813956 Test 041 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1545,14 +1561,14 @@ 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 = 580.378274 - 0: The maximum resident set size (KB) = 964128 + 0: The total amount of wall time = 584.954757 + 0: The maximum resident set size (KB) = 953592 Test 042 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_32159/rap_sfcdiff_restart +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 .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1591,14 +1607,14 @@ 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 = 296.635292 - 0: The maximum resident set size (KB) = 813452 + 0: The total amount of wall time = 299.781636 + 0: The maximum resident set size (KB) = 816628 Test 043 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1645,14 +1661,14 @@ 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 = 556.169901 - 0: The maximum resident set size (KB) = 964480 + 0: The total amount of wall time = 554.814382 + 0: The maximum resident set size (KB) = 951564 -Test 044 hrrr_control PASS Tries: 2 +Test 044 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1699,14 +1715,14 @@ 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 = 576.256864 - 0: The maximum resident set size (KB) = 966344 + 0: The total amount of wall time = 631.725787 + 0: The maximum resident set size (KB) = 960924 Test 045 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1721,14 +1737,14 @@ Checking test 046 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 668.143117 - 0: The maximum resident set size (KB) = 643112 + 0: The total amount of wall time = 720.902466 + 0: The maximum resident set size (KB) = 643908 Test 046 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1743,14 +1759,14 @@ Checking test 047 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 655.810213 - 0: The maximum resident set size (KB) = 648644 + 0: The total amount of wall time = 715.017511 + 0: The maximum resident set size (KB) = 644484 Test 047 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1759,14 +1775,14 @@ Checking test 048 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 243.421668 - 0: The maximum resident set size (KB) = 848740 + 0: The total amount of wall time = 241.603763 + 0: The maximum resident set size (KB) = 849736 -Test 048 rrfs_conus13km_hrrr_warm PASS Tries: 2 +Test 048 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1775,14 +1791,14 @@ Checking test 049 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 246.085804 - 0: The maximum resident set size (KB) = 848776 + 0: The total amount of wall time = 248.027616 + 0: The maximum resident set size (KB) = 850908 -Test 049 rrfs_conus13km_radar_tten_warm PASS Tries: 2 +Test 049 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1791,14 +1807,14 @@ Checking test 050 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 267.677972 - 0: The maximum resident set size (KB) = 877836 + 0: The total amount of wall time = 275.716065 + 0: The maximum resident set size (KB) = 878364 Test 050 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1809,14 +1825,14 @@ Checking test 051 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 440.440803 - 0: The maximum resident set size (KB) = 686164 + 0: The total amount of wall time = 493.465100 + 0: The maximum resident set size (KB) = 685268 Test 051 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1827,14 +1843,14 @@ Checking test 052 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 433.766308 - 0: The maximum resident set size (KB) = 690036 + 0: The total amount of wall time = 486.465041 + 0: The maximum resident set size (KB) = 688340 Test 052 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1845,14 +1861,14 @@ Checking test 053 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 284.746584 - 0: The maximum resident set size (KB) = 700020 + 0: The total amount of wall time = 336.898360 + 0: The maximum resident set size (KB) = 694568 Test 053 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1863,14 +1879,14 @@ Checking test 054 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 236.958432 - 0: The maximum resident set size (KB) = 656460 + 0: The total amount of wall time = 286.829647 + 0: The maximum resident set size (KB) = 655520 Test 054 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1881,14 +1897,14 @@ Checking test 055 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 315.183880 - 0: The maximum resident set size (KB) = 1009192 + 0: The total amount of wall time = 371.201934 + 0: The maximum resident set size (KB) = 1004380 Test 055 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1899,54 +1915,54 @@ Checking test 056 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.552626 - 0: The maximum resident set size (KB) = 1001124 + 0: The total amount of wall time = 351.282929 + 0: The maximum resident set size (KB) = 993776 Test 056 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_32159/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 .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 138.396034 - 0: The maximum resident set size (KB) = 460204 + 0: The total amount of wall time = 201.880155 + 0: The maximum resident set size (KB) = 463136 Test 057 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 195.206871 - 0: The maximum resident set size (KB) = 742504 + 0: The total amount of wall time = 214.158649 + 0: The maximum resident set size (KB) = 745496 Test 058 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_32159/control_2threads_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.778420 - 0: The maximum resident set size (KB) = 801908 + 0: The total amount of wall time = 376.917059 + 0: The maximum resident set size (KB) = 806492 Test 059 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_32159/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 .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1973,415 +1989,415 @@ Checking test 060 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 215.017905 - 0: The maximum resident set size (KB) = 743008 + 0: The total amount of wall time = 241.314737 + 0: The maximum resident set size (KB) = 746028 Test 060 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.676317 - 0: The maximum resident set size (KB) = 743944 + 0: The total amount of wall time = 202.155279 + 0: The maximum resident set size (KB) = 743968 Test 061 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 227.214822 - 0: The maximum resident set size (KB) = 751060 + 0: The total amount of wall time = 223.889839 + 0: The maximum resident set size (KB) = 749488 Test 062 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.911818 - 0: The maximum resident set size (KB) = 754476 + 0: The total amount of wall time = 213.490152 + 0: The maximum resident set size (KB) = 754048 Test 063 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 314.354587 - 0: The maximum resident set size (KB) = 799808 + 0: The total amount of wall time = 317.213060 + 0: The maximum resident set size (KB) = 799736 Test 064 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 313.553975 - 0: The maximum resident set size (KB) = 800892 + 0: The total amount of wall time = 307.606591 + 0: The maximum resident set size (KB) = 800844 Test 065 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 211.998087 - 0: The maximum resident set size (KB) = 754864 + 0: The total amount of wall time = 204.881093 + 0: The maximum resident set size (KB) = 759852 Test 066 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.764431 - 0: The maximum resident set size (KB) = 804676 + 0: The total amount of wall time = 205.646793 + 0: The maximum resident set size (KB) = 813888 Test 067 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 225.472529 - 0: The maximum resident set size (KB) = 1145264 + 0: The total amount of wall time = 222.918867 + 0: The maximum resident set size (KB) = 1140560 Test 068 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.297103 - 0: The maximum resident set size (KB) = 1118964 + 0: The total amount of wall time = 227.953951 + 0: The maximum resident set size (KB) = 1111856 Test 069 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 226.290745 - 0: The maximum resident set size (KB) = 1113652 + 0: The total amount of wall time = 224.577184 + 0: The maximum resident set size (KB) = 1109672 Test 070 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_32159/control_thompson_extdiag_debug +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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 249.183173 - 0: The maximum resident set size (KB) = 1145676 + 0: The total amount of wall time = 355.740735 + 0: The maximum resident set size (KB) = 1143932 Test 071 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 232.012125 - 0: The maximum resident set size (KB) = 1114960 + 0: The total amount of wall time = 226.164238 + 0: The maximum resident set size (KB) = 1117824 Test 072 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_32159/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 328.772902 - 0: The maximum resident set size (KB) = 753796 + 0: The total amount of wall time = 324.092526 + 0: The maximum resident set size (KB) = 758668 Test 073 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.017239 - 0: The maximum resident set size (KB) = 1122400 + 0: The total amount of wall time = 351.063110 + 0: The maximum resident set size (KB) = 1117532 Test 074 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_32159/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 352.013447 - 0: The maximum resident set size (KB) = 1117328 + 0: The total amount of wall time = 349.794356 + 0: The maximum resident set size (KB) = 1126352 Test 075 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 378.700612 - 0: The maximum resident set size (KB) = 1200680 + 0: The total amount of wall time = 370.557815 + 0: The maximum resident set size (KB) = 1202944 Test 076 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 372.438979 - 0: The maximum resident set size (KB) = 1126228 + 0: The total amount of wall time = 360.949735 + 0: The maximum resident set size (KB) = 1118468 Test 077 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_32159/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.708019 - 0: The maximum resident set size (KB) = 1126080 + 0: The total amount of wall time = 360.628581 + 0: The maximum resident set size (KB) = 1117456 Test 078 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.504920 - 0: The maximum resident set size (KB) = 1123396 + 0: The total amount of wall time = 350.478401 + 0: The maximum resident set size (KB) = 1125868 Test 079 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 362.369757 - 0: The maximum resident set size (KB) = 1122408 + 0: The total amount of wall time = 355.756053 + 0: The maximum resident set size (KB) = 1118548 Test 080 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.788384 - 0: The maximum resident set size (KB) = 1115848 + 0: The total amount of wall time = 358.356916 + 0: The maximum resident set size (KB) = 1126188 Test 081 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 355.063434 - 0: The maximum resident set size (KB) = 1119840 + 0: The total amount of wall time = 349.950683 + 0: The maximum resident set size (KB) = 1119832 Test 082 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 604.396753 - 0: The maximum resident set size (KB) = 1252904 + 0: The total amount of wall time = 589.228090 + 0: The maximum resident set size (KB) = 1253572 Test 083 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 357.545242 - 0: The maximum resident set size (KB) = 1131272 + 0: The total amount of wall time = 359.987228 + 0: The maximum resident set size (KB) = 1130928 Test 084 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 580.054141 - 0: The maximum resident set size (KB) = 1117956 + 0: The total amount of wall time = 582.558447 + 0: The maximum resident set size (KB) = 1122956 Test 085 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 363.917583 - 0: The maximum resident set size (KB) = 1122660 + 0: The total amount of wall time = 351.147208 + 0: The maximum resident set size (KB) = 1123648 Test 086 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_32159/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 .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 370.996775 - 0: The maximum resident set size (KB) = 440788 + 0: The total amount of wall time = 368.831249 + 0: The maximum resident set size (KB) = 424036 Test 087 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 750.219278 - 0: The maximum resident set size (KB) = 1154692 + 0: The total amount of wall time = 748.480321 + 0: The maximum resident set size (KB) = 1172160 Test 088 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 887.971768 - 0: The maximum resident set size (KB) = 1547164 + 0: The total amount of wall time = 884.235716 + 0: The maximum resident set size (KB) = 1545872 Test 089 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2390,14 +2406,14 @@ 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 = 553.303974 - 0: The maximum resident set size (KB) = 1270756 + 0: The total amount of wall time = 554.649413 + 0: The maximum resident set size (KB) = 1268352 Test 090 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2406,14 +2422,14 @@ 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 = 922.287116 - 0: The maximum resident set size (KB) = 1297584 + 0: The total amount of wall time = 932.490443 + 0: The maximum resident set size (KB) = 1290772 Test 091 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2424,14 +2440,14 @@ 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 = 1024.320664 - 0: The maximum resident set size (KB) = 1307372 + 0: The total amount of wall time = 1042.495534 + 0: The maximum resident set size (KB) = 1316196 Test 092 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2439,14 +2455,14 @@ Checking test 093 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 534.772658 - 0: The maximum resident set size (KB) = 1279284 + 0: The total amount of wall time = 528.301876 + 0: The maximum resident set size (KB) = 1277496 Test 093 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_32159/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2454,118 +2470,118 @@ Checking test 094 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 538.781138 - 0: The maximum resident set size (KB) = 1267132 + 0: The total amount of wall time = 525.351946 + 0: The maximum resident set size (KB) = 1272696 Test 094 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_32159/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 .... 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 = 1243.775360 - 0: The maximum resident set size (KB) = 950300 + 0: The total amount of wall time = 1224.612180 + 0: The maximum resident set size (KB) = 951868 Test 095 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_32159/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 .... 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 = 197.621280 - 0: The maximum resident set size (KB) = 915272 + 0: The total amount of wall time = 200.059577 + 0: The maximum resident set size (KB) = 899540 Test 096 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_32159/datm_cdeps_restart_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 .... 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.838482 - 0: The maximum resident set size (KB) = 895892 + 0: The total amount of wall time = 126.228646 + 0: The maximum resident set size (KB) = 901092 Test 097 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_32159/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 .... 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 = 193.943939 - 0: The maximum resident set size (KB) = 809768 + 0: The total amount of wall time = 196.192579 + 0: The maximum resident set size (KB) = 821340 Test 098 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_32159/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 .... 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 = 194.331173 - 0: The maximum resident set size (KB) = 816796 + 0: The total amount of wall time = 199.709082 + 0: The maximum resident set size (KB) = 811164 Test 099 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_32159/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 .... 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 = 194.780739 - 0: The maximum resident set size (KB) = 811960 + 0: The total amount of wall time = 199.615382 + 0: The maximum resident set size (KB) = 812520 Test 100 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_32159/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 .... 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 = 196.562407 - 0: The maximum resident set size (KB) = 915648 + 0: The total amount of wall time = 204.904864 + 0: The maximum resident set size (KB) = 918676 Test 101 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_32159/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 .... 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 = 192.431926 - 0: The maximum resident set size (KB) = 806456 + 0: The total amount of wall time = 196.686378 + 0: The maximum resident set size (KB) = 812160 Test 102 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_32159/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2574,14 +2590,14 @@ 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 = 436.424184 - 0: The maximum resident set size (KB) = 735680 + 0: The total amount of wall time = 441.678915 + 0: The maximum resident set size (KB) = 754584 Test 103 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_32159/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2590,64 +2606,64 @@ 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 = 487.882246 - 0: The maximum resident set size (KB) = 705912 + 0: The total amount of wall time = 453.851696 + 0: The maximum resident set size (KB) = 700876 Test 104 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_32159/datm_cdeps_multiple_files_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 .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 197.519100 - 0: The maximum resident set size (KB) = 901740 + 0: The total amount of wall time = 199.358030 + 0: The maximum resident set size (KB) = 906956 Test 105 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_32159/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 .... 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 = 268.966903 - 0: The maximum resident set size (KB) = 2122796 + 0: The total amount of wall time = 290.387642 + 0: The maximum resident set size (KB) = 2064452 Test 106 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_32159/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 .... 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 = 271.214522 - 0: The maximum resident set size (KB) = 2120468 + 0: The total amount of wall time = 281.681891 + 0: The maximum resident set size (KB) = 2113736 Test 107 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_32159/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 .... 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 = 577.960970 - 0: The maximum resident set size (KB) = 885884 + 0: The total amount of wall time = 573.984548 + 0: The maximum resident set size (KB) = 904176 Test 108 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2691,14 +2707,14 @@ 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 = 110.452935 - 0: The maximum resident set size (KB) = 609560 + 0: The total amount of wall time = 112.829956 + 0: The maximum resident set size (KB) = 605324 Test 109 control_atmwav 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_32159/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2742,41 +2758,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 = 432.245237 - 0: The maximum resident set size (KB) = 1736872 + 0: The total amount of wall time = 438.924162 + 0: The maximum resident set size (KB) = 1718728 Test 110 atmaero_control_p8 PASS -FAILED TESTS: -Test control_c192 017 failed in run_test failed - -REGRESSION TEST FAILED -Thu Jun 2 20:38:18 GMT 2022 -Elapsed time: 02h:51m:26s. Have a nice day! - -Thu Jun 2 20:57:52 GMT 2022 -Start Regression test - -Compile 001 elapsed time 1421 seconds. -DAPP=ATM -DCCPP_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 - -baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/INTEL/control_c192 -working dir = /lfs4/HFIP/hfv3gfs/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_211696/control_c192 -Checking test 001 control_c192 results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc .........OK - Comparing atmf024.nc .........OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - - 0: The total amount of wall time = 683.403148 - 0: The maximum resident set size (KB) = 727056 - -Test 001 control_c192 PASS - REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 21:37:11 GMT 2022 -Elapsed time: 00h:39m:20s. Have a nice day! +Fri Jun 3 23:56:23 GMT 2022 +Elapsed time: 01h:24m:32s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 86150dc01c..a882efdb2d 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,27 +1,25 @@ -Thu Jun 2 10:32:16 CDT 2022 +Fri Jun 3 17:32:24 CDT 2022 Start Regression test -Test 007 compile FAIL - -Compile 001 elapsed time 656 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 207 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 392 seconds. -DAPP=ATM -DCCPP_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 411 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 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 006 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 181 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 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 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 010 elapsed time 155 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 509 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 555 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 179 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 116 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 539 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 359 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 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_110704/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -86,14 +84,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 = 413.521182 - 0: The maximum resident set size (KB) = 5001488 + 0: The total amount of wall time = 408.575082 + 0: The maximum resident set size (KB) = 4997304 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_110704/cpld_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -146,14 +144,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 = 255.748888 - 0: The maximum resident set size (KB) = 4967660 + 0: The total amount of wall time = 264.031978 + 0: The maximum resident set size (KB) = 4959128 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_110704/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -206,14 +204,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 = 514.264296 - 0: The maximum resident set size (KB) = 5478344 + 0: The total amount of wall time = 508.839222 + 0: The maximum resident set size (KB) = 5482012 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_110704/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -266,14 +264,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 = 412.875633 - 0: The maximum resident set size (KB) = 5163360 + 0: The total amount of wall time = 407.800399 + 0: The maximum resident set size (KB) = 5169460 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_110704/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -326,14 +324,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 = 339.801094 - 0: The maximum resident set size (KB) = 4745072 + 0: The total amount of wall time = 345.567057 + 0: The maximum resident set size (KB) = 4740228 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_110704/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -386,14 +384,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 = 941.895362 - 0: The maximum resident set size (KB) = 4865672 + 0: The total amount of wall time = 794.383686 + 0: The maximum resident set size (KB) = 4861532 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_110704/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -446,14 +444,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 = 646.701020 - 0: The maximum resident set size (KB) = 4908600 + 0: The total amount of wall time = 695.204952 + 0: The maximum resident set size (KB) = 4903096 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_110704/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -499,14 +497,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 = 1434.894309 - 0: The maximum resident set size (KB) = 5667296 + 0: The total amount of wall time = 1526.085432 + 0: The maximum resident set size (KB) = 5657332 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_110704/cpld_restart_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -552,14 +550,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 = 810.047020 - 0: The maximum resident set size (KB) = 5645332 + 0: The total amount of wall time = 966.979912 + 0: The maximum resident set size (KB) = 5615556 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_110704/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -612,14 +610,14 @@ 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 = 836.321060 - 0: The maximum resident set size (KB) = 5073232 + 0: The total amount of wall time = 837.265736 + 0: The maximum resident set size (KB) = 5065508 Test 010 cpld_debug_p8 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_110704/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -666,14 +664,14 @@ 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.620995 - 0: The maximum resident set size (KB) = 639868 + 0: The total amount of wall time = 127.254370 + 0: The maximum resident set size (KB) = 642760 Test 011 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_110704/control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -716,28 +714,28 @@ 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 = 135.141150 - 0: The maximum resident set size (KB) = 631940 + 0: The total amount of wall time = 194.458116 + 0: The maximum resident set size (KB) = 631472 Test 012 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_110704/control_2dwrtdecomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2dwrtdecomp Checking test 013 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 = 120.835055 - 0: The maximum resident set size (KB) = 641280 + 0: The total amount of wall time = 122.218146 + 0: The maximum resident set size (KB) = 642120 Test 013 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_110704/control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -780,14 +778,14 @@ 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 = 152.803514 - 0: The maximum resident set size (KB) = 702424 + 0: The total amount of wall time = 149.922161 + 0: The maximum resident set size (KB) = 700428 Test 014 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_110704/control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -826,14 +824,14 @@ 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.096512 - 0: The maximum resident set size (KB) = 467792 + 0: The total amount of wall time = 69.286138 + 0: The maximum resident set size (KB) = 472272 Test 015 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_110704/control_fhzero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -876,14 +874,14 @@ 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 = 119.964364 - 0: The maximum resident set size (KB) = 642020 + 0: The total amount of wall time = 172.301391 + 0: The maximum resident set size (KB) = 640012 Test 016 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_110704/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -910,14 +908,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 123.453606 - 0: The maximum resident set size (KB) = 639820 + 0: The total amount of wall time = 126.095329 + 0: The maximum resident set size (KB) = 635748 Test 017 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_110704/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -928,14 +926,14 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 124.790452 - 0: The maximum resident set size (KB) = 638872 + 0: The total amount of wall time = 126.138270 + 0: The maximum resident set size (KB) = 641568 Test 018 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -946,14 +944,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.698940 - 0: The maximum resident set size (KB) = 645084 + 0: The total amount of wall time = 128.175628 + 0: The maximum resident set size (KB) = 645456 Test 019 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_110704/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -992,14 +990,14 @@ 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 = 331.653097 -0: The maximum resident set size (KB) = 820716 +0: The total amount of wall time = 333.562226 +0: The maximum resident set size (KB) = 802004 Test 020 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_110704/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1010,14 +1008,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 487.872540 - 0: The maximum resident set size (KB) = 800576 + 0: The total amount of wall time = 491.089476 + 0: The maximum resident set size (KB) = 802216 Test 021 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_110704/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1028,14 +1026,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 682.037500 - 0: The maximum resident set size (KB) = 1097516 + 0: The total amount of wall time = 685.341576 + 0: The maximum resident set size (KB) = 1089660 Test 022 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_110704/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1078,14 +1076,14 @@ 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.146752 - 0: The maximum resident set size (KB) = 1241952 + 0: The total amount of wall time = 593.127043 + 0: The maximum resident set size (KB) = 1242616 Test 023 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1096,14 +1094,14 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 695.537657 - 0: The maximum resident set size (KB) = 1081144 + 0: The total amount of wall time = 714.008226 + 0: The maximum resident set size (KB) = 1081636 Test 024 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_110704/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1114,28 +1112,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 118.670178 - 0: The maximum resident set size (KB) = 641248 + 0: The total amount of wall time = 83.329020 + 0: The maximum resident set size (KB) = 649756 Test 025 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_110704/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 47.292721 - 0: The maximum resident set size (KB) = 485724 + 0: The total amount of wall time = 46.994523 + 0: The maximum resident set size (KB) = 484352 Test 026 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_110704/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1146,14 +1144,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.739078 - 0: The maximum resident set size (KB) = 649484 + 0: The total amount of wall time = 76.857069 + 0: The maximum resident set size (KB) = 646688 Test 027 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_110704/control_iovr4 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1168,14 +1166,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.558898 - 0: The maximum resident set size (KB) = 641708 + 0: The total amount of wall time = 132.030639 + 0: The maximum resident set size (KB) = 644204 Test 028 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_110704/control_iovr5 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1190,14 +1188,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 127.055559 - 0: The maximum resident set size (KB) = 639640 + 0: The total amount of wall time = 130.091507 + 0: The maximum resident set size (KB) = 643136 Test 029 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_110704/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1244,14 +1242,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 169.535493 - 0: The maximum resident set size (KB) = 1031280 + 0: The total amount of wall time = 171.410292 + 0: The maximum resident set size (KB) = 1032360 Test 030 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1270,14 +1268,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK - 0: The total amount of wall time = 319.801396 - 0: The maximum resident set size (KB) = 1037864 + 0: The total amount of wall time = 323.389068 + 0: The maximum resident set size (KB) = 1030800 Test 031 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_110704/control_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1316,14 +1314,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 94.345607 - 0: The maximum resident set size (KB) = 870420 + 0: The total amount of wall time = 92.246098 + 0: The maximum resident set size (KB) = 866008 Test 032 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_110704/control_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1366,14 +1364,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 176.794399 - 0: The maximum resident set size (KB) = 1021272 + 0: The total amount of wall time = 179.302652 + 0: The maximum resident set size (KB) = 1019808 Test 033 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_110704/control_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1416,14 +1414,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 196.805477 - 0: The maximum resident set size (KB) = 1116000 + 0: The total amount of wall time = 201.526170 + 0: The maximum resident set size (KB) = 1105380 Test 034 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1470,14 +1468,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 197.246274 - 0: The maximum resident set size (KB) = 1162536 + 0: The total amount of wall time = 199.481188 + 0: The maximum resident set size (KB) = 1161492 Test 035 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_110704/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1488,42 +1486,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 334.562384 - 0: The maximum resident set size (KB) = 834348 + 0: The total amount of wall time = 338.917487 + 0: The maximum resident set size (KB) = 827356 Test 036 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_110704/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_restart Checking test 037 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 = 189.443023 - 0: The maximum resident set size (KB) = 823208 + 0: The total amount of wall time = 191.775742 + 0: The maximum resident set size (KB) = 821944 Test 037 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_110704/regional_control_2dwrtdecomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_control_2dwrtdecomp Checking test 038 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.437402 - 0: The maximum resident set size (KB) = 830736 + 0: The total amount of wall time = 332.560446 + 0: The maximum resident set size (KB) = 825768 Test 038 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_110704/regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1531,14 +1529,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 333.999944 - 0: The maximum resident set size (KB) = 804728 + 0: The total amount of wall time = 335.604487 + 0: The maximum resident set size (KB) = 807632 Test 039 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_110704/regional_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1549,28 +1547,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 233.281623 - 0: The maximum resident set size (KB) = 825220 + 0: The total amount of wall time = 231.959186 + 0: The maximum resident set size (KB) = 822264 Test 040 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_110704/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 .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 331.474867 - 0: The maximum resident set size (KB) = 821100 + 0: The total amount of wall time = 332.146808 + 0: The maximum resident set size (KB) = 819352 Test 041 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_110704/regional_3km +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/regional_3km Checking test 042 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1581,14 +1579,14 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 256.002359 - 0: The maximum resident set size (KB) = 881376 + 0: The total amount of wall time = 255.338804 + 0: The maximum resident set size (KB) = 884160 Test 042 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_110704/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1635,14 +1633,14 @@ 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 = 432.947066 - 0: The maximum resident set size (KB) = 1041496 + 0: The total amount of wall time = 435.260521 + 0: The maximum resident set size (KB) = 1038864 Test 043 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_110704/rap_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_rrtmgp Checking test 044 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1689,14 +1687,14 @@ 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 = 464.253751 - 0: The maximum resident set size (KB) = 1189432 + 0: The total amount of wall time = 463.804340 + 0: The maximum resident set size (KB) = 1191552 Test 044 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_110704/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1707,14 +1705,14 @@ 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.328703 - 0: The maximum resident set size (KB) = 1153432 + 0: The total amount of wall time = 293.843608 + 0: The maximum resident set size (KB) = 1197948 Test 045 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_110704/rap_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1761,14 +1759,14 @@ 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 = 502.735086 - 0: The maximum resident set size (KB) = 1088824 + 0: The total amount of wall time = 497.043114 + 0: The maximum resident set size (KB) = 1092616 Test 046 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_110704/rap_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1807,14 +1805,14 @@ 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 = 223.251060 - 0: The maximum resident set size (KB) = 938392 + 0: The total amount of wall time = 222.995616 + 0: The maximum resident set size (KB) = 944908 Test 047 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_110704/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1861,14 +1859,14 @@ 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 = 436.723243 - 0: The maximum resident set size (KB) = 985160 + 0: The total amount of wall time = 440.168455 + 0: The maximum resident set size (KB) = 1034696 Test 048 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_110704/rap_sfcdiff_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1907,14 +1905,14 @@ 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 = 223.724020 - 0: The maximum resident set size (KB) = 947460 + 0: The total amount of wall time = 225.205449 + 0: The maximum resident set size (KB) = 918844 Test 049 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_110704/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1961,14 +1959,14 @@ 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 = 417.083757 - 0: The maximum resident set size (KB) = 1035640 + 0: The total amount of wall time = 418.171133 + 0: The maximum resident set size (KB) = 1034996 Test 050 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_110704/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2015,14 +2013,14 @@ 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 = 425.589916 - 0: The maximum resident set size (KB) = 1040016 + 0: The total amount of wall time = 428.085756 + 0: The maximum resident set size (KB) = 1031868 Test 051 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_110704/rrfs_v1nssl +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2037,14 +2035,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 502.676942 - 0: The maximum resident set size (KB) = 705132 + 0: The total amount of wall time = 504.472958 + 0: The maximum resident set size (KB) = 706308 Test 052 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2059,14 +2057,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 491.920684 - 0: The maximum resident set size (KB) = 730852 + 0: The total amount of wall time = 493.360479 + 0: The maximum resident set size (KB) = 730916 Test 053 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2075,14 +2073,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 187.629637 - 0: The maximum resident set size (KB) = 910756 + 0: The total amount of wall time = 192.008150 + 0: The maximum resident set size (KB) = 918264 Test 054 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2091,14 +2089,14 @@ Checking test 055 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 187.948070 - 0: The maximum resident set size (KB) = 921732 + 0: The total amount of wall time = 192.922995 + 0: The maximum resident set size (KB) = 926820 Test 055 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2107,14 +2105,14 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK - 0: The total amount of wall time = 212.498272 - 0: The maximum resident set size (KB) = 956356 + 0: The total amount of wall time = 210.354311 + 0: The maximum resident set size (KB) = 955276 Test 056 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_110704/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmg Checking test 057 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2125,14 +2123,14 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 328.160851 - 0: The maximum resident set size (KB) = 753252 + 0: The total amount of wall time = 329.238195 + 0: The maximum resident set size (KB) = 756804 Test 057 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_110704/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_csawmgt Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2143,14 +2141,14 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 326.088651 - 0: The maximum resident set size (KB) = 750740 + 0: The total amount of wall time = 324.165953 + 0: The maximum resident set size (KB) = 752224 Test 058 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_110704/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_flake Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2161,14 +2159,14 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.656183 - 0: The maximum resident set size (KB) = 761240 + 0: The total amount of wall time = 211.603966 + 0: The maximum resident set size (KB) = 759188 Test 059 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_110704/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_ras Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2179,14 +2177,14 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 171.940298 - 0: The maximum resident set size (KB) = 722204 + 0: The total amount of wall time = 170.999260 + 0: The maximum resident set size (KB) = 720188 Test 060 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_110704/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_thompson Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2197,14 +2195,14 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 235.115882 - 0: The maximum resident set size (KB) = 1074808 + 0: The total amount of wall time = 235.636196 + 0: The maximum resident set size (KB) = 1069464 Test 061 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2215,54 +2213,54 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.301201 - 0: The maximum resident set size (KB) = 1056084 + 0: The total amount of wall time = 224.405000 + 0: The maximum resident set size (KB) = 1063548 Test 062 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_110704/control_wam +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_wam Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 103.777045 - 0: The maximum resident set size (KB) = 612112 + 0: The total amount of wall time = 106.636805 + 0: The maximum resident set size (KB) = 616160 Test 063 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_110704/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/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.561336 - 0: The maximum resident set size (KB) = 802444 + 0: The total amount of wall time = 152.245994 + 0: The maximum resident set size (KB) = 806032 Test 064 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_110704/control_2threads_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/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 = 229.094209 - 0: The maximum resident set size (KB) = 857112 + 0: The total amount of wall time = 230.032175 + 0: The maximum resident set size (KB) = 857944 Test 065 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_110704/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 .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2289,415 +2287,415 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 166.405619 - 0: The maximum resident set size (KB) = 805688 + 0: The total amount of wall time = 172.104352 + 0: The maximum resident set size (KB) = 802608 Test 066 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_110704/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 .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.389055 - 0: The maximum resident set size (KB) = 806048 + 0: The total amount of wall time = 152.723573 + 0: The maximum resident set size (KB) = 808224 Test 067 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.781538 - 0: The maximum resident set size (KB) = 815760 + 0: The total amount of wall time = 173.361093 + 0: The maximum resident set size (KB) = 808888 Test 068 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.786071 - 0: The maximum resident set size (KB) = 802252 + 0: The total amount of wall time = 157.657826 + 0: The maximum resident set size (KB) = 807684 Test 069 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.100476 - 0: The maximum resident set size (KB) = 854480 + 0: The total amount of wall time = 234.747346 + 0: The maximum resident set size (KB) = 853372 Test 070 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.514163 - 0: The maximum resident set size (KB) = 855788 + 0: The total amount of wall time = 227.483682 + 0: The maximum resident set size (KB) = 856172 Test 071 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 161.126795 - 0: The maximum resident set size (KB) = 814176 + 0: The total amount of wall time = 158.586448 + 0: The maximum resident set size (KB) = 819572 Test 072 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 164.998907 - 0: The maximum resident set size (KB) = 860680 + 0: The total amount of wall time = 162.743271 + 0: The maximum resident set size (KB) = 861024 Test 073 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.612115 - 0: The maximum resident set size (KB) = 1202312 + 0: The total amount of wall time = 174.013080 + 0: The maximum resident set size (KB) = 1158660 Test 074 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 277.715196 - 0: The maximum resident set size (KB) = 1172364 + 0: The total amount of wall time = 176.956540 + 0: The maximum resident set size (KB) = 1173148 Test 075 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.256877 - 0: The maximum resident set size (KB) = 1168720 + 0: The total amount of wall time = 174.616372 + 0: The maximum resident set size (KB) = 1164692 Test 076 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_110704/control_thompson_extdiag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/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 = 194.401160 - 0: The maximum resident set size (KB) = 1203304 + 0: The total amount of wall time = 190.385968 + 0: The maximum resident set size (KB) = 1200704 Test 077 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 181.125161 - 0: The maximum resident set size (KB) = 1180856 + 0: The total amount of wall time = 183.359049 + 0: The maximum resident set size (KB) = 1172636 Test 078 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_110704/regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/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 = 248.159435 - 0: The maximum resident set size (KB) = 838508 + 0: The total amount of wall time = 250.606807 + 0: The maximum resident set size (KB) = 849768 Test 079 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.813663 - 0: The maximum resident set size (KB) = 1180164 + 0: The total amount of wall time = 268.850834 + 0: The maximum resident set size (KB) = 1180424 Test 080 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_110704/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.502110 - 0: The maximum resident set size (KB) = 1176660 + 0: The total amount of wall time = 273.467468 + 0: The maximum resident set size (KB) = 1186836 Test 081 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.019199 - 0: The maximum resident set size (KB) = 1265704 + 0: The total amount of wall time = 448.814851 + 0: The maximum resident set size (KB) = 1265400 Test 082 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 280.387525 - 0: The maximum resident set size (KB) = 1184744 + 0: The total amount of wall time = 280.274127 + 0: The maximum resident set size (KB) = 1185444 Test 083 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_110704/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.914705 - 0: The maximum resident set size (KB) = 1181616 + 0: The total amount of wall time = 278.453103 + 0: The maximum resident set size (KB) = 1132792 Test 084 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.679641 - 0: The maximum resident set size (KB) = 1181860 + 0: The total amount of wall time = 274.724284 + 0: The maximum resident set size (KB) = 1184584 Test 085 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.393618 - 0: The maximum resident set size (KB) = 1183096 + 0: The total amount of wall time = 271.553827 + 0: The maximum resident set size (KB) = 1174324 Test 086 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.728269 - 0: The maximum resident set size (KB) = 1183008 + 0: The total amount of wall time = 270.575410 + 0: The maximum resident set size (KB) = 1176900 Test 087 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.325703 - 0: The maximum resident set size (KB) = 1184220 + 0: The total amount of wall time = 267.470997 + 0: The maximum resident set size (KB) = 1178516 Test 088 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 455.919608 - 0: The maximum resident set size (KB) = 1310548 + 0: The total amount of wall time = 465.444984 + 0: The maximum resident set size (KB) = 1310944 Test 089 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 275.164196 - 0: The maximum resident set size (KB) = 1183188 + 0: The total amount of wall time = 275.887983 + 0: The maximum resident set size (KB) = 1184424 Test 090 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 449.103496 - 0: The maximum resident set size (KB) = 1180852 + 0: The total amount of wall time = 450.105458 + 0: The maximum resident set size (KB) = 1184024 Test 091 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 273.525984 - 0: The maximum resident set size (KB) = 1180660 + 0: The total amount of wall time = 271.838533 + 0: The maximum resident set size (KB) = 1177072 Test 092 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_110704/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 .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK - 0: The total amount of wall time = 297.253047 - 0: The maximum resident set size (KB) = 519008 + 0: The total amount of wall time = 288.941054 + 0: The maximum resident set size (KB) = 482868 Test 093 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK - 0: The total amount of wall time = 318.510639 - 0: The maximum resident set size (KB) = 922316 + 0: The total amount of wall time = 316.601342 + 0: The maximum resident set size (KB) = 977732 Test 094 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 421.422092 - 0: The maximum resident set size (KB) = 1349440 + 0: The total amount of wall time = 419.428435 + 0: The maximum resident set size (KB) = 1345340 Test 095 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2706,14 +2704,14 @@ 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 = 399.492689 - 0: The maximum resident set size (KB) = 1203548 + 0: The total amount of wall time = 398.796464 + 0: The maximum resident set size (KB) = 1211632 Test 096 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2722,14 +2720,14 @@ 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 = 748.066594 - 0: The maximum resident set size (KB) = 1176796 + 0: The total amount of wall time = 747.124354 + 0: The maximum resident set size (KB) = 1230524 Test 097 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2740,28 +2738,28 @@ 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 = 844.728375 - 0: The maximum resident set size (KB) = 1200296 + 0: The total amount of wall time = 845.138409 + 0: The maximum resident set size (KB) = 1200048 Test 098 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 449.157784 - 0: The maximum resident set size (KB) = 575360 + 0: The total amount of wall time = 448.332581 + 0: The maximum resident set size (KB) = 570288 Test 099 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2770,28 +2768,28 @@ 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 = 500.421010 - 0: The maximum resident set size (KB) = 586888 + 0: The total amount of wall time = 499.367154 + 0: The maximum resident set size (KB) = 588812 Test 100 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_110704/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 .... Comparing atmf006.nc .........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.124272 - 0: The maximum resident set size (KB) = 380596 + 0: The total amount of wall time = 209.006465 + 0: The maximum resident set size (KB) = 382064 Test 101 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2804,42 +2802,42 @@ 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 = 577.373270 - 0: The maximum resident set size (KB) = 380672 + 0: The total amount of wall time = 573.266404 + 0: The maximum resident set size (KB) = 419048 Test 102 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_110704/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 .... Comparing atmf006.nc .........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.872101 - 0: The maximum resident set size (KB) = 580032 + 0: The total amount of wall time = 267.925701 + 0: The maximum resident set size (KB) = 592324 Test 103 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 257.059511 - 0: The maximum resident set size (KB) = 581396 + 0: The total amount of wall time = 259.251595 + 0: The maximum resident set size (KB) = 581364 Test 104 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2848,14 +2846,14 @@ 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 = 273.612422 - 0: The maximum resident set size (KB) = 623004 + 0: The total amount of wall time = 269.489080 + 0: The maximum resident set size (KB) = 623160 Test 105 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2866,28 +2864,28 @@ 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 = 607.009216 - 0: The maximum resident set size (KB) = 598280 + 0: The total amount of wall time = 614.928521 + 0: The maximum resident set size (KB) = 597596 Test 106 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK - 0: The total amount of wall time = 76.622372 - 0: The maximum resident set size (KB) = 397644 + 0: The total amount of wall time = 78.548906 + 0: The maximum resident set size (KB) = 396636 Test 107 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2895,14 +2893,14 @@ Checking test 108 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 538.094294 - 0: The maximum resident set size (KB) = 1217108 + 0: The total amount of wall time = 395.735689 + 0: The maximum resident set size (KB) = 1208172 Test 108 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_110704/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2910,118 +2908,118 @@ Checking test 109 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 393.715877 - 0: The maximum resident set size (KB) = 1203048 + 0: The total amount of wall time = 397.156128 + 0: The maximum resident set size (KB) = 1208312 Test 109 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_110704/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 .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 926.480297 - 0: The maximum resident set size (KB) = 1015608 + 0: The total amount of wall time = 925.500957 + 0: The maximum resident set size (KB) = 1010240 Test 110 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_110704/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 153.879256 - 0: The maximum resident set size (KB) = 1014788 + 0: The total amount of wall time = 142.453380 + 0: The maximum resident set size (KB) = 1027832 Test 111 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_110704/datm_cdeps_restart_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 .... 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 = 99.470461 - 0: The maximum resident set size (KB) = 995276 + 0: The total amount of wall time = 98.317141 + 0: The maximum resident set size (KB) = 981156 Test 112 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_110704/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 .... 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 = 144.264118 - 0: The maximum resident set size (KB) = 898648 + 0: The total amount of wall time = 137.680352 + 0: The maximum resident set size (KB) = 930004 Test 113 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_110704/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 .... 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.461407 - 0: The maximum resident set size (KB) = 932544 + 0: The total amount of wall time = 141.140154 + 0: The maximum resident set size (KB) = 937352 Test 114 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_110704/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 .... 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 = 140.795199 - 0: The maximum resident set size (KB) = 930420 + 0: The total amount of wall time = 143.967300 + 0: The maximum resident set size (KB) = 927252 Test 115 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_110704/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 .... 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 = 143.538595 - 0: The maximum resident set size (KB) = 1026868 + 0: The total amount of wall time = 144.364446 + 0: The maximum resident set size (KB) = 1028356 Test 116 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_110704/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 .... 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.140896 - 0: The maximum resident set size (KB) = 929928 + 0: The total amount of wall time = 139.100953 + 0: The maximum resident set size (KB) = 930504 Test 117 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_110704/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3030,14 +3028,14 @@ 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 = 295.654108 - 0: The maximum resident set size (KB) = 843624 + 0: The total amount of wall time = 297.882274 + 0: The maximum resident set size (KB) = 842556 Test 118 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_110704/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3046,64 +3044,64 @@ 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 = 295.630307 - 0: The maximum resident set size (KB) = 857148 + 0: The total amount of wall time = 294.284474 + 0: The maximum resident set size (KB) = 864648 Test 119 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_110704/datm_cdeps_multiple_files_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 .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.238819 - 0: The maximum resident set size (KB) = 1020080 + 0: The total amount of wall time = 145.604303 + 0: The maximum resident set size (KB) = 1017956 Test 120 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_110704/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 .... 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 = 193.970623 - 0: The maximum resident set size (KB) = 2238784 + 0: The total amount of wall time = 191.670012 + 0: The maximum resident set size (KB) = 2247936 Test 121 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_110704/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 .... 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 = 224.649497 - 0: The maximum resident set size (KB) = 2249396 + 0: The total amount of wall time = 204.496001 + 0: The maximum resident set size (KB) = 2251328 Test 122 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_110704/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 .... 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 = 442.803323 - 0: The maximum resident set size (KB) = 990780 + 0: The total amount of wall time = 450.462738 + 0: The maximum resident set size (KB) = 964432 Test 123 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_110704/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_421374/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3147,14 +3145,14 @@ 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.336723 - 0: The maximum resident set size (KB) = 706408 + 0: The total amount of wall time = 81.994609 + 0: The maximum resident set size (KB) = 704144 Test 124 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_110704/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3198,12 +3196,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.730513 - 0: The maximum resident set size (KB) = 5119276 + 0: The total amount of wall time = 328.832959 + 0: The maximum resident set size (KB) = 5113552 Test 125 atmaero_control_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 11:43:12 CDT 2022 -Elapsed time: 01h:10m:57s. Have a nice day! +Fri Jun 3 18:43:31 CDT 2022 +Elapsed time: 01h:11m:08s. Have a nice day! diff --git a/tests/RegressionTests_wcoss2.intel.log b/tests/RegressionTests_wcoss2.intel.log index 8914b44d3d..0a3af90e3b 100644 --- a/tests/RegressionTests_wcoss2.intel.log +++ b/tests/RegressionTests_wcoss2.intel.log @@ -1,19 +1,19 @@ -Thu Jun 2 17:40:17 UTC 2022 +Mon Jun 6 12:06:35 UTC 2022 Start Regression test -Compile 001 elapsed time 307 seconds. -DAPP=ATM -DCCPP_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 336 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 535 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 278 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 175 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 420 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 298 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 380 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 728 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 761 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 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 baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -60,14 +60,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 = 126.447099 -The maximum resident set size (KB) = 517604 +The total amount of wall time = 125.791378 +The maximum resident set size (KB) = 515904 Test 001 control PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control_decomp +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -110,28 +110,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 = 128.358243 -The maximum resident set size (KB) = 516992 +The total amount of wall time = 129.224359 +The maximum resident set size (KB) = 517684 Test 002 control_decomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/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 = 121.287144 -The maximum resident set size (KB) = 522216 +The total amount of wall time = 120.220118 +The maximum resident set size (KB) = 521704 Test 003 control_2dwrtdecomp PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control_2threads +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads Checking test 004 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -174,14 +174,14 @@ 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 = 373.061628 -The maximum resident set size (KB) = 567560 +The total amount of wall time = 371.890346 +The maximum resident set size (KB) = 567700 Test 004 control_2threads PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control_restart +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_restart Checking test 005 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -220,14 +220,14 @@ 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.483866 -The maximum resident set size (KB) = 401036 +The total amount of wall time = 66.305401 +The maximum resident set size (KB) = 406536 Test 005 control_restart PASS baseline dir = /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20220601/INTEL/control -working dir = /lfs/h2/emc/ptmp/Denise.Worthen/FV3_RT/rt_253606/control_fhzero +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_fhzero Checking test 006 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -270,14 +270,14 @@ 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.713552 -The maximum resident set size (KB) = 517100 +The total amount of wall time = 120.493959 +The maximum resident set size (KB) = 514776 Test 006 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/Denise.Worthen/FV3_RT/rt_253606/control_CubedSphereGrid +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_CubedSphereGrid Checking test 007 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -304,14 +304,14 @@ Checking test 007 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 122.308674 -The maximum resident set size (KB) = 517584 +The total amount of wall time = 121.628776 +The maximum resident set size (KB) = 519292 Test 007 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/Denise.Worthen/FV3_RT/rt_253606/control_latlon +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_latlon Checking test 008 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -322,14 +322,14 @@ Checking test 008 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 123.745858 -The maximum resident set size (KB) = 517128 +The total amount of wall time = 123.336310 +The maximum resident set size (KB) = 520168 Test 008 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -340,14 +340,14 @@ Checking test 009 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 125.216936 -The maximum resident set size (KB) = 521776 +The total amount of wall time = 124.972318 +The maximum resident set size (KB) = 518388 Test 009 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/Denise.Worthen/FV3_RT/rt_253606/control_c48 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c48 Checking test 010 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -386,14 +386,14 @@ 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.241334 -The maximum resident set size (KB) = 668380 +The total amount of wall time = 309.229425 +The maximum resident set size (KB) = 670976 Test 010 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/Denise.Worthen/FV3_RT/rt_253606/control_c192 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c192 Checking test 011 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -404,14 +404,14 @@ Checking test 011 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 497.742707 -The maximum resident set size (KB) = 624036 +The total amount of wall time = 499.756821 +The maximum resident set size (KB) = 622976 Test 011 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/Denise.Worthen/FV3_RT/rt_253606/control_c384 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c384 Checking test 012 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -422,14 +422,14 @@ Checking test 012 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1542.426850 -The maximum resident set size (KB) = 895388 +The total amount of wall time = 1535.181951 +The maximum resident set size (KB) = 889620 Test 012 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/Denise.Worthen/FV3_RT/rt_253606/control_c384gdas +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_c384gdas Checking test 013 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -472,14 +472,14 @@ 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.958596 -The maximum resident set size (KB) = 1014128 +The total amount of wall time = 1403.790292 +The maximum resident set size (KB) = 1018776 Test 013 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -490,14 +490,14 @@ Checking test 014 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 1550.997674 -The maximum resident set size (KB) = 912440 +The total amount of wall time = 1546.490982 +The maximum resident set size (KB) = 910544 Test 014 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/Denise.Worthen/FV3_RT/rt_253606/control_stochy +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_stochy Checking test 015 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -508,28 +508,28 @@ Checking test 015 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 83.704412 -The maximum resident set size (KB) = 522184 +The total amount of wall time = 83.566165 +The maximum resident set size (KB) = 518864 Test 015 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/Denise.Worthen/FV3_RT/rt_253606/control_stochy_restart +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_stochy_restart Checking test 016 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.425703 -The maximum resident set size (KB) = 284904 +The total amount of wall time = 45.437512 +The maximum resident set size (KB) = 383708 Test 016 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/Denise.Worthen/FV3_RT/rt_253606/control_lndp +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_lndp Checking test 017 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -540,14 +540,14 @@ Checking test 017 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 76.147968 -The maximum resident set size (KB) = 520724 +The total amount of wall time = 75.932701 +The maximum resident set size (KB) = 519524 Test 017 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/Denise.Worthen/FV3_RT/rt_253606/control_iovr4 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_iovr4 Checking test 018 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -562,14 +562,14 @@ Checking test 018 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 126.488170 -The maximum resident set size (KB) = 518308 +The total amount of wall time = 125.509789 +The maximum resident set size (KB) = 521488 Test 018 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/Denise.Worthen/FV3_RT/rt_253606/control_iovr5 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_iovr5 Checking test 019 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -584,14 +584,14 @@ Checking test 019 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 128.191822 -The maximum resident set size (KB) = 517380 +The total amount of wall time = 125.655301 +The maximum resident set size (KB) = 518364 Test 019 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/Denise.Worthen/FV3_RT/rt_253606/control_p8 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_p8 Checking test 020 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -638,14 +638,14 @@ 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 = 179.635375 -The maximum resident set size (KB) = 911688 +The total amount of wall time = 174.545114 +The maximum resident set size (KB) = 908216 Test 020 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -664,14 +664,14 @@ Checking test 021 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -The total amount of wall time = 321.864405 -The maximum resident set size (KB) = 908276 +The total amount of wall time = 323.399184 +The maximum resident set size (KB) = 909432 Test 021 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/Denise.Worthen/FV3_RT/rt_253606/control_restart_p8 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_restart_p8 Checking test 022 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -710,14 +710,14 @@ 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 = 101.667392 -The maximum resident set size (KB) = 649344 +The total amount of wall time = 103.216216 +The maximum resident set size (KB) = 648588 Test 022 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/Denise.Worthen/FV3_RT/rt_253606/control_decomp_p8 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_decomp_p8 Checking test 023 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -760,14 +760,14 @@ 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 = 181.475810 -The maximum resident set size (KB) = 903348 +The total amount of wall time = 180.801449 +The maximum resident set size (KB) = 901900 Test 023 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/Denise.Worthen/FV3_RT/rt_253606/control_2threads_p8 +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads_p8 Checking test 024 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -810,14 +810,14 @@ 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 = 495.733243 -The maximum resident set size (KB) = 982024 +The total amount of wall time = 489.061432 +The maximum resident set size (KB) = 983908 Test 024 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -864,14 +864,14 @@ 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 = 252.169903 -The maximum resident set size (KB) = 1027396 +The total amount of wall time = 254.434284 +The maximum resident set size (KB) = 1032424 Test 025 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/Denise.Worthen/FV3_RT/rt_253606/regional_control +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_control Checking test 026 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -882,42 +882,42 @@ Checking test 026 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 298.627691 -The maximum resident set size (KB) = 603808 +The total amount of wall time = 303.202602 +The maximum resident set size (KB) = 604868 Test 026 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/Denise.Worthen/FV3_RT/rt_253606/regional_restart +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_restart Checking test 027 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 = 164.544856 -The maximum resident set size (KB) = 599608 +The total amount of wall time = 168.357609 +The maximum resident set size (KB) = 598568 Test 027 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/Denise.Worthen/FV3_RT/rt_253606/regional_control_2dwrtdecomp +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_control_2dwrtdecomp Checking test 028 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 = 298.788332 -The maximum resident set size (KB) = 602212 +The total amount of wall time = 300.801721 +The maximum resident set size (KB) = 599756 Test 028 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/Denise.Worthen/FV3_RT/rt_253606/regional_noquilt +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_noquilt Checking test 029 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -925,14 +925,14 @@ Checking test 029 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -The total amount of wall time = 315.610299 -The maximum resident set size (KB) = 593848 +The total amount of wall time = 317.697305 +The maximum resident set size (KB) = 591944 Test 029 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/Denise.Worthen/FV3_RT/rt_253606/regional_2threads +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_2threads Checking test 030 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -943,28 +943,28 @@ Checking test 030 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 596.678569 -The maximum resident set size (KB) = 649348 +The total amount of wall time = 597.836253 +The maximum resident set size (KB) = 650848 Test 030 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 297.291546 -The maximum resident set size (KB) = 597796 +The total amount of wall time = 297.553697 +The maximum resident set size (KB) = 598188 Test 031 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/Denise.Worthen/FV3_RT/rt_253606/regional_3km +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_3km Checking test 032 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -975,14 +975,14 @@ Checking test 032 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -The total amount of wall time = 255.619306 -The maximum resident set size (KB) = 652248 +The total amount of wall time = 260.892816 +The maximum resident set size (KB) = 653504 Test 032 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/Denise.Worthen/FV3_RT/rt_253606/rap_control +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_control Checking test 033 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1029,14 +1029,14 @@ 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 = 404.615279 -The maximum resident set size (KB) = 894564 +The total amount of wall time = 397.241043 +The maximum resident set size (KB) = 896208 Test 033 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/Denise.Worthen/FV3_RT/rt_253606/rap_rrtmgp +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_rrtmgp Checking test 034 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1083,14 +1083,14 @@ 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 = 472.193894 -The maximum resident set size (KB) = 1015236 +The total amount of wall time = 478.439098 +The maximum resident set size (KB) = 1011596 Test 034 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1101,14 +1101,14 @@ Checking test 035 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -The total amount of wall time = 720.569034 -The maximum resident set size (KB) = 982172 +The total amount of wall time = 729.227720 +The maximum resident set size (KB) = 979612 Test 035 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/Denise.Worthen/FV3_RT/rt_253606/rap_2threads +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_2threads Checking test 036 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1155,14 +1155,14 @@ 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 = 1252.106387 -The maximum resident set size (KB) = 957036 +The total amount of wall time = 1245.949327 +The maximum resident set size (KB) = 954792 Test 036 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/Denise.Worthen/FV3_RT/rt_253606/rap_restart +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_restart Checking test 037 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1201,14 +1201,14 @@ 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 = 209.221144 -The maximum resident set size (KB) = 631496 +The total amount of wall time = 207.966147 +The maximum resident set size (KB) = 635228 Test 037 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/Denise.Worthen/FV3_RT/rt_253606/rap_sfcdiff +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_sfcdiff Checking test 038 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1255,14 +1255,14 @@ 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 = 396.326013 -The maximum resident set size (KB) = 893948 +The total amount of wall time = 398.642021 +The maximum resident set size (KB) = 893604 Test 038 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/Denise.Worthen/FV3_RT/rt_253606/rap_sfcdiff_restart +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rap_sfcdiff_restart Checking test 039 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1301,14 +1301,14 @@ 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 = 208.666002 -The maximum resident set size (KB) = 631876 +The total amount of wall time = 205.311770 +The maximum resident set size (KB) = 632352 Test 039 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/Denise.Worthen/FV3_RT/rt_253606/hrrr_control +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/hrrr_control Checking test 040 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1355,14 +1355,14 @@ 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 = 380.459020 -The maximum resident set size (KB) = 887688 +The total amount of wall time = 382.033523 +The maximum resident set size (KB) = 887208 Test 040 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/Denise.Worthen/FV3_RT/rt_253606/rrfs_v1beta +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1beta Checking test 041 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1409,14 +1409,14 @@ 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 = 387.667647 -The maximum resident set size (KB) = 888648 +The total amount of wall time = 386.273123 +The maximum resident set size (KB) = 885912 Test 041 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/Denise.Worthen/FV3_RT/rt_253606/rrfs_v1nssl +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/rrfs_v1nssl Checking test 042 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1431,14 +1431,14 @@ Checking test 042 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 456.087767 -The maximum resident set size (KB) = 579120 +The total amount of wall time = 450.698550 +The maximum resident set size (KB) = 577240 Test 042 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1453,14 +1453,14 @@ Checking test 043 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 439.795319 -The maximum resident set size (KB) = 567896 +The total amount of wall time = 435.958365 +The maximum resident set size (KB) = 568204 Test 043 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1469,14 +1469,14 @@ Checking test 044 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 169.537180 -The maximum resident set size (KB) = 759036 +The total amount of wall time = 170.576150 +The maximum resident set size (KB) = 760580 Test 044 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1485,14 +1485,14 @@ Checking test 045 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 171.311916 -The maximum resident set size (KB) = 765084 +The total amount of wall time = 169.995132 +The maximum resident set size (KB) = 766116 Test 045 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -1501,14 +1501,14 @@ Checking test 046 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -The total amount of wall time = 186.765462 -The maximum resident set size (KB) = 777532 +The total amount of wall time = 184.632789 +The maximum resident set size (KB) = 773220 Test 046 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/Denise.Worthen/FV3_RT/rt_253606/control_csawmg +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmg Checking test 047 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1519,14 +1519,14 @@ Checking test 047 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 338.845439 -The maximum resident set size (KB) = 587152 +The total amount of wall time = 343.857611 +The maximum resident set size (KB) = 586924 Test 047 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/Denise.Worthen/FV3_RT/rt_253606/control_csawmgt +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_csawmgt Checking test 048 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1537,14 +1537,14 @@ Checking test 048 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 336.785027 -The maximum resident set size (KB) = 587956 +The total amount of wall time = 335.840509 +The maximum resident set size (KB) = 588092 Test 048 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/Denise.Worthen/FV3_RT/rt_253606/control_flake +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_flake Checking test 049 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1555,14 +1555,14 @@ Checking test 049 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 242.394549 -The maximum resident set size (KB) = 589352 +The total amount of wall time = 244.588487 +The maximum resident set size (KB) = 587592 Test 049 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/Denise.Worthen/FV3_RT/rt_253606/control_ras +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_ras Checking test 050 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1573,14 +1573,14 @@ Checking test 050 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 172.553323 -The maximum resident set size (KB) = 550880 +The total amount of wall time = 171.274807 +The maximum resident set size (KB) = 550748 Test 050 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/Denise.Worthen/FV3_RT/rt_253606/control_thompson +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson Checking test 051 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1591,14 +1591,14 @@ Checking test 051 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 238.376879 -The maximum resident set size (KB) = 905832 +The total amount of wall time = 235.574129 +The maximum resident set size (KB) = 901792 Test 051 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1609,54 +1609,54 @@ Checking test 052 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 219.918950 -The maximum resident set size (KB) = 899028 +The total amount of wall time = 222.195606 +The maximum resident set size (KB) = 900260 Test 052 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/Denise.Worthen/FV3_RT/rt_253606/control_wam +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_wam Checking test 053 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 113.449159 -The maximum resident set size (KB) = 265788 +The total amount of wall time = 111.499106 +The maximum resident set size (KB) = 399524 Test 053 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/Denise.Worthen/FV3_RT/rt_253606/control_debug +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_debug Checking test 054 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 = 153.123895 -The maximum resident set size (KB) = 675828 +The total amount of wall time = 152.257006 +The maximum resident set size (KB) = 673744 Test 054 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/Denise.Worthen/FV3_RT/rt_253606/control_2threads_debug +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_2threads_debug Checking test 055 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 = 443.990406 -The maximum resident set size (KB) = 730448 +The total amount of wall time = 444.024500 +The maximum resident set size (KB) = 726936 Test 055 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1683,415 +1683,415 @@ Checking test 056 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 154.957294 -The maximum resident set size (KB) = 674092 +The total amount of wall time = 153.686163 +The maximum resident set size (KB) = 675592 Test 056 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 154.614995 -The maximum resident set size (KB) = 678660 +The total amount of wall time = 153.562714 +The maximum resident set size (KB) = 678052 Test 057 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 176.162902 -The maximum resident set size (KB) = 686696 +The total amount of wall time = 175.380090 +The maximum resident set size (KB) = 680304 Test 058 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 157.407826 -The maximum resident set size (KB) = 681680 +The total amount of wall time = 156.512783 +The maximum resident set size (KB) = 677584 Test 059 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 253.453237 -The maximum resident set size (KB) = 723020 +The total amount of wall time = 251.679633 +The maximum resident set size (KB) = 718760 Test 060 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 249.401334 -The maximum resident set size (KB) = 719976 +The total amount of wall time = 246.026029 +The maximum resident set size (KB) = 718556 Test 061 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 158.411318 -The maximum resident set size (KB) = 688580 +The total amount of wall time = 157.746083 +The maximum resident set size (KB) = 688824 Test 062 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 161.879892 -The maximum resident set size (KB) = 733492 +The total amount of wall time = 157.849625 +The maximum resident set size (KB) = 731520 Test 063 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 181.563062 -The maximum resident set size (KB) = 1064208 +The total amount of wall time = 179.962678 +The maximum resident set size (KB) = 1063488 Test 064 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 185.474235 -The maximum resident set size (KB) = 1039252 +The total amount of wall time = 183.587958 +The maximum resident set size (KB) = 1041208 Test 065 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 177.219949 -The maximum resident set size (KB) = 1035500 +The total amount of wall time = 182.156634 +The maximum resident set size (KB) = 1032232 Test 066 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/Denise.Worthen/FV3_RT/rt_253606/control_thompson_extdiag_debug +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/control_thompson_extdiag_debug Checking test 067 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 = 190.596548 -The maximum resident set size (KB) = 1070392 +The total amount of wall time = 188.768570 +The maximum resident set size (KB) = 1067652 Test 067 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 183.958403 -The maximum resident set size (KB) = 1039584 +The total amount of wall time = 184.114823 +The maximum resident set size (KB) = 1038656 Test 068 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/Denise.Worthen/FV3_RT/rt_253606/regional_debug +working dir = /lfs/h2/emc/ptmp/Dusan.Jovic/FV3_RT/rt_203910/regional_debug Checking test 069 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 = 260.248758 -The maximum resident set size (KB) = 625648 +The total amount of wall time = 257.791751 +The maximum resident set size (KB) = 619004 Test 069 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.353170 -The maximum resident set size (KB) = 1048476 +The total amount of wall time = 291.157428 +The maximum resident set size (KB) = 1049096 Test 070 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/Denise.Worthen/FV3_RT/rt_253606/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 294.336736 -The maximum resident set size (KB) = 1045012 +The total amount of wall time = 290.706671 +The maximum resident set size (KB) = 1050672 Test 071 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 302.193820 -The maximum resident set size (KB) = 1131296 +The total amount of wall time = 301.480068 +The maximum resident set size (KB) = 1134068 Test 072 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 300.954644 -The maximum resident set size (KB) = 1047920 +The total amount of wall time = 297.122040 +The maximum resident set size (KB) = 1048156 Test 073 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/Denise.Worthen/FV3_RT/rt_253606/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.312563 -The maximum resident set size (KB) = 1050756 +The total amount of wall time = 297.422690 +The maximum resident set size (KB) = 1048888 Test 074 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 298.467177 -The maximum resident set size (KB) = 1048748 +The total amount of wall time = 292.902958 +The maximum resident set size (KB) = 1047812 Test 075 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 293.408822 -The maximum resident set size (KB) = 1050288 +The total amount of wall time = 291.714867 +The maximum resident set size (KB) = 1051828 Test 076 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.950046 -The maximum resident set size (KB) = 1047788 +The total amount of wall time = 292.157024 +The maximum resident set size (KB) = 1052296 Test 077 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.297054 -The maximum resident set size (KB) = 1046200 +The total amount of wall time = 286.801923 +The maximum resident set size (KB) = 1047036 Test 078 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 492.180326 -The maximum resident set size (KB) = 1170872 +The total amount of wall time = 490.440903 +The maximum resident set size (KB) = 1170292 Test 079 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.452420 -The maximum resident set size (KB) = 1051832 +The total amount of wall time = 291.267788 +The maximum resident set size (KB) = 1044012 Test 080 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 480.556124 -The maximum resident set size (KB) = 1052984 +The total amount of wall time = 478.405989 +The maximum resident set size (KB) = 1050256 Test 081 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 287.917362 -The maximum resident set size (KB) = 1042472 +The total amount of wall time = 287.385971 +The maximum resident set size (KB) = 1041348 Test 082 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 296.112226 -The maximum resident set size (KB) = 294376 +The total amount of wall time = 296.022108 +The maximum resident set size (KB) = 405704 Test 083 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing HURPRS.GrbF06 .........OK -The total amount of wall time = 698.466352 -The maximum resident set size (KB) = 792648 +The total amount of wall time = 690.316113 +The maximum resident set size (KB) = 794132 Test 084 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 803.536368 -The maximum resident set size (KB) = 1169232 +The total amount of wall time = 807.661077 +The maximum resident set size (KB) = 1162128 Test 085 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2100,14 +2100,14 @@ 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 = 447.761384 -The maximum resident set size (KB) = 831368 +The total amount of wall time = 452.204267 +The maximum resident set size (KB) = 826416 Test 086 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2116,14 +2116,14 @@ 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 = 714.951532 -The maximum resident set size (KB) = 859448 +The total amount of wall time = 727.143321 +The maximum resident set size (KB) = 866704 Test 087 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2134,28 +2134,28 @@ 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 = 869.235081 -The maximum resident set size (KB) = 876788 +The total amount of wall time = 876.895028 +The maximum resident set size (KB) = 876244 Test 088 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 1057.888524 -The maximum resident set size (KB) = 376364 +The total amount of wall time = 1058.952811 +The maximum resident set size (KB) = 419028 Test 089 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2164,28 +2164,28 @@ 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 = 1215.963880 -The maximum resident set size (KB) = 385888 +The total amount of wall time = 1222.169894 +The maximum resident set size (KB) = 399616 Test 090 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 536.296812 -The maximum resident set size (KB) = 245220 +The total amount of wall time = 508.692972 +The maximum resident set size (KB) = 399352 Test 091 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2198,42 +2198,42 @@ 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.838493 -The maximum resident set size (KB) = 334436 +The total amount of wall time = 1357.104030 +The maximum resident set size (KB) = 324116 Test 092 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 635.712088 -The maximum resident set size (KB) = 383284 +The total amount of wall time = 633.288310 +The maximum resident set size (KB) = 384620 Test 093 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 622.498537 -The maximum resident set size (KB) = 383476 +The total amount of wall time = 610.152838 +The maximum resident set size (KB) = 382268 Test 094 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2242,14 +2242,14 @@ 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 = 638.641177 -The maximum resident set size (KB) = 409792 +The total amount of wall time = 645.671526 +The maximum resident set size (KB) = 410116 Test 095 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2260,28 +2260,28 @@ 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 = 1300.801749 -The maximum resident set size (KB) = 465796 +The total amount of wall time = 1312.945660 +The maximum resident set size (KB) = 464824 Test 096 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -The total amount of wall time = 216.515807 -The maximum resident set size (KB) = 264060 +The total amount of wall time = 206.431445 +The maximum resident set size (KB) = 333864 Test 097 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2289,14 +2289,14 @@ Checking test 098 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 399.567892 -The maximum resident set size (KB) = 830332 +The total amount of wall time = 391.663235 +The maximum resident set size (KB) = 832508 Test 098 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/Denise.Worthen/FV3_RT/rt_253606/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2304,25 +2304,25 @@ Checking test 099 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -The total amount of wall time = 396.357961 -The maximum resident set size (KB) = 817268 +The total amount of wall time = 398.019147 +The maximum resident set size (KB) = 817296 Test 099 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/Denise.Worthen/FV3_RT/rt_253606/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 .... 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 = 1181.404814 -The maximum resident set size (KB) = 833292 +The total amount of wall time = 1188.043629 +The maximum resident set size (KB) = 839768 Test 100 hafs_regional_datm_cdeps PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 18:25:23 UTC 2022 -Elapsed time: 00h:45m:07s. Have a nice day! +Mon Jun 6 12:51:17 UTC 2022 +Elapsed time: 00h:44m:43s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 9062b7dc1a..edf9892802 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,18 +1,18 @@ -Thu Jun 2 16:41:41 UTC 2022 +Sat Jun 4 02:15:26 UTC 2022 Start Regression test -Compile 001 elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v17_p8,FV3_GFS_v17_p8_rrtmgp,FV3_GFS_v15_thompson_mynn_lam3km -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 762 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 726 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 664 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 510 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 475 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 490 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 480 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 835 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 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 baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_1150/control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 144.468974 -The maximum resident set size (KB) = 421400 +The total amount of wall time = 145.002451 +The maximum resident set size (KB) = 421484 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_1150/control_decomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 147.279126 -The maximum resident set size (KB) = 421464 +The total amount of wall time = 146.663156 +The maximum resident set size (KB) = 420528 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_1150/control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.797837 -The maximum resident set size (KB) = 421552 +The total amount of wall time = 136.379110 +The maximum resident set size (KB) = 421480 Test 003 control_2dwrtdecomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_1150/control_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.148002 -The maximum resident set size (KB) = 158948 +The total amount of wall time = 78.863799 +The maximum resident set size (KB) = 158976 Test 004 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_1150/control_fhzero +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 135.279088 -The maximum resident set size (KB) = 421504 +The total amount of wall time = 134.839314 +The maximum resident set size (KB) = 421436 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/Denise.Worthen/FV3_RT/rt_1150/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 136.743983 -The maximum resident set size (KB) = 421712 +The total amount of wall time = 137.171026 +The maximum resident set size (KB) = 421760 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/Denise.Worthen/FV3_RT/rt_1150/control_latlon +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 139.684711 -The maximum resident set size (KB) = 421572 +The total amount of wall time = 140.863891 +The maximum resident set size (KB) = 421604 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/Denise.Worthen/FV3_RT/rt_1150/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 141.878774 -The maximum resident set size (KB) = 421396 +The total amount of wall time = 143.206020 +The maximum resident set size (KB) = 421400 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/Denise.Worthen/FV3_RT/rt_1150/control_c48 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 449.062589 -The maximum resident set size (KB) = 630596 +The total amount of wall time = 452.665887 +The maximum resident set size (KB) = 630516 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/Denise.Worthen/FV3_RT/rt_1150/control_c192 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 551.691902 -The maximum resident set size (KB) = 522132 +The total amount of wall time = 549.395980 +The maximum resident set size (KB) = 522236 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/Denise.Worthen/FV3_RT/rt_1150/control_stochy +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 96.740582 -The maximum resident set size (KB) = 424352 +The total amount of wall time = 97.247159 +The maximum resident set size (KB) = 424236 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/Denise.Worthen/FV3_RT/rt_1150/control_stochy_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 53.538455 -The maximum resident set size (KB) = 175628 +The total amount of wall time = 55.214856 +The maximum resident set size (KB) = 175680 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/Denise.Worthen/FV3_RT/rt_1150/control_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 87.365084 -The maximum resident set size (KB) = 424588 +The total amount of wall time = 88.627915 +The maximum resident set size (KB) = 425236 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/Denise.Worthen/FV3_RT/rt_1150/control_iovr4 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 146.356276 -The maximum resident set size (KB) = 421496 +The total amount of wall time = 144.710703 +The maximum resident set size (KB) = 421464 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/Denise.Worthen/FV3_RT/rt_1150/control_iovr5 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 145.493097 -The maximum resident set size (KB) = 421524 +The total amount of wall time = 144.702194 +The maximum resident set size (KB) = 421636 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/Denise.Worthen/FV3_RT/rt_1150/control_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 191.185176 -The maximum resident set size (KB) = 809772 +The total amount of wall time = 188.828870 +The maximum resident set size (KB) = 809752 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/Denise.Worthen/FV3_RT/rt_1150/control_p8_lndp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 353.215961 -The maximum resident set size (KB) = 810004 +The total amount of wall time = 364.302817 +The maximum resident set size (KB) = 810032 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/Denise.Worthen/FV3_RT/rt_1150/control_restart_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 105.183898 -The maximum resident set size (KB) = 546004 +The total amount of wall time = 107.434485 +The maximum resident set size (KB) = 546044 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/Denise.Worthen/FV3_RT/rt_1150/control_decomp_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 191.782078 -The maximum resident set size (KB) = 803528 +The total amount of wall time = 193.644913 +The maximum resident set size (KB) = 804332 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/Denise.Worthen/FV3_RT/rt_1150/control_p8_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 236.519303 -The maximum resident set size (KB) = 927592 +The total amount of wall time = 233.891677 +The maximum resident set size (KB) = 927952 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/Denise.Worthen/FV3_RT/rt_1150/regional_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 366.967806 -The maximum resident set size (KB) = 534500 +The total amount of wall time = 386.180824 +The maximum resident set size (KB) = 534536 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/Denise.Worthen/FV3_RT/rt_1150/regional_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 220.121081 -The maximum resident set size (KB) = 528008 +The total amount of wall time = 221.369512 +The maximum resident set size (KB) = 527920 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/Denise.Worthen/FV3_RT/rt_1150/regional_control_2dwrtdecomp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 368.308793 -The maximum resident set size (KB) = 534480 +The total amount of wall time = 374.545103 +The maximum resident set size (KB) = 534508 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/Denise.Worthen/FV3_RT/rt_1150/regional_noquilt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 396.705913 -The maximum resident set size (KB) = 536860 +The total amount of wall time = 407.714602 +The maximum resident set size (KB) = 536864 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/Denise.Worthen/FV3_RT/rt_1150/regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 361.257352 -The maximum resident set size (KB) = 531112 +The total amount of wall time = 364.468675 +The maximum resident set size (KB) = 531076 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/Denise.Worthen/FV3_RT/rt_1150/regional_3km +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 300.570009 -The maximum resident set size (KB) = 558448 +The total amount of wall time = 298.309964 +The maximum resident set size (KB) = 558396 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/Denise.Worthen/FV3_RT/rt_1150/rap_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 456.234559 -The maximum resident set size (KB) = 792344 +The total amount of wall time = 454.381804 +The maximum resident set size (KB) = 792372 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/Denise.Worthen/FV3_RT/rt_1150/rap_rrtmgp +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.448868 -The maximum resident set size (KB) = 908592 +The total amount of wall time = 494.134505 +The maximum resident set size (KB) = 908628 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/Denise.Worthen/FV3_RT/rt_1150/regional_spp_sppt_shum_skeb +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 328.912460 -The maximum resident set size (KB) = 860076 +The total amount of wall time = 334.760172 +The maximum resident set size (KB) = 860308 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/Denise.Worthen/FV3_RT/rt_1150/rap_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 279.209313 -The maximum resident set size (KB) = 532244 +The total amount of wall time = 238.026323 +The maximum resident set size (KB) = 532732 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/Denise.Worthen/FV3_RT/rt_1150/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 461.244896 -The maximum resident set size (KB) = 792432 +The total amount of wall time = 459.529849 +The maximum resident set size (KB) = 792476 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/Denise.Worthen/FV3_RT/rt_1150/rap_sfcdiff_restart +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 272.157611 -The maximum resident set size (KB) = 531980 +The total amount of wall time = 240.008878 +The maximum resident set size (KB) = 531936 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/Denise.Worthen/FV3_RT/rt_1150/hrrr_control +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 439.244806 -The maximum resident set size (KB) = 790276 +The total amount of wall time = 442.744084 +The maximum resident set size (KB) = 788396 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 445.629661 -The maximum resident set size (KB) = 784996 +The total amount of wall time = 451.473426 +The maximum resident set size (KB) = 785060 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_v1nssl +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 505.864911 -The maximum resident set size (KB) = 475080 +The total amount of wall time = 511.026166 +The maximum resident set size (KB) = 475020 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 520.469108 -The maximum resident set size (KB) = 470180 +The total amount of wall time = 500.240655 +The maximum resident set size (KB) = 470300 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 254.365820 -The maximum resident set size (KB) = 601304 +The total amount of wall time = 270.168144 +The maximum resident set size (KB) = 601400 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 264.903976 -The maximum resident set size (KB) = 604000 +The total amount of wall time = 273.822917 +The maximum resident set size (KB) = 603984 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_smoke_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 280.569665 -The maximum resident set size (KB) = 613712 +The total amount of wall time = 279.794975 +The maximum resident set size (KB) = 613828 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/Denise.Worthen/FV3_RT/rt_1150/control_csawmg +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 359.683102 -The maximum resident set size (KB) = 488584 +The total amount of wall time = 365.801692 +The maximum resident set size (KB) = 488500 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/Denise.Worthen/FV3_RT/rt_1150/control_csawmgt +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 355.888512 -The maximum resident set size (KB) = 488496 +The total amount of wall time = 360.824195 +The maximum resident set size (KB) = 488540 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/Denise.Worthen/FV3_RT/rt_1150/control_flake +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 239.230817 -The maximum resident set size (KB) = 493460 +The total amount of wall time = 233.603219 +The maximum resident set size (KB) = 491856 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/Denise.Worthen/FV3_RT/rt_1150/control_ras +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 192.703590 -The maximum resident set size (KB) = 456484 +The total amount of wall time = 198.250149 +The maximum resident set size (KB) = 455056 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/Denise.Worthen/FV3_RT/rt_1150/control_wam +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wam Checking test 044 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 113.128332 -The maximum resident set size (KB) = 169688 +The total amount of wall time = 112.577452 +The maximum resident set size (KB) = 169768 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/Denise.Worthen/FV3_RT/rt_1150/control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 142.915582 -The maximum resident set size (KB) = 586828 +The total amount of wall time = 144.951457 +The maximum resident set size (KB) = 584904 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/Denise.Worthen/FV3_RT/rt_1150/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 153.831605 -The maximum resident set size (KB) = 586824 +The total amount of wall time = 154.812067 +The maximum resident set size (KB) = 585228 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/Denise.Worthen/FV3_RT/rt_1150/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 145.478815 -The maximum resident set size (KB) = 586676 +The total amount of wall time = 147.370163 +The maximum resident set size (KB) = 586780 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/Denise.Worthen/FV3_RT/rt_1150/control_stochy_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.181373 -The maximum resident set size (KB) = 590872 +The total amount of wall time = 165.678642 +The maximum resident set size (KB) = 590972 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/Denise.Worthen/FV3_RT/rt_1150/control_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 148.406358 -The maximum resident set size (KB) = 591356 +The total amount of wall time = 149.742367 +The maximum resident set size (KB) = 591544 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/Denise.Worthen/FV3_RT/rt_1150/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 233.178333 +The total amount of wall time = 234.299322 The maximum resident set size (KB) = 627752 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/Denise.Worthen/FV3_RT/rt_1150/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 229.407258 -The maximum resident set size (KB) = 627668 +The total amount of wall time = 231.371024 +The maximum resident set size (KB) = 627692 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/Denise.Worthen/FV3_RT/rt_1150/control_ras_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 150.166442 -The maximum resident set size (KB) = 597868 +The total amount of wall time = 151.514271 +The maximum resident set size (KB) = 598052 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/Denise.Worthen/FV3_RT/rt_1150/control_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 153.767884 -The maximum resident set size (KB) = 644304 +The total amount of wall time = 154.247761 +The maximum resident set size (KB) = 644428 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/Denise.Worthen/FV3_RT/rt_1150/control_debug_p8 +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.854827 -The maximum resident set size (KB) = 974220 +The total amount of wall time = 164.206363 +The maximum resident set size (KB) = 974252 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/Denise.Worthen/FV3_RT/rt_1150/control_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.039600 -The maximum resident set size (KB) = 944124 +The total amount of wall time = 175.235998 +The maximum resident set size (KB) = 944300 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/Denise.Worthen/FV3_RT/rt_1150/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.004825 -The maximum resident set size (KB) = 940836 +The total amount of wall time = 166.888550 +The maximum resident set size (KB) = 940768 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/Denise.Worthen/FV3_RT/rt_1150/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 185.583694 -The maximum resident set size (KB) = 973004 +The total amount of wall time = 183.629070 +The maximum resident set size (KB) = 973192 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/Denise.Worthen/FV3_RT/rt_1150/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 176.861319 -The maximum resident set size (KB) = 944172 +The total amount of wall time = 177.334877 +The maximum resident set size (KB) = 944164 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/Denise.Worthen/FV3_RT/rt_1150/regional_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 247.886018 -The maximum resident set size (KB) = 554884 +The total amount of wall time = 248.389814 +The maximum resident set size (KB) = 554936 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/Denise.Worthen/FV3_RT/rt_1150/rap_control_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.246269 -The maximum resident set size (KB) = 952788 +The total amount of wall time = 269.455848 +The maximum resident set size (KB) = 952992 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/Denise.Worthen/FV3_RT/rt_1150/rap_unified_drag_suite_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.101445 -The maximum resident set size (KB) = 952840 +The total amount of wall time = 271.815031 +The maximum resident set size (KB) = 953028 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/Denise.Worthen/FV3_RT/rt_1150/rap_diag_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.592873 -The maximum resident set size (KB) = 1035456 +The total amount of wall time = 286.733035 +The maximum resident set size (KB) = 1035404 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/Denise.Worthen/FV3_RT/rt_1150/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.899152 -The maximum resident set size (KB) = 951380 +The total amount of wall time = 276.029246 +The maximum resident set size (KB) = 951308 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/Denise.Worthen/FV3_RT/rt_1150/rap_unified_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 275.825713 -The maximum resident set size (KB) = 953064 +The total amount of wall time = 277.080259 +The maximum resident set size (KB) = 953004 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/Denise.Worthen/FV3_RT/rt_1150/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.154289 -The maximum resident set size (KB) = 953676 +The total amount of wall time = 272.434312 +The maximum resident set size (KB) = 953684 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/Denise.Worthen/FV3_RT/rt_1150/rap_flake_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 269.747435 -The maximum resident set size (KB) = 952920 +The total amount of wall time = 271.234208 +The maximum resident set size (KB) = 952980 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/Denise.Worthen/FV3_RT/rt_1150/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 269.869178 -The maximum resident set size (KB) = 952824 +The total amount of wall time = 270.677901 +The maximum resident set size (KB) = 952952 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/Denise.Worthen/FV3_RT/rt_1150/rap_noah_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 264.662158 -The maximum resident set size (KB) = 951044 +The total amount of wall time = 265.360041 +The maximum resident set size (KB) = 951060 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/Denise.Worthen/FV3_RT/rt_1150/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 448.866220 -The maximum resident set size (KB) = 1073868 +The total amount of wall time = 451.550523 +The maximum resident set size (KB) = 1073880 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/Denise.Worthen/FV3_RT/rt_1150/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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.037626 -The maximum resident set size (KB) = 953360 +The total amount of wall time = 271.411412 +The maximum resident set size (KB) = 953352 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/Denise.Worthen/FV3_RT/rt_1150/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 439.220319 -The maximum resident set size (KB) = 951516 +The total amount of wall time = 440.213809 +The maximum resident set size (KB) = 951588 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/Denise.Worthen/FV3_RT/rt_1150/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 268.185001 -The maximum resident set size (KB) = 947640 +The total amount of wall time = 267.001354 +The maximum resident set size (KB) = 947524 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/Denise.Worthen/FV3_RT/rt_1150/control_wam_debug +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/control_wam_debug Checking test 073 control_wam_debug results .... Comparing sfcf019.nc .........OK Comparing atmf019.nc .........OK -The total amount of wall time = 271.269027 -The maximum resident set size (KB) = 198836 +The total amount of wall time = 272.431327 +The maximum resident set size (KB) = 199196 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 400.995689 -The maximum resident set size (KB) = 647716 +The total amount of wall time = 406.051472 +The maximum resident set size (KB) = 648748 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 505.519630 -The maximum resident set size (KB) = 1003228 +The total amount of wall time = 484.064646 +The maximum resident set size (KB) = 1002516 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 550.808308 -The maximum resident set size (KB) = 671080 +The total amount of wall time = 579.958603 +The maximum resident set size (KB) = 670956 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 953.193470 -The maximum resident set size (KB) = 697248 +The total amount of wall time = 1021.650608 +The maximum resident set size (KB) = 697380 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 1022.717689 -The maximum resident set size (KB) = 708984 +The total amount of wall time = 1053.051708 +The maximum resident set size (KB) = 709360 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 397.694433 -The maximum resident set size (KB) = 243284 +The total amount of wall time = 395.350242 +The maximum resident set size (KB) = 243536 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 449.278437 -The maximum resident set size (KB) = 248752 +The total amount of wall time = 448.958610 +The maximum resident set size (KB) = 248804 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/Denise.Worthen/FV3_RT/rt_1150/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 180.689123 -The maximum resident set size (KB) = 148176 +The total amount of wall time = 176.531580 +The maximum resident set size (KB) = 148204 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_specified_moving_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 251.286819 -The maximum resident set size (KB) = 253216 +The total amount of wall time = 249.498429 +The maximum resident set size (KB) = 253296 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/Denise.Worthen/FV3_RT/rt_1150/hafs_regional_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 236.862864 -The maximum resident set size (KB) = 253096 +The total amount of wall time = 237.398685 +The maximum resident set size (KB) = 252768 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/Denise.Worthen/FV3_RT/rt_1150/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 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 = 278.420868 -The maximum resident set size (KB) = 279100 +The total amount of wall time = 276.180558 +The maximum resident set size (KB) = 280148 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/Denise.Worthen/FV3_RT/rt_1150/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 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 = 587.403994 -The maximum resident set size (KB) = 335836 +The total amount of wall time = 585.789254 +The maximum resident set size (KB) = 335624 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/Denise.Worthen/FV3_RT/rt_1150/hafs_global_storm_following_1nest_atm +working dir = /gpfs/hps3/stmp/Minsuk.Ji/FV3_RT/rt_31605/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 = 68.808009 -The maximum resident set size (KB) = 167136 +The total amount of wall time = 67.917412 +The maximum resident set size (KB) = 166920 Test 086 hafs_global_storm_following_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 17:21:20 UTC 2022 -Elapsed time: 00h:39m:39s. Have a nice day! +Sat Jun 4 02:55:56 UTC 2022 +Elapsed time: 00h:40m:31s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 9cc2e9f3a7..4a70018ec1 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,25 +1,25 @@ -Thu Jun 2 17:29:01 UTC 2022 +Sat Jun 4 02:13:44 UTC 2022 Start Regression test -Compile 001 elapsed time 2305 seconds. -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 646 seconds. -DAPP=S2SWA -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1166 seconds. -DAPP=ATM -DCCPP_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 1294 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 1312 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 906 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 007 elapsed time 439 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 497 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 448 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 283 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 1942 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 1723 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 787 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 014 elapsed time 316 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 015 elapsed time 1498 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 016 elapsed time 1015 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v17_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +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 baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -84,14 +84,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 = 452.020218 -[0] The maximum resident set size (KB) = 1467588 +[0] The total amount of wall time = 443.022309 +[0] The maximum resident set size (KB) = 1469636 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/Denise.Worthen/FV3_RT/rt_27291/cpld_restart_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_p8 Checking test 002 cpld_restart_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -144,14 +144,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.584152 -[0] The maximum resident set size (KB) = 1435564 +[0] The total amount of wall time = 269.464816 +[0] The maximum resident set size (KB) = 1434856 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/Denise.Worthen/FV3_RT/rt_27291/cpld_2threads_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_2threads_p8 Checking test 003 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -204,14 +204,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 = 496.062947 -[0] The maximum resident set size (KB) = 2203596 +[0] The total amount of wall time = 493.907731 +[0] The maximum resident set size (KB) = 2207084 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/Denise.Worthen/FV3_RT/rt_27291/cpld_decomp_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_decomp_p8 Checking test 004 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -264,14 +264,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.054669 -[0] The maximum resident set size (KB) = 1634328 +[0] The total amount of wall time = 443.432792 +[0] The maximum resident set size (KB) = 1635984 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/Denise.Worthen/FV3_RT/rt_27291/cpld_mpi_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_mpi_p8 Checking test 005 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -324,14 +324,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 = 381.705290 -[0] The maximum resident set size (KB) = 1273292 +[0] The total amount of wall time = 371.907989 +[0] The maximum resident set size (KB) = 1274624 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/Denise.Worthen/FV3_RT/rt_27291/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_control_c192_p8 Checking test 006 cpld_control_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -384,14 +384,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 = 788.280872 -[0] The maximum resident set size (KB) = 1747100 +[0] The total amount of wall time = 776.911266 +[0] The maximum resident set size (KB) = 1751516 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/Denise.Worthen/FV3_RT/rt_27291/cpld_restart_c192_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_c192_p8 Checking test 007 cpld_restart_c192_p8 results .... Comparing sfcf030.tile1.nc .........OK Comparing sfcf030.tile2.nc .........OK @@ -444,14 +444,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 = 470.921623 -[0] The maximum resident set size (KB) = 1715172 +[0] The total amount of wall time = 460.594372 +[0] The maximum resident set size (KB) = 1715668 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/Denise.Worthen/FV3_RT/rt_27291/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_bmark_p8 Checking test 008 cpld_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -497,14 +497,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 = 1359.503498 -[0] The maximum resident set size (KB) = 2575396 +[0] The total amount of wall time = 1324.190591 +[0] The maximum resident set size (KB) = 2576984 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/Denise.Worthen/FV3_RT/rt_27291/cpld_restart_bmark_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_restart_bmark_p8 Checking test 009 cpld_restart_bmark_p8 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -550,14 +550,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 = 882.416938 -[0] The maximum resident set size (KB) = 2570464 +[0] The total amount of wall time = 853.728602 +[0] The maximum resident set size (KB) = 2547956 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/Denise.Worthen/FV3_RT/rt_27291/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/cpld_debug_p8 Checking test 010 cpld_debug_p8 results .... Comparing sfcf003.tile1.nc .........OK Comparing sfcf003.tile2.nc .........OK @@ -610,14 +610,14 @@ 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 = 875.765766 -[0] The maximum resident set size (KB) = 1536680 +[0] The total amount of wall time = 873.694287 +[0] The maximum resident set size (KB) = 1535312 Test 010 cpld_debug_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control Checking test 011 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -664,14 +664,14 @@ 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.103150 -[0] The maximum resident set size (KB) = 468620 +[0] The total amount of wall time = 145.150132 +[0] The maximum resident set size (KB) = 466548 Test 011 control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_decomp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_decomp Checking test 012 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -714,28 +714,28 @@ 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 = 150.876309 -[0] The maximum resident set size (KB) = 464556 +[0] The total amount of wall time = 155.929494 +[0] The maximum resident set size (KB) = 462976 Test 012 control_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_2dwrtdecomp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2dwrtdecomp Checking test 013 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 = 139.580343 -[0] The maximum resident set size (KB) = 467208 +[0] The total amount of wall time = 142.032098 +[0] The maximum resident set size (KB) = 463792 Test 013 control_2dwrtdecomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_2threads +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2threads Checking test 014 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -778,14 +778,14 @@ 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 = 134.792776 -[0] The maximum resident set size (KB) = 519284 +[0] The total amount of wall time = 136.639433 +[0] The maximum resident set size (KB) = 517416 Test 014 control_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_restart Checking test 015 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -824,14 +824,14 @@ 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 = 77.831429 -[0] The maximum resident set size (KB) = 211672 +[0] The total amount of wall time = 76.475815 +[0] The maximum resident set size (KB) = 212636 Test 015 control_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_fhzero +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_fhzero Checking test 016 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -874,14 +874,14 @@ 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 = 142.364713 -[0] The maximum resident set size (KB) = 468424 +[0] The total amount of wall time = 136.773360 +[0] The maximum resident set size (KB) = 462136 Test 016 control_fhzero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_CubedSphereGrid Checking test 017 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -908,14 +908,14 @@ Checking test 017 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 142.683787 -[0] The maximum resident set size (KB) = 472752 +[0] The total amount of wall time = 141.024779 +[0] The maximum resident set size (KB) = 469888 Test 017 control_CubedSphereGrid PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_latlon -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_latlon +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_latlon Checking test 018 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -926,17 +926,17 @@ Checking test 018 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.614024 -[0] The maximum resident set size (KB) = 462092 +[0] The total amount of wall time = 142.702135 +[0] The maximum resident set size (KB) = 464256 Test 018 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/Denise.Worthen/FV3_RT/rt_27291/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 ............ALT CHECK......OK + Comparing sfcf024.nc .........OK Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK @@ -944,14 +944,14 @@ Checking test 019 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 147.039720 -[0] The maximum resident set size (KB) = 464704 +[0] The total amount of wall time = 145.323481 +[0] The maximum resident set size (KB) = 463176 Test 019 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/Denise.Worthen/FV3_RT/rt_27291/control_c48 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c48 Checking test 020 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -990,14 +990,14 @@ 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 = 447.159442 -[0] The maximum resident set size (KB) = 664728 +[0] The total amount of wall time = 448.072031 +[0] The maximum resident set size (KB) = 665548 Test 020 control_c48 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_c192 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c192 Checking test 021 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1008,14 +1008,14 @@ Checking test 021 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 561.452587 -[0] The maximum resident set size (KB) = 570288 +[0] The total amount of wall time = 561.025690 +[0] The maximum resident set size (KB) = 565120 Test 021 control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_c384 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384 Checking test 022 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1026,14 +1026,14 @@ Checking test 022 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 566.108032 -[0] The maximum resident set size (KB) = 835684 +[0] The total amount of wall time = 561.776633 +[0] The maximum resident set size (KB) = 837512 Test 022 control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384gdas -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_c384gdas +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384gdas Checking test 023 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1076,14 +1076,14 @@ 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 = 567.409151 -[0] The maximum resident set size (KB) = 985292 +[0] The total amount of wall time = 553.855443 +[0] The maximum resident set size (KB) = 983712 Test 023 control_c384gdas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_c384_progsigma -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_c384_progsigma +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_c384_progsigma Checking test 024 control_c384_progsigma results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1094,14 +1094,14 @@ Checking test 024 control_c384_progsigma results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 576.314124 -[0] The maximum resident set size (KB) = 858164 +[0] The total amount of wall time = 573.405126 +[0] The maximum resident set size (KB) = 856460 Test 024 control_c384_progsigma PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_stochy +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_stochy Checking test 025 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1112,28 +1112,28 @@ Checking test 025 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 95.738121 -[0] The maximum resident set size (KB) = 471088 +[0] The total amount of wall time = 98.898938 +[0] The maximum resident set size (KB) = 470804 Test 025 control_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_stochy_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_stochy_restart Checking test 026 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 51.120742 -[0] The maximum resident set size (KB) = 268688 +[0] The total amount of wall time = 52.302679 +[0] The maximum resident set size (KB) = 264560 Test 026 control_stochy_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_lndp Checking test 027 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1144,14 +1144,14 @@ Checking test 027 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 88.435590 -[0] The maximum resident set size (KB) = 470920 +[0] The total amount of wall time = 86.380892 +[0] The maximum resident set size (KB) = 464560 Test 027 control_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr4 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_iovr4 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_iovr4 Checking test 028 control_iovr4 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1166,14 +1166,14 @@ Checking test 028 control_iovr4 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 145.260751 -[0] The maximum resident set size (KB) = 465092 +[0] The total amount of wall time = 145.589141 +[0] The maximum resident set size (KB) = 463824 Test 028 control_iovr4 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_iovr5 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_iovr5 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_iovr5 Checking test 029 control_iovr5 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1188,14 +1188,14 @@ Checking test 029 control_iovr5 results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 145.080984 -[0] The maximum resident set size (KB) = 470820 +[0] The total amount of wall time = 143.691109 +[0] The maximum resident set size (KB) = 463864 Test 029 control_iovr5 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1242,14 +1242,14 @@ Checking test 030 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 192.099647 -[0] The maximum resident set size (KB) = 847752 +[0] The total amount of wall time = 191.009812 +[0] The maximum resident set size (KB) = 841936 Test 030 control_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_p8_lndp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8_lndp Checking test 031 control_p8_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1268,14 +1268,14 @@ Checking test 031 control_p8_lndp results .... Comparing GFSPRS.GrbF24 .........OK Comparing GFSPRS.GrbF48 .........OK -[0] The total amount of wall time = 357.996391 -[0] The maximum resident set size (KB) = 848644 +[0] The total amount of wall time = 352.561470 +[0] The maximum resident set size (KB) = 847836 Test 031 control_p8_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_restart_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1314,14 +1314,14 @@ Checking test 032 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 103.568521 -[0] The maximum resident set size (KB) = 592372 +[0] The total amount of wall time = 99.058722 +[0] The maximum resident set size (KB) = 591760 Test 032 control_restart_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_decomp_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1364,14 +1364,14 @@ Checking test 033 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 198.697717 -[0] The maximum resident set size (KB) = 839732 +[0] The total amount of wall time = 195.644473 +[0] The maximum resident set size (KB) = 840704 Test 033 control_decomp_p8 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_2threads_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,14 +1414,14 @@ Checking test 034 control_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 175.280493 -[0] The maximum resident set size (KB) = 925592 +[0] The total amount of wall time = 174.953631 +[0] The maximum resident set size (KB) = 923204 Test 034 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/Denise.Worthen/FV3_RT/rt_27291/control_p8_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_p8_rrtmgp Checking test 035 control_p8_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1468,14 +1468,14 @@ Checking test 035 control_p8_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 234.183687 -[0] The maximum resident set size (KB) = 963260 +[0] The total amount of wall time = 229.906180 +[0] The maximum resident set size (KB) = 966656 Test 035 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/Denise.Worthen/FV3_RT/rt_27291/regional_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1486,42 +1486,42 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 378.285073 -[0] The maximum resident set size (KB) = 581556 +[0] The total amount of wall time = 378.955681 +[0] The maximum resident set size (KB) = 580664 Test 036 regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/regional_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_restart Checking test 037 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 = 207.773598 -[0] The maximum resident set size (KB) = 579924 +[0] The total amount of wall time = 206.356630 +[0] The maximum resident set size (KB) = 584828 Test 037 regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/regional_control_2dwrtdecomp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_control_2dwrtdecomp Checking test 038 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 = 373.095283 -[0] The maximum resident set size (KB) = 577740 +[0] The total amount of wall time = 372.261955 +[0] The maximum resident set size (KB) = 579472 Test 038 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/Denise.Worthen/FV3_RT/rt_27291/regional_noquilt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_noquilt Checking test 039 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1529,14 +1529,14 @@ Checking test 039 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -[0] The total amount of wall time = 399.270109 -[0] The maximum resident set size (KB) = 612004 +[0] The total amount of wall time = 402.908865 +[0] The maximum resident set size (KB) = 611240 Test 039 regional_noquilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/regional_2threads +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_2threads Checking test 040 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1547,28 +1547,28 @@ Checking test 040 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 220.587757 -[0] The maximum resident set size (KB) = 578672 +[0] The total amount of wall time = 223.197417 +[0] The maximum resident set size (KB) = 583620 Test 040 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/Denise.Worthen/FV3_RT/rt_27291/regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK + Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc ............ALT CHECK......OK -[0] The total amount of wall time = 374.793034 -[0] The maximum resident set size (KB) = 578872 +[0] The total amount of wall time = 375.446267 +[0] The maximum resident set size (KB) = 573016 Test 041 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/Denise.Worthen/FV3_RT/rt_27291/regional_3km +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/regional_3km Checking test 042 regional_3km results .... Comparing dynf000.nc .........OK Comparing dynf006.nc .........OK @@ -1579,14 +1579,14 @@ Checking test 042 regional_3km results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF06 .........OK -[0] The total amount of wall time = 309.634817 -[0] The maximum resident set size (KB) = 608420 +[0] The total amount of wall time = 306.227213 +[0] The maximum resident set size (KB) = 608120 Test 042 regional_3km PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1633,14 +1633,14 @@ 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 = 477.252077 -[0] The maximum resident set size (KB) = 839400 +[0] The total amount of wall time = 471.211531 +[0] The maximum resident set size (KB) = 840616 Test 043 rap_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_rrtmgp +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_rrtmgp Checking test 044 rap_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1687,14 +1687,14 @@ 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 = 511.663334 -[0] The maximum resident set size (KB) = 952032 +[0] The total amount of wall time = 513.517038 +[0] The maximum resident set size (KB) = 952308 Test 044 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK @@ -1705,14 +1705,14 @@ Checking test 045 regional_spp_sppt_shum_skeb results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF01 .........OK -[0] The total amount of wall time = 267.891507 -[0] The maximum resident set size (KB) = 940680 +[0] The total amount of wall time = 264.148449 +[0] The maximum resident set size (KB) = 934200 Test 045 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/Denise.Worthen/FV3_RT/rt_27291/rap_2threads +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_2threads Checking test 046 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1759,14 +1759,14 @@ 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.525776 -[0] The maximum resident set size (KB) = 905792 +[0] The total amount of wall time = 440.370492 +[0] The maximum resident set size (KB) = 902448 Test 046 rap_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_restart Checking test 047 rap_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1805,14 +1805,14 @@ 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 = 240.656365 -[0] The maximum resident set size (KB) = 590784 +[0] The total amount of wall time = 243.286234 +[0] The maximum resident set size (KB) = 593816 Test 047 rap_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_sfcdiff Checking test 048 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1859,14 +1859,14 @@ 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 = 479.284689 -[0] The maximum resident set size (KB) = 836428 +[0] The total amount of wall time = 466.649018 +[0] The maximum resident set size (KB) = 839488 Test 048 rap_sfcdiff PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_sfcdiff_restart +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rap_sfcdiff_restart Checking test 049 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1905,14 +1905,14 @@ 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 = 238.187513 -[0] The maximum resident set size (KB) = 592140 +[0] The total amount of wall time = 237.263444 +[0] The maximum resident set size (KB) = 589568 Test 049 rap_sfcdiff_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hrrr_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/hrrr_control +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hrrr_control Checking test 050 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1959,14 +1959,14 @@ 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 = 458.698972 -[0] The maximum resident set size (KB) = 841292 +[0] The total amount of wall time = 454.071923 +[0] The maximum resident set size (KB) = 834736 Test 050 hrrr_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1beta Checking test 051 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2013,14 +2013,14 @@ 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 = 466.120229 -[0] The maximum resident set size (KB) = 835176 +[0] The total amount of wall time = 469.500011 +[0] The maximum resident set size (KB) = 836892 Test 051 rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rrfs_v1nssl +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1nssl Checking test 052 rrfs_v1nssl results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2035,14 +2035,14 @@ Checking test 052 rrfs_v1nssl results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 539.080098 -[0] The maximum resident set size (KB) = 523384 +[0] The total amount of wall time = 536.162089 +[0] The maximum resident set size (KB) = 524060 Test 052 rrfs_v1nssl PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rrfs_v1nssl_nohailnoccn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rrfs_v1nssl_nohailnoccn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/rrfs_v1nssl_nohailnoccn Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -2057,14 +2057,14 @@ Checking test 053 rrfs_v1nssl_nohailnoccn results .... Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 510.226266 -[0] The maximum resident set size (KB) = 513096 +[0] The total amount of wall time = 517.250098 +[0] The maximum resident set size (KB) = 515652 Test 053 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2073,14 +2073,14 @@ Checking test 054 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 202.962002 -[0] The maximum resident set size (KB) = 666152 +[0] The total amount of wall time = 201.719075 +[0] The maximum resident set size (KB) = 667888 Test 054 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2089,14 +2089,14 @@ 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.606599 -[0] The maximum resident set size (KB) = 669848 +[0] The total amount of wall time = 203.839331 +[0] The maximum resident set size (KB) = 670124 Test 055 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK @@ -2105,14 +2105,14 @@ Checking test 056 rrfs_smoke_conus13km_hrrr_warm results .... Comparing atmf001.nc .........OK Comparing atmf002.nc .........OK -[0] The total amount of wall time = 224.938312 -[0] The maximum resident set size (KB) = 679504 +[0] The total amount of wall time = 215.934250 +[0] The maximum resident set size (KB) = 682220 Test 056 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/Denise.Worthen/FV3_RT/rt_27291/control_csawmg +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmg Checking test 057 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2123,14 +2123,14 @@ Checking test 057 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 378.586366 -[0] The maximum resident set size (KB) = 522768 +[0] The total amount of wall time = 374.083298 +[0] The maximum resident set size (KB) = 525220 Test 057 control_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_csawmgt +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_csawmgt Checking test 058 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2141,14 +2141,14 @@ Checking test 058 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 379.431875 -[0] The maximum resident set size (KB) = 524536 +[0] The total amount of wall time = 370.190201 +[0] The maximum resident set size (KB) = 525776 Test 058 control_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_flake +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_flake Checking test 059 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2159,14 +2159,14 @@ Checking test 059 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 260.342056 -[0] The maximum resident set size (KB) = 531440 +[0] The total amount of wall time = 260.076341 +[0] The maximum resident set size (KB) = 532832 Test 059 control_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_ras +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_ras Checking test 060 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2177,14 +2177,14 @@ Checking test 060 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 198.320527 -[0] The maximum resident set size (KB) = 495604 +[0] The total amount of wall time = 193.423446 +[0] The maximum resident set size (KB) = 495536 Test 060 control_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_thompson +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_thompson Checking test 061 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2195,14 +2195,14 @@ Checking test 061 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 271.837043 -[0] The maximum resident set size (KB) = 847560 +[0] The total amount of wall time = 268.391358 +[0] The maximum resident set size (KB) = 848676 Test 061 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2213,54 +2213,42 @@ Checking test 062 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 259.514289 -[0] The maximum resident set size (KB) = 839440 +[0] The total amount of wall time = 250.697648 +[0] The maximum resident set size (KB) = 840620 Test 062 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/Denise.Worthen/FV3_RT/rt_27291/control_wam +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_wam Checking test 063 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 120.360377 -[0] The maximum resident set size (KB) = 230828 +[0] The total amount of wall time = 121.302605 +[0] The maximum resident set size (KB) = 231132 Test 063 control_wam PASS - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/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 = 167.441901 -[0] The maximum resident set size (KB) = 630000 - -Test 064 control_debug PASS +Test 064 control_debug FAIL baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/control_2threads_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 157.372209 -[0] The maximum resident set size (KB) = 687972 +[0] The total amount of wall time = 156.392038 +[0] The maximum resident set size (KB) = 685044 Test 065 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/Denise.Worthen/FV3_RT/rt_27291/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_CubedSphereGrid_debug Checking test 066 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2287,403 +2275,404 @@ Checking test 066 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.440258 -[0] The maximum resident set size (KB) = 631336 +[0] The total amount of wall time = 182.311297 +[0] The maximum resident set size (KB) = 634732 Test 066 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK - Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf001.nc .........OK -[0] The total amount of wall time = 169.897088 -[0] The maximum resident set size (KB) = 631036 +[0] The total amount of wall time = 170.146405 +[0] The maximum resident set size (KB) = 629768 Test 067 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/Denise.Worthen/FV3_RT/rt_27291/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 192.784467 -[0] The maximum resident set size (KB) = 636608 +[0] The total amount of wall time = 191.337130 +[0] The maximum resident set size (KB) = 635184 Test 068 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/Denise.Worthen/FV3_RT/rt_27291/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 172.141495 -[0] The maximum resident set size (KB) = 633092 +[0] The total amount of wall time = 170.775958 +[0] The maximum resident set size (KB) = 632628 Test 069 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/Denise.Worthen/FV3_RT/rt_27291/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 270.978829 -[0] The maximum resident set size (KB) = 665380 +[0] The total amount of wall time = 269.505200 +[0] The maximum resident set size (KB) = 666120 Test 070 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/Denise.Worthen/FV3_RT/rt_27291/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 265.981389 -[0] The maximum resident set size (KB) = 664096 +[0] The total amount of wall time = 265.151183 +[0] The maximum resident set size (KB) = 664408 Test 071 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/Denise.Worthen/FV3_RT/rt_27291/control_ras_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 174.618964 -[0] The maximum resident set size (KB) = 645348 +[0] The total amount of wall time = 173.949200 +[0] The maximum resident set size (KB) = 644436 Test 072 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/Denise.Worthen/FV3_RT/rt_27291/control_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 178.903992 -[0] The maximum resident set size (KB) = 684988 +[0] The total amount of wall time = 176.310253 +[0] The maximum resident set size (KB) = 688012 Test 073 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/Denise.Worthen/FV3_RT/rt_27291/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 191.039873 -[0] The maximum resident set size (KB) = 1007728 +[0] The total amount of wall time = 190.053164 +[0] The maximum resident set size (KB) = 1013212 Test 074 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/Denise.Worthen/FV3_RT/rt_27291/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 199.855535 -[0] The maximum resident set size (KB) = 987392 +[0] The total amount of wall time = 197.645275 +[0] The maximum resident set size (KB) = 992596 Test 075 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.222424 -[0] The maximum resident set size (KB) = 985568 +[0] The total amount of wall time = 190.752476 +[0] The maximum resident set size (KB) = 986428 Test 076 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/Denise.Worthen/FV3_RT/rt_27291/control_thompson_extdiag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 207.934755 -[0] The maximum resident set size (KB) = 1019828 +[0] The total amount of wall time = 207.167858 +[0] The maximum resident set size (KB) = 1022148 Test 077 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 200.522366 -[0] The maximum resident set size (KB) = 984864 +[0] The total amount of wall time = 197.919831 +[0] The maximum resident set size (KB) = 993560 Test 078 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/Denise.Worthen/FV3_RT/rt_27291/regional_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 283.476947 -[0] The maximum resident set size (KB) = 608576 +[0] The total amount of wall time = 283.143677 +[0] The maximum resident set size (KB) = 607820 Test 079 regional_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/rap_control_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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.991404 -[0] The maximum resident set size (KB) = 996584 +[0] The total amount of wall time = 307.103955 +[0] The maximum resident set size (KB) = 999740 Test 080 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/Denise.Worthen/FV3_RT/rt_27291/rap_unified_drag_suite_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 308.765924 -[0] The maximum resident set size (KB) = 1001356 +[0] The total amount of wall time = 308.528958 +[0] The maximum resident set size (KB) = 999220 Test 081 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/Denise.Worthen/FV3_RT/rt_27291/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 323.045777 -[0] The maximum resident set size (KB) = 1083852 +[0] The total amount of wall time = 323.006533 +[0] The maximum resident set size (KB) = 1082180 Test 082 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 314.018432 -[0] The maximum resident set size (KB) = 999276 +[0] The total amount of wall time = 313.554327 +[0] The maximum resident set size (KB) = 1001360 Test 083 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/Denise.Worthen/FV3_RT/rt_27291/rap_unified_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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 313.749042 -[0] The maximum resident set size (KB) = 997048 +[0] The total amount of wall time = 312.886658 +[0] The maximum resident set size (KB) = 995872 Test 084 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/Denise.Worthen/FV3_RT/rt_27291/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 311.710605 -[0] The maximum resident set size (KB) = 1003420 +[0] The total amount of wall time = 309.184493 +[0] The maximum resident set size (KB) = 997780 Test 085 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/Denise.Worthen/FV3_RT/rt_27291/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 308.664432 -[0] The maximum resident set size (KB) = 1001836 +[0] The total amount of wall time = 306.059062 +[0] The maximum resident set size (KB) = 998436 Test 086 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 308.542671 -[0] The maximum resident set size (KB) = 997708 +[0] The total amount of wall time = 308.357079 +[0] The maximum resident set size (KB) = 996764 Test 087 rap_progcld_thompson_debug PASS -Test 088 rap_noah_debug FAIL + +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 .... + 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 + +Test 088 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/Denise.Worthen/FV3_RT/rt_27291/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 521.806517 -[0] The maximum resident set size (KB) = 1114732 +[0] The total amount of wall time = 518.876774 +[0] The maximum resident set size (KB) = 1114540 Test 089 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/Denise.Worthen/FV3_RT/rt_27291/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 310.141261 -[0] The maximum resident set size (KB) = 1000256 +[0] The total amount of wall time = 309.923890 +[0] The maximum resident set size (KB) = 1002044 Test 090 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 510.844216 -[0] The maximum resident set size (KB) = 998648 +[0] The total amount of wall time = 509.548287 +[0] The maximum resident set size (KB) = 1002096 Test 091 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/Denise.Worthen/FV3_RT/rt_27291/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 306.919965 -[0] The maximum resident set size (KB) = 996452 +[0] The total amount of wall time = 304.952539 +[0] The maximum resident set size (KB) = 997056 Test 092 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/Denise.Worthen/FV3_RT/rt_27291/control_wam_debug +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 322.635223 -[0] The maximum resident set size (KB) = 256108 +[0] The total amount of wall time = 322.862136 +[0] The maximum resident set size (KB) = 258392 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/Denise.Worthen/FV3_RT/rt_27291/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 = 285.515646 -[0] The maximum resident set size (KB) = 712156 - -Test 094 hafs_regional_atm PASS +Test 094 hafs_regional_atm FAIL baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 386.357023 -[0] The maximum resident set size (KB) = 1078316 +[0] The total amount of wall time = 379.154242 +[0] The maximum resident set size (KB) = 1077680 Test 095 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2692,14 +2681,14 @@ 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 = 447.074814 -[0] The maximum resident set size (KB) = 746880 +[0] The total amount of wall time = 430.611189 +[0] The maximum resident set size (KB) = 744520 Test 096 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2708,14 +2697,14 @@ 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 = 996.051237 -[0] The maximum resident set size (KB) = 777992 +[0] The total amount of wall time = 980.797020 +[0] The maximum resident set size (KB) = 778100 Test 097 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2726,28 +2715,28 @@ 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 = 1115.154706 -[0] The maximum resident set size (KB) = 794180 +[0] The total amount of wall time = 1099.699116 +[0] The maximum resident set size (KB) = 791184 Test 098 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -[0] The total amount of wall time = 416.767481 -[0] The maximum resident set size (KB) = 318608 +[0] The total amount of wall time = 417.263947 +[0] The maximum resident set size (KB) = 324736 Test 099 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2756,28 +2745,28 @@ 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 = 464.047214 -[0] The maximum resident set size (KB) = 329644 +[0] The total amount of wall time = 466.992329 +[0] The maximum resident set size (KB) = 331232 Test 100 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -[0] The total amount of wall time = 186.203539 -[0] The maximum resident set size (KB) = 205832 +[0] The total amount of wall time = 187.862018 +[0] The maximum resident set size (KB) = 206088 Test 101 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2790,30 +2779,42 @@ 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 = 570.949893 -[0] The maximum resident set size (KB) = 279884 +[0] The total amount of wall time = 574.628260 +[0] The maximum resident set size (KB) = 251308 Test 102 hafs_global_multiple_4nests_atm PASS -Test 103 hafs_regional_specified_moving_1nest_atm FAIL + +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 .... + Comparing atmf006.nc .........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 + +Test 103 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing atm.nest02.f006.nc .........OK Comparing sfc.nest02.f006.nc .........OK -[0] The total amount of wall time = 237.255973 -[0] The maximum resident set size (KB) = 325268 +[0] The total amount of wall time = 241.243489 +[0] The maximum resident set size (KB) = 322476 Test 104 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2822,14 +2823,14 @@ 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 = 274.925785 -[0] The maximum resident set size (KB) = 345308 +[0] The total amount of wall time = 272.861570 +[0] The maximum resident set size (KB) = 349504 Test 105 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2840,28 +2841,28 @@ 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 = 706.648488 -[0] The maximum resident set size (KB) = 416480 +[0] The total amount of wall time = 688.184412 +[0] The maximum resident set size (KB) = 417900 Test 106 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........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.912042 -[0] The maximum resident set size (KB) = 223356 +[0] The total amount of wall time = 80.724801 +[0] The maximum resident set size (KB) = 225164 Test 107 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/Denise.Worthen/FV3_RT/rt_27291/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/hafs_regional_docn Checking test 108 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2869,14 +2870,14 @@ Checking test 108 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 437.829672 -[0] The maximum resident set size (KB) = 765824 +[0] The total amount of wall time = 424.775770 +[0] The maximum resident set size (KB) = 762160 Test 108 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2884,118 +2885,118 @@ Checking test 109 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -[0] The total amount of wall time = 433.266880 -[0] The maximum resident set size (KB) = 743780 +[0] The total amount of wall time = 432.345237 +[0] The maximum resident set size (KB) = 739772 Test 109 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 1102.114473 -[0] The maximum resident set size (KB) = 889768 +[0] The total amount of wall time = 1090.234332 +[0] The maximum resident set size (KB) = 888392 Test 110 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 177.545950 -[0] The maximum resident set size (KB) = 743892 +[0] The total amount of wall time = 175.311549 +[0] The maximum resident set size (KB) = 725068 Test 111 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/Denise.Worthen/FV3_RT/rt_27291/datm_cdeps_restart_cfsr +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 121.819689 -[0] The maximum resident set size (KB) = 724244 +[0] The total amount of wall time = 121.180201 +[0] The maximum resident set size (KB) = 744736 Test 112 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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.474436 -[0] The maximum resident set size (KB) = 625000 +[0] The total amount of wall time = 172.179091 +[0] The maximum resident set size (KB) = 628000 Test 113 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 173.816224 -[0] The maximum resident set size (KB) = 627036 +[0] The total amount of wall time = 171.428404 +[0] The maximum resident set size (KB) = 625588 Test 114 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 173.561140 -[0] The maximum resident set size (KB) = 626404 +[0] The total amount of wall time = 170.468271 +[0] The maximum resident set size (KB) = 624460 Test 115 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 180.676753 -[0] The maximum resident set size (KB) = 722624 +[0] The total amount of wall time = 176.083018 +[0] The maximum resident set size (KB) = 725772 Test 116 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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.632965 -[0] The maximum resident set size (KB) = 628896 +[0] The total amount of wall time = 168.809330 +[0] The maximum resident set size (KB) = 625900 Test 117 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3004,14 +3005,14 @@ 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 = 365.097865 -[0] The maximum resident set size (KB) = 555284 +[0] The total amount of wall time = 346.946419 +[0] The maximum resident set size (KB) = 553708 Test 118 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/Denise.Worthen/FV3_RT/rt_27291/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 .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3020,64 +3021,64 @@ 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 = 365.118517 -[0] The maximum resident set size (KB) = 519184 +[0] The total amount of wall time = 345.892088 +[0] The maximum resident set size (KB) = 519908 Test 119 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/Denise.Worthen/FV3_RT/rt_27291/datm_cdeps_multiple_files_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 .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -[0] The total amount of wall time = 177.661726 -[0] The maximum resident set size (KB) = 724220 +[0] The total amount of wall time = 175.348529 +[0] The maximum resident set size (KB) = 724568 Test 120 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 254.441217 -[0] The maximum resident set size (KB) = 1898260 +[0] The total amount of wall time = 250.747385 +[0] The maximum resident set size (KB) = 1837500 Test 121 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/Denise.Worthen/FV3_RT/rt_27291/datm_cdeps_gfs +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/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 = 258.266203 -[0] The maximum resident set size (KB) = 1838024 +[0] The total amount of wall time = 253.953650 +[0] The maximum resident set size (KB) = 1837172 Test 122 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/Denise.Worthen/FV3_RT/rt_27291/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 .... 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 = 507.574733 -[0] The maximum resident set size (KB) = 732440 +[0] The total amount of wall time = 500.306755 +[0] The maximum resident set size (KB) = 730376 Test 123 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/Denise.Worthen/FV3_RT/rt_27291/control_atmwav +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/control_atmwav Checking test 124 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -3121,14 +3122,14 @@ 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 = 95.422954 -[0] The maximum resident set size (KB) = 474232 +[0] The total amount of wall time = 96.722457 +[0] The maximum resident set size (KB) = 473412 Test 124 control_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/atmaero_control_p8 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_27291/atmaero_control_p8 +working dir = /gpfs/dell2/ptmp/Minsuk.Ji/FV3_RT/rt_44346/atmaero_control_p8 Checking test 125 atmaero_control_p8 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3172,52 +3173,55 @@ 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 = 369.209033 -[0] The maximum resident set size (KB) = 1370624 +[0] The total amount of wall time = 358.572683 +[0] The maximum resident set size (KB) = 1371980 Test 125 atmaero_control_p8 PASS FAILED TESTS: -Test rap_noah_debug 088 failed in run_test failed -Test hafs_regional_specified_moving_1nest_atm 103 failed in run_test failed +Test control_debug 064 failed in run_test failed +Test hafs_regional_atm 094 failed in run_test failed REGRESSION TEST FAILED -Thu Jun 2 19:10:42 UTC 2022 -Elapsed time: 01h:41m:43s. Have a nice day! -Thu Jun 2 19:58:55 UTC 2022 +Sat Jun 4 03:47:02 UTC 2022 +Elapsed time: 01h:33m:20s. Have a nice day! + + + + +Sat Jun 4 10:53:07 UTC 2022 Start Regression test -Compile 001 elapsed time 377 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 002 elapsed time 1772 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 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 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220601/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_16480/rap_noah_debug -Checking test 001 rap_noah_debug results .... +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 = 303.412135 -[0] The maximum resident set size (KB) = 1000996 +[0] The total amount of wall time = 166.886082 +[0] The maximum resident set size (KB) = 634096 -Test 001 rap_noah_debug PASS +Test 001 control_debug 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/Denise.Worthen/FV3_RT/rt_16480/hafs_regional_specified_moving_1nest_atm -Checking test 002 hafs_regional_specified_moving_1nest_atm results .... +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 atm.nest02.f006.nc .........OK - Comparing sfc.nest02.f006.nc .........OK + Comparing HURPRS.GrbF06 .........OK -[0] The total amount of wall time = 249.889314 -[0] The maximum resident set size (KB) = 326088 +[0] The total amount of wall time = 279.037556 +[0] The maximum resident set size (KB) = 716624 -Test 002 hafs_regional_specified_moving_1nest_atm PASS +Test 002 hafs_regional_atm PASS REGRESSION TEST WAS SUCCESSFUL -Thu Jun 2 20:35:47 UTC 2022 -Elapsed time: 00h:36m:55s. Have a nice day! +Sat Jun 4 11:31:01 UTC 2022 +Elapsed time: 00h:37m:55s. Have a nice day! diff --git a/tests/default_vars.sh b/tests/default_vars.sh index c4f6c78358..f562506f36 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -168,18 +168,16 @@ elif [[ $MACHINE_ID = jet.* ]]; then elif [[ $MACHINE_ID = s4.* ]]; then - echo "Unknown MACHINE_ID ${MACHINE_ID}. Please update tasks configurations in default_vars.sh" - exit 1 + TPN=32 - TASKS_dflt=150 ; TPN_dflt=32 ; INPES_dflt=3 ; JNPES_dflt=8 - TASKS_thrd=78 ; TPN_thrd=16 ; INPES_thrd=3 ; JNPES_thrd=4 - TASKS_c384=336 ; TPN_c384=16 ; INPES_c384=6 ; JNPES_c384=8 - TASKS_c768=928 ; TPN_c768=8 ; INPES_c768=8 ; JNPES_c768=16 - TASKS_stretch=48 ; TPN_stretch=12 ; INPES_stretch=2 ; JNPES_stretch=4 - TASKS_strnest=96 ; TPN_strnest=12 ; INPES_strnest=2 ; JNPES_strnest=4 + TASKS_dflt=150 ; INPES_dflt=3 ; JNPES_dflt=8 + TASKS_thrd=78 ; INPES_thrd=3 ; JNPES_thrd=4 + TASKS_c384=336 ; INPES_c384=6 ; JNPES_c384=8 ; THRD_c384=2 + TASKS_c768=928 ; INPES_c768=8 ; JNPES_c768=16 ; THRD_c768=1 - TASKS_cpl_atmw_gdas=560; TPN_cpl_atmw_gdas=16; INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8 - THRD_cpl_atmw_gdas=2; WPG_cpl_atmw_gdas=24; APB_cpl_atmw_gdas="0 311"; WPB_cpl_atmw_gdas="312 559" + TASKS_cpl_atmw_gdas=560; THRD_cpl_atmw_gdas=2 + INPES_cpl_atmw_gdas=6; JNPES_cpl_atmw_gdas=8; WPG_cpl_atmw_gdas=24 + WAV_tasks_atmw_gdas=248 elif [[ $MACHINE_ID = gaea.* ]]; then