diff --git a/FV3 b/FV3 index a9e7909512..4e432295a0 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a9e79095120c90ea753d070d5d83dd01ac9464d4 +Subproject commit 4e432295a0b726bf6e997ab72a4281f457d90c61 diff --git a/WW3 b/WW3 index 46b3896eca..1066ab60d8 160000 --- a/WW3 +++ b/WW3 @@ -1 +1 @@ -Subproject commit 46b3896ecac921f24335c8f1ef81daaaf4287b1b +Subproject commit 1066ab60d87d177bf66a541eaf32de863eefdf62 diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/EARTH_GRID_COMP.F90 index b6382a46d6..07169e6b65 100644 --- a/driver/EARTH_GRID_COMP.F90 +++ b/driver/EARTH_GRID_COMP.F90 @@ -54,18 +54,21 @@ MODULE module_EARTH_GRID_COMP use FRONT_HYCOM, only: HYCOM_SS => SetServices #endif #ifdef FRONT_MOM6 - use FRONT_MOM6, only: MOM6_SS => SetServices + use FRONT_MOM6, only: MOM6_SS => SetServices, & + MOM6_SV => SetVM #endif #ifdef FRONT_CDEPS_DOCN use FRONT_CDEPS_DOCN, only: DOCN_SS => SetServices #endif ! - Handle build time ICE options: #ifdef FRONT_CICE6 - use FRONT_CICE6, only: CICE6_SS => SetServices + use FRONT_CICE6, only: CICE6_SS => SetServices, & + CICE6_SV => SetVM #endif ! - Handle build time WAV options: #ifdef FRONT_WW3 - use FRONT_WW3, only: WW3_SS => SetServices + use FRONT_WW3, only: WW3_SS => SetServices, & + WW3_SV => SetVM #endif ! - Handle build time LND options: #ifdef FRONT_NOAH @@ -84,7 +87,8 @@ MODULE module_EARTH_GRID_COMP #endif ! - Mediator #ifdef FRONT_CMEPS - use MED, only: MED_SS => SetServices + use MED, only: MED_SS => SetServices, & + MED_SV => SetVM #endif ! !----------------------------------------------------------------------- @@ -226,12 +230,14 @@ subroutine SetModelServices(driver, rc) character(ESMF_MAXSTR) :: name type(ESMF_GridComp) :: comp type(ESMF_Config) :: config + type(ESMF_Info) :: info character(len=32), allocatable :: compLabels(:) integer, allocatable :: petList(:) character(len=10) :: value character(len=20) :: model, prefix character(len=160) :: msg integer :: petListBounds(2) + integer :: ompNumThreads integer :: componentCount type(NUOPC_FreeFormat) :: attrFF, fdFF logical :: found_comp @@ -332,17 +338,42 @@ subroutine SetModelServices(driver, rc) petList(j-petListBounds(1)+1) = j ! PETs are 0 based enddo +! *** read in number of OpenMP threads for this component + call ESMF_ConfigGetAttribute(config, ompNumThreads, & + label=trim(prefix)//"_omp_num_threads:", default=-1, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + +! *** create info object + info = ESMF_InfoCreate(rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + +! *** set up PePerPet NUOPC hints + if (ompNumThreads /= -1) then + call ESMF_InfoSet(info, key="/NUOPC/Hint/PePerPet/MaxCount", & + value=ompNumThreads, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + endif + found_comp = .false. #ifdef FRONT_FV3 if (trim(model) == "fv3") then call NUOPC_DriverAddComp(driver, trim(prefix), FV3_SS, & - petList=petList, comp=comp, rc=rc) + info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if #endif #if defined FRONT_CDEPS_DATM if (trim(model) == "datm" ) then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), DATM_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -351,6 +382,15 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_HYCOM if (trim(model) == "hycom") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), HYCOM_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -360,13 +400,22 @@ subroutine SetModelServices(driver, rc) #ifdef FRONT_MOM6 if (trim(model) == "mom6") then call NUOPC_DriverAddComp(driver, trim(prefix), MOM6_SS, & - petList=petList, comp=comp, rc=rc) + MOM6_SV, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if #endif #ifdef FRONT_CDEPS_DOCN if (trim(model) == "docn") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), DOCN_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -376,7 +425,7 @@ subroutine SetModelServices(driver, rc) #ifdef FRONT_CICE6 if (trim(model) == "cice6") then call NUOPC_DriverAddComp(driver, trim(prefix), CICE6_SS, & - petList=petList, comp=comp, rc=rc) + CICE6_SV, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if @@ -384,13 +433,22 @@ subroutine SetModelServices(driver, rc) #ifdef FRONT_WW3 if (trim(model) == "ww3") then call NUOPC_DriverAddComp(driver, trim(prefix), WW3_SS, & - petList=petList, comp=comp, rc=rc) + WW3_SV, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if #endif #ifdef FRONT_NOAH if (trim(model) == "noah") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), NOAH_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -399,6 +457,15 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_LIS if (trim(model) == "lis") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), LIS_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -407,6 +474,15 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_IPE if (trim(model) == "ipe") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), IPE_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -415,6 +491,15 @@ subroutine SetModelServices(driver, rc) #endif #ifdef FRONT_GOCART if (trim(model) == "gocart") then + !TODO: Remove bail code and pass info and SetVM to DriverAddComp + !TODO: once component supports threading. + if (ompNumThreads > 1) then + write (msg, *) "ESMF-aware threading NOT implemented for model: "//& + trim(model) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif call NUOPC_DriverAddComp(driver, trim(prefix), GOCART_SS, & petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return @@ -424,7 +509,7 @@ subroutine SetModelServices(driver, rc) #ifdef FRONT_CMEPS if (trim(model) == "cmeps") then call NUOPC_DriverAddComp(driver, trim(prefix), MED_SS, & - petList=petList, comp=comp, rc=rc) + MED_SV, info=info, petList=petList, comp=comp, rc=rc) if (ChkErr(rc,__LINE__,u_FILE_u)) return found_comp = .true. end if @@ -441,6 +526,8 @@ subroutine SetModelServices(driver, rc) ! clean-up deallocate(petList) + call ESMF_InfoDestroy(info, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return enddo ! clean-up diff --git a/driver/UFS.F90 b/driver/UFS.F90 index 040420e83e..305c925545 100644 --- a/driver/UFS.F90 +++ b/driver/UFS.F90 @@ -76,8 +76,6 @@ PROGRAM UFS TYPE(ESMF_Clock) :: CLOCK_MAIN !<-- The ESMF time management clock ! TYPE(ESMF_Config) :: CF_MAIN !<-- The Configure object -! - LOGICAL :: PRINT_ESMF !<-- Flag for ESMF PET files ! CHARACTER(ESMF_MAXSTR) :: MESSAGE_CHECK ! @@ -89,28 +87,20 @@ PROGRAM UFS !----------------------------------------------------------------------- ! !----------------------------------------------------------------------- -!*** Check if we want ESMF PET files or not -!----------------------------------------------------------------------- -! - CALL CHECK_ESMF_PET(PRINT_ESMF) -! -!----------------------------------------------------------------------- !*** Initialize the ESMF framework. !----------------------------------------------------------------------- ! - IF(PRINT_ESMF) THEN - CALL ESMF_Initialize(VM =VM & !<-- The ESMF Virtual Machine - ,defaultCalKind =ESMF_CALKIND_GREGORIAN & !<-- Set up the default calendar. - ,logkindflag =ESMF_LOGKIND_MULTI & !<-- Define multiple log error output files; - ,rc =RC) - ESMF_ERR_ABORT(RC) - ELSE - CALL ESMF_Initialize(VM =VM & !<-- The ESMF Virtual Machine - ,defaultCalKind =ESMF_CALKIND_GREGORIAN & !<-- Set up the default calendar. - ,logkindflag =ESMF_LOGKIND_NONE & !<-- Define no log error output files; - ,rc =RC) - ESMF_ERR_ABORT(RC) - ENDIF + CALL ESMF_Initialize(configFileName="nems.configure" & !<-- top level configuration + ,defaultCalKind =ESMF_CALKIND_GREGORIAN & !<-- Set up the default calendar. + ,VM =VM & !<-- The ESMF Virtual Machine + ,rc =RC) + ESMF_ERR_ABORT(RC) + +#if 0 +!*** Useful when debugging ESMF-managed threading and resource control + call ESMF_VMLog(vm, rc=rc) + ESMF_ERR_ABORT(RC) +#endif ! !----------------------------------------------------------------------- !*** Extract the MPI task ID. @@ -142,12 +132,10 @@ PROGRAM UFS ! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! - IF(PRINT_ESMF) THEN - CALL ESMF_LogSet(flush =.false. & - ,trace =.false. & - ,rc =RC) - ESMF_ERR_ABORT(RC) - ENDIF + CALL ESMF_LogSet(flush =.false. & + ,trace =.false. & + ,rc =RC) + ESMF_ERR_ABORT(RC) ! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ! @@ -479,39 +467,6 @@ PROGRAM UFS ! !----------------------------------------------------------------------- ! -contains - subroutine check_esmf_pet(print_esmf) - - implicit none - integer :: i,n - character *256 :: c1,c2 - logical :: opened,print_esmf - - do n=101,201 - inquire(n,opened=opened) - if(.not.opened)then - open(n,file='model_configure',status='old') !<-- Open configure file - exit - endif - enddo - - print_esmf=.false. - - do i=1,10000 - read(n,*,end=22)c1,c2 - if(c1(1:10) == 'print_esmf') then !<-- Search for print_esmf flag - if( c2 == 'true' .or. & !<-- Check if print_esmf is true or false - c2 == '.true.' .or. & - c2 == 'TRUE' .or. & - c2 == '.TRUE.' ) print_esmf=.true. - exit - endif - enddo - 22 close(n) - return - - end subroutine check_esmf_pet - END PROGRAM UFS ! !----------------------------------------------------------------------- diff --git a/modulefiles/ufs_hera.intel b/modulefiles/ufs_hera.intel index efc0f81001..f20887c316 100644 --- a/modulefiles/ufs_hera.intel +++ b/modulefiles/ufs_hera.intel @@ -20,6 +20,7 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 +#module swap impi/2021.3.0 module load ufs_common diff --git a/modulefiles/ufs_hera.intel_debug b/modulefiles/ufs_hera.intel_debug index 8e3c1f2676..8813814012 100644 --- a/modulefiles/ufs_hera.intel_debug +++ b/modulefiles/ufs_hera.intel_debug @@ -20,6 +20,7 @@ module load hpc/1.1.0 module load hpc-intel/18.0.5.274 module load hpc-impi/2018.0.4 +#module swap impi/2021.3.0 module load ufs_common_debug diff --git a/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index f5a91bff7b..f7db84ec0c 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,15 +1,15 @@ -Tue Jan 25 09:31:40 MST 2022 +Wed Jan 26 09:46:18 MST 2022 Start Regression test -Compile 001 elapsed time 398 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 378 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 748 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 185 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 483 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 261 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 382 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 746 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 186 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 489 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 265 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control Checking test 001 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -56,14 +56,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 = 278.220621 -0:The maximum resident set size (KB) = 433420 +0:The total amount of wall time = 273.074198 +0:The maximum resident set size (KB) = 433236 Test 001 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -102,14 +102,14 @@ Checking test 002 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 137.875512 -0:The maximum resident set size (KB) = 182988 +0:The total amount of wall time = 136.625133 +0:The maximum resident set size (KB) = 183144 Test 002 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_c48 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -148,14 +148,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 = 818.080598 -0:The maximum resident set size (KB) = 669088 +0:The total amount of wall time = 816.562949 +0:The maximum resident set size (KB) = 669544 Test 003 control_c48 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -166,14 +166,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 175.479201 -0:The maximum resident set size (KB) = 427576 +0:The total amount of wall time = 174.033930 +0:The maximum resident set size (KB) = 427744 Test 004 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -184,14 +184,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 340.189625 -0:The maximum resident set size (KB) = 485532 +0:The total amount of wall time = 337.306277 +0:The maximum resident set size (KB) = 485548 Test 005 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -202,14 +202,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 340.683211 -0:The maximum resident set size (KB) = 530344 +0:The total amount of wall time = 339.120051 +0:The maximum resident set size (KB) = 529792 Test 006 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -220,14 +220,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 366.146898 -0:The maximum resident set size (KB) = 795344 +0:The total amount of wall time = 361.971758 +0:The maximum resident set size (KB) = 795456 Test 007 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -238,14 +238,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 350.706432 -0:The maximum resident set size (KB) = 789316 +0:The total amount of wall time = 346.259917 +0:The maximum resident set size (KB) = 789340 Test 008 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -256,14 +256,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.127194 -0:The maximum resident set size (KB) = 446116 +0:The total amount of wall time = 289.172729 +0:The maximum resident set size (KB) = 446012 Test 009 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -310,14 +310,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 287.922134 -0:The maximum resident set size (KB) = 490948 +0:The total amount of wall time = 284.655955 +0:The maximum resident set size (KB) = 491000 Test 010 control_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -364,14 +364,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 691.781648 -0:The maximum resident set size (KB) = 773640 +0:The total amount of wall time = 685.670103 +0:The maximum resident set size (KB) = 773648 Test 011 rap_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -418,14 +418,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1212.201894 -0:The maximum resident set size (KB) = 839072 +0:The total amount of wall time = 1202.524622 +0:The maximum resident set size (KB) = 839416 Test 012 rap_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -464,14 +464,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 344.296545 -0:The maximum resident set size (KB) = 521996 +0:The total amount of wall time = 345.051694 +0:The maximum resident set size (KB) = 521156 Test 013 rap_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_sfcdiff +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -518,14 +518,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 690.269143 -0:The maximum resident set size (KB) = 773472 +0:The total amount of wall time = 691.943605 +0:The maximum resident set size (KB) = 773552 Test 014 rap_sfcdiff PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_sfcdiff_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -564,14 +564,14 @@ Checking test 015 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 350.246891 -0:The maximum resident set size (KB) = 520660 +0:The total amount of wall time = 344.128839 +0:The maximum resident set size (KB) = 520892 Test 015 rap_sfcdiff_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/hrrr_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -618,14 +618,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 666.995620 -0:The maximum resident set size (KB) = 771484 +0:The total amount of wall time = 668.923602 +0:The maximum resident set size (KB) = 771540 Test 016 hrrr_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -672,14 +672,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 681.458347 -0:The maximum resident set size (KB) = 771092 +0:The total amount of wall time = 683.219613 +0:The maximum resident set size (KB) = 771152 Test 017 rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -688,14 +688,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 320.302877 -0:The maximum resident set size (KB) = 591576 +0:The total amount of wall time = 315.493530 +0:The maximum resident set size (KB) = 591476 Test 018 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -704,250 +704,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 318.783215 -0:The maximum resident set size (KB) = 594184 +0:The total amount of wall time = 317.510934 +0:The maximum resident set size (KB) = 594248 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 80.250692 -0:The maximum resident set size (KB) = 423932 +0:The total amount of wall time = 80.399162 +0:The maximum resident set size (KB) = 423924 Test 020 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 86.130547 -0:The maximum resident set size (KB) = 481680 +0:The total amount of wall time = 86.417964 +0:The maximum resident set size (KB) = 481572 Test 021 control_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/regional_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 131.721804 -0:The maximum resident set size (KB) = 534524 +0:The total amount of wall time = 130.730955 +0:The maximum resident set size (KB) = 534656 Test 022 regional_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 145.814328 -0:The maximum resident set size (KB) = 795784 +0:The total amount of wall time = 145.217440 +0:The maximum resident set size (KB) = 795836 Test 023 rap_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_diag_debug Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 153.504287 -0:The maximum resident set size (KB) = 878988 +0:The total amount of wall time = 153.577001 +0:The maximum resident set size (KB) = 878968 Test 024 rap_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 235.519934 -0:The maximum resident set size (KB) = 794336 +0:The total amount of wall time = 233.567458 +0:The maximum resident set size (KB) = 794376 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rap_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rap_progcld_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rap_progcld_thompson_debug Checking test 026 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 145.388086 -0:The maximum resident set size (KB) = 795768 +0:The total amount of wall time = 145.006300 +0:The maximum resident set size (KB) = 795884 Test 026 rap_progcld_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.309862 -0:The maximum resident set size (KB) = 790700 +0:The total amount of wall time = 143.963217 +0:The maximum resident set size (KB) = 790676 Test 027 rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 94.992840 -0:The maximum resident set size (KB) = 781868 +0:The total amount of wall time = 93.847669 +0:The maximum resident set size (KB) = 781828 Test 028 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 91.293205 -0:The maximum resident set size (KB) = 777236 +0:The total amount of wall time = 89.963190 +0:The maximum resident set size (KB) = 777316 Test 029 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson_extdiag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 101.188898 -0:The maximum resident set size (KB) = 823304 +0:The total amount of wall time = 101.145813 +0:The maximum resident set size (KB) = 823248 Test 030 control_thompson_extdiag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 95.209126 -0:The maximum resident set size (KB) = 781760 +0:The total amount of wall time = 94.271801 +0:The maximum resident set size (KB) = 781892 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 87.717293 -0:The maximum resident set size (KB) = 519268 +0:The total amount of wall time = 86.676781 +0:The maximum resident set size (KB) = 519572 Test 032 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 83.961930 -0:The maximum resident set size (KB) = 433872 +0:The total amount of wall time = 83.538494 +0:The maximum resident set size (KB) = 433924 Test 033 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_stochy_debug Checking test 034 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 91.549481 -0:The maximum resident set size (KB) = 427812 +0:The total amount of wall time = 90.713702 +0:The maximum resident set size (KB) = 427920 Test 034 control_stochy_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_debug_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_debug_p8 Checking test 035 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 92.809744 -0:The maximum resident set size (KB) = 484284 +0:The total amount of wall time = 87.802288 +0:The maximum resident set size (KB) = 484332 Test 035 control_debug_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/control_wam_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/control_wam_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 148.134841 -0:The maximum resident set size (KB) = 170576 +0:The total amount of wall time = 142.088213 +0:The maximum resident set size (KB) = 170436 Test 036 control_wam_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/cpld_control_c96_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/cpld_control_c96_p8 Checking test 037 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 037 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 367.748435 -0:The maximum resident set size (KB) = 517700 +0:The total amount of wall time = 368.060358 +0:The maximum resident set size (KB) = 517792 Test 037 cpld_control_c96_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/GNU/cpld_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_29320/cpld_debug_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_64931/cpld_debug_p8 Checking test 038 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,12 +1066,12 @@ Checking test 038 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 335.140189 -0:The maximum resident set size (KB) = 535428 +0:The total amount of wall time = 333.787003 +0:The maximum resident set size (KB) = 536760 Test 038 cpld_debug_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 10:01:44 MST 2022 -Elapsed time: 00h:30m:04s. Have a nice day! +Wed Jan 26 10:16:33 MST 2022 +Elapsed time: 00h:30m:16s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index 1c454f735d..c96062a00e 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,23 +1,23 @@ -Tue Jan 25 09:16:18 MST 2022 +Wed Jan 26 09:31:11 MST 2022 Start Regression test -Compile 001 elapsed time 996 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 407 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 755 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 709 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 804 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 592 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 387 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 361 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 294 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 718 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 721 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 012 elapsed time 443 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 227 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 599 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 997 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 399 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 748 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 698 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 796 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 593 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 370 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 354 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 280 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 737 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 720 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 012 elapsed time 437 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 224 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 609 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_control_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -82,14 +82,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 254.349126 -0:The maximum resident set size (KB) = 535784 +0:The total amount of wall time = 249.449563 +0:The maximum resident set size (KB) = 534768 Test 001 cpld_control_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_2threads_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -142,14 +142,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 476.778275 -0:The maximum resident set size (KB) = 629844 +0:The total amount of wall time = 474.555297 +0:The maximum resident set size (KB) = 630296 Test 002 cpld_2threads_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_decomp_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 248.613765 -0:The maximum resident set size (KB) = 531332 +0:The total amount of wall time = 246.592163 +0:The maximum resident set size (KB) = 530648 Test 003 cpld_decomp_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_mpi_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 213.657374 -0:The maximum resident set size (KB) = 506400 +0:The total amount of wall time = 213.631031 +0:The maximum resident set size (KB) = 508272 Test 004 cpld_mpi_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_control_p7_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 314.872169 -0:The maximum resident set size (KB) = 634636 +0:The total amount of wall time = 312.280829 +0:The maximum resident set size (KB) = 628684 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_bmark_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -374,14 +374,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 972.030997 -0:The maximum resident set size (KB) = 1207404 +0:The total amount of wall time = 941.158150 +0:The maximum resident set size (KB) = 1208544 Test 006 cpld_bmark_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_bmark_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -426,14 +426,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 976.190301 -0:The maximum resident set size (KB) = 1207992 +0:The total amount of wall time = 963.923878 +0:The maximum resident set size (KB) = 1208164 Test 007 cpld_bmark_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_bmark_mpi_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_bmark_mpi_p8 Checking test 008 cpld_bmark_mpi_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -478,14 +478,14 @@ Checking test 008 cpld_bmark_mpi_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -0:The total amount of wall time = 922.497881 -0:The maximum resident set size (KB) = 1207880 +0:The total amount of wall time = 925.926763 +0:The maximum resident set size (KB) = 1208344 Test 008 cpld_bmark_mpi_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_control_c96_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_control_c96_p8 Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -547,14 +547,14 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 244.897784 -0:The maximum resident set size (KB) = 522372 +0:The total amount of wall time = 242.221949 +0:The maximum resident set size (KB) = 519492 Test 009 cpld_control_c96_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_restart_c96_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_restart_c96_p8 Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -604,14 +604,14 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -0:The total amount of wall time = 129.761486 -0:The maximum resident set size (KB) = 314012 +0:The total amount of wall time = 128.886314 +0:The maximum resident set size (KB) = 334752 Test 010 cpld_restart_c96_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_control_c192_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -661,14 +661,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 1029.763526 -0:The maximum resident set size (KB) = 694260 +0:The total amount of wall time = 1024.020719 +0:The maximum resident set size (KB) = 690852 Test 011 cpld_control_c192_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_restart_c192_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -0:The total amount of wall time = 653.253081 -0:The maximum resident set size (KB) = 755000 +0:The total amount of wall time = 620.229447 +0:The maximum resident set size (KB) = 756612 Test 012 cpld_restart_c192_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_control_c384_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_control_c384_p8 Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -768,14 +768,14 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 1090.631588 -0:The maximum resident set size (KB) = 1233404 +0:The total amount of wall time = 1052.628237 +0:The maximum resident set size (KB) = 1233488 Test 013 cpld_control_c384_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_restart_c384_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_restart_c384_p8 Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -818,14 +818,14 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 563.514211 -0:The maximum resident set size (KB) = 1181904 +0:The total amount of wall time = 574.574171 +0:The maximum resident set size (KB) = 1182876 Test 014 cpld_restart_c384_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/cpld_debug_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -0:The total amount of wall time = 655.955557 -0:The maximum resident set size (KB) = 590052 +0:The total amount of wall time = 649.943445 +0:The maximum resident set size (KB) = 589384 Test 015 cpld_debug_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control Checking test 016 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -929,14 +929,14 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 147.964780 -0:The maximum resident set size (KB) = 446248 +0:The total amount of wall time = 146.073052 +0:The maximum resident set size (KB) = 446276 Test 016 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_decomp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -979,14 +979,14 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 151.064910 +0:The total amount of wall time = 147.418845 0:The maximum resident set size (KB) = 444136 Test 017 control_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1029,14 +1029,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 323.678441 -0:The maximum resident set size (KB) = 491628 +0:The total amount of wall time = 316.167290 +0:The maximum resident set size (KB) = 491828 Test 018 control_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1075,14 +1075,14 @@ Checking test 019 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.729957 -0:The maximum resident set size (KB) = 188416 +0:The total amount of wall time = 75.957098 +0:The maximum resident set size (KB) = 188480 Test 019 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_fhzero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1125,14 +1125,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 138.917171 -0:The maximum resident set size (KB) = 446388 +0:The total amount of wall time = 135.511717 +0:The maximum resident set size (KB) = 446180 Test 020 control_fhzero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1159,14 +1159,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 142.397592 -0:The maximum resident set size (KB) = 445824 +0:The total amount of wall time = 141.604557 +0:The maximum resident set size (KB) = 445676 Test 021 control_CubedSphereGrid PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_latlon -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_latlon +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1177,14 +1177,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 146.546656 -0:The maximum resident set size (KB) = 445704 +0:The total amount of wall time = 140.959085 +0:The maximum resident set size (KB) = 445692 Test 022 control_latlon PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1195,14 +1195,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 147.839171 -0:The maximum resident set size (KB) = 446248 +0:The total amount of wall time = 144.773531 +0:The maximum resident set size (KB) = 446176 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_c48 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1241,14 +1241,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 421.665096 -0:The maximum resident set size (KB) = 630208 +0:The total amount of wall time = 423.116243 +0:The maximum resident set size (KB) = 629764 Test 024 control_c48 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1259,14 +1259,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 588.998342 -0:The maximum resident set size (KB) = 539656 +0:The total amount of wall time = 569.897007 +0:The maximum resident set size (KB) = 539776 Test 025 control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1277,14 +1277,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1082.678449 -0:The maximum resident set size (KB) = 795584 +0:The total amount of wall time = 1041.092258 +0:The maximum resident set size (KB) = 795424 Test 026 control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1327,14 +1327,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 945.699957 -0:The maximum resident set size (KB) = 947260 +0:The total amount of wall time = 912.457742 +0:The maximum resident set size (KB) = 947216 Test 027 control_c384gdas PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1345,28 +1345,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 97.940752 -0:The maximum resident set size (KB) = 447544 +0:The total amount of wall time = 93.406115 +0:The maximum resident set size (KB) = 447348 Test 028 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_stochy_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 51.035355 -0:The maximum resident set size (KB) = 221332 +0:The total amount of wall time = 50.504807 +0:The maximum resident set size (KB) = 221232 Test 029 control_stochy_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1377,14 +1377,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 87.537842 -0:The maximum resident set size (KB) = 450996 +0:The total amount of wall time = 85.134244 +0:The maximum resident set size (KB) = 450920 Test 030 control_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1431,14 +1431,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 162.611176 -0:The maximum resident set size (KB) = 485988 +0:The total amount of wall time = 156.636513 +0:The maximum resident set size (KB) = 485820 Test 031 control_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_restart_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1477,14 +1477,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 = 88.680357 -0:The maximum resident set size (KB) = 292096 +0:The total amount of wall time = 86.833569 +0:The maximum resident set size (KB) = 292112 Test 032 control_restart_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_decomp_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1527,14 +1527,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 = 167.210060 -0:The maximum resident set size (KB) = 478872 +0:The total amount of wall time = 167.642410 +0:The maximum resident set size (KB) = 478836 Test 033 control_decomp_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_2threads_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1577,14 +1577,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 = 362.824012 -0:The maximum resident set size (KB) = 566112 +0:The total amount of wall time = 357.429297 +0:The maximum resident set size (KB) = 566312 Test 034 control_2threads_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_p7_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_p7_rrtmgp Checking test 035 control_p7_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1631,14 +1631,14 @@ Checking test 035 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 231.313828 -0:The maximum resident set size (KB) = 586628 +0:The total amount of wall time = 231.150242 +0:The maximum resident set size (KB) = 586496 Test 035 control_p7_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1649,28 +1649,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 353.490285 -0:The maximum resident set size (KB) = 568096 +0:The total amount of wall time = 349.012735 +0:The maximum resident set size (KB) = 568220 Test 036 regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 193.078094 -0:The maximum resident set size (KB) = 558952 +0:The total amount of wall time = 191.010276 +0:The maximum resident set size (KB) = 558800 Test 037 regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_noquilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_noquilt Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 038 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK -0:The total amount of wall time = 372.157400 -0:The maximum resident set size (KB) = 576504 +0:The total amount of wall time = 370.775548 +0:The maximum resident set size (KB) = 575744 Test 038 regional_noquilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1696,14 +1696,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 933.073220 -0:The maximum resident set size (KB) = 553408 +0:The total amount of wall time = 932.466115 +0:The maximum resident set size (KB) = 553004 Test 039 regional_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_hafs Checking test 040 regional_hafs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1712,28 +1712,28 @@ Checking test 040 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 352.710301 -0:The maximum resident set size (KB) = 557772 +0:The total amount of wall time = 349.285375 +0:The maximum resident set size (KB) = 558064 Test 040 regional_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 345.901084 -0:The maximum resident set size (KB) = 558004 +0:The total amount of wall time = 346.902681 +0:The maximum resident set size (KB) = 558072 Test 041 regional_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1744,14 +1744,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 475.475775 -0:The maximum resident set size (KB) = 681624 +0:The total amount of wall time = 503.193159 +0:The maximum resident set size (KB) = 678408 Test 042 regional_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1798,14 +1798,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 = 411.311559 -0:The maximum resident set size (KB) = 808784 +0:The total amount of wall time = 413.038485 +0:The maximum resident set size (KB) = 808840 Test 043 rap_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_2threads Checking test 044 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1852,14 +1852,14 @@ Checking test 044 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 879.130585 -0:The maximum resident set size (KB) = 870628 +0:The total amount of wall time = 881.816465 +0:The maximum resident set size (KB) = 870572 Test 044 rap_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_restart Checking test 045 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1898,14 +1898,14 @@ Checking test 045 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 209.927375 -0:The maximum resident set size (KB) = 562412 +0:The total amount of wall time = 208.382810 +0:The maximum resident set size (KB) = 562324 Test 045 rap_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_sfcdiff +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_sfcdiff Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1952,14 +1952,14 @@ Checking test 046 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 416.251440 -0:The maximum resident set size (KB) = 809028 +0:The total amount of wall time = 411.160545 +0:The maximum resident set size (KB) = 808632 Test 046 rap_sfcdiff PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_sfcdiff_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_sfcdiff_restart Checking test 047 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1998,14 +1998,14 @@ Checking test 047 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 = 210.105889 -0:The maximum resident set size (KB) = 562472 +0:The total amount of wall time = 207.567332 +0:The maximum resident set size (KB) = 562736 Test 047 rap_sfcdiff_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hrrr_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hrrr_control Checking test 048 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2052,14 +2052,14 @@ Checking test 048 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 398.937396 -0:The maximum resident set size (KB) = 809160 +0:The total amount of wall time = 396.885934 +0:The maximum resident set size (KB) = 809344 Test 048 hrrr_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rrfs_v1beta Checking test 049 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2106,14 +2106,14 @@ Checking test 049 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 410.926880 -0:The maximum resident set size (KB) = 806808 +0:The total amount of wall time = 404.472401 +0:The maximum resident set size (KB) = 806872 Test 049 rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_hrrr_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rrfs_conus13km_hrrr_warm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rrfs_conus13km_hrrr_warm Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2122,14 +2122,14 @@ Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 185.619074 -0:The maximum resident set size (KB) = 639160 +0:The total amount of wall time = 179.225847 +0:The maximum resident set size (KB) = 638476 Test 050 rrfs_conus13km_hrrr_warm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rrfs_conus13km_radar_tten_warm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rrfs_conus13km_radar_tten_warm Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2138,14 +2138,14 @@ Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -0:The total amount of wall time = 186.005483 -0:The maximum resident set size (KB) = 641900 +0:The total amount of wall time = 182.554995 +0:The maximum resident set size (KB) = 642460 Test 051 rrfs_conus13km_radar_tten_warm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_rrtmgp Checking test 052 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2156,14 +2156,14 @@ Checking test 052 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 261.853183 -0:The maximum resident set size (KB) = 579728 +0:The total amount of wall time = 260.038179 +0:The maximum resident set size (KB) = 579548 Test 052 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_rrtmgp_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_rrtmgp_c192 Checking test 053 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -2174,14 +2174,14 @@ Checking test 053 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 697.320682 -0:The maximum resident set size (KB) = 781228 +0:The total amount of wall time = 693.615963 +0:The maximum resident set size (KB) = 781188 Test 053 control_rrtmgp_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_csawmg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_csawmg Checking test 054 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2192,14 +2192,14 @@ Checking test 054 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 404.606764 -0:The maximum resident set size (KB) = 520116 +0:The total amount of wall time = 400.885483 +0:The maximum resident set size (KB) = 520056 Test 054 control_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_csawmgt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_csawmgt Checking test 055 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2210,14 +2210,14 @@ Checking test 055 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 398.689932 -0:The maximum resident set size (KB) = 520084 +0:The total amount of wall time = 400.367696 +0:The maximum resident set size (KB) = 519752 Test 055 control_csawmgt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_flake Checking test 056 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2228,14 +2228,14 @@ Checking test 056 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 266.257123 -0:The maximum resident set size (KB) = 516660 +0:The total amount of wall time = 266.366360 +0:The maximum resident set size (KB) = 516452 Test 056 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_ras Checking test 057 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2246,14 +2246,14 @@ Checking test 057 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.586078 -0:The maximum resident set size (KB) = 479440 +0:The total amount of wall time = 205.342240 +0:The maximum resident set size (KB) = 479152 Test 057 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson Checking test 058 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2264,14 +2264,14 @@ Checking test 058 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 262.550554 -0:The maximum resident set size (KB) = 830320 +0:The total amount of wall time = 260.057697 +0:The maximum resident set size (KB) = 830284 Test 058 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson_no_aero Checking test 059 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2282,54 +2282,54 @@ Checking test 059 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 249.530011 -0:The maximum resident set size (KB) = 823364 +0:The total amount of wall time = 248.652302 +0:The maximum resident set size (KB) = 823116 Test 059 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_repro -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_wam_repro +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_wam_repro Checking test 060 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 139.929629 -0:The maximum resident set size (KB) = 200692 +0:The total amount of wall time = 137.283674 +0:The maximum resident set size (KB) = 202292 Test 060 control_wam PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_debug Checking test 061 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 156.381335 -0:The maximum resident set size (KB) = 509012 +0:The total amount of wall time = 159.289999 +0:The maximum resident set size (KB) = 508728 Test 061 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_2threads_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_2threads_debug Checking test 062 control_2threads_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 273.824128 -0:The maximum resident set size (KB) = 555764 +0:The total amount of wall time = 272.915287 +0:The maximum resident set size (KB) = 555516 Test 062 control_2threads_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_CubedSphereGrid_debug Checking test 063 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2356,428 +2356,428 @@ Checking test 063 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 168.947905 -0:The maximum resident set size (KB) = 507956 +0:The total amount of wall time = 170.403624 +0:The maximum resident set size (KB) = 507696 Test 063 control_CubedSphereGrid_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_wrtGauss_netcdf_parallel_debug Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 157.697858 -0:The maximum resident set size (KB) = 508856 +0:The total amount of wall time = 163.461501 +0:The maximum resident set size (KB) = 508780 Test 064 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_stochy_debug Checking test 065 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 176.942788 -0:The maximum resident set size (KB) = 511364 +0:The total amount of wall time = 179.395764 +0:The maximum resident set size (KB) = 511044 Test 065 control_stochy_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_lndp_debug Checking test 066 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.354460 -0:The maximum resident set size (KB) = 521216 +0:The total amount of wall time = 162.255372 +0:The maximum resident set size (KB) = 520788 Test 066 control_lndp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_rrtmgp_debug Checking test 067 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 173.128691 -0:The maximum resident set size (KB) = 617516 +0:The total amount of wall time = 174.278572 +0:The maximum resident set size (KB) = 617308 Test 067 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_csawmg_debug Checking test 068 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 254.072394 -0:The maximum resident set size (KB) = 555336 +0:The total amount of wall time = 249.418347 +0:The maximum resident set size (KB) = 554992 Test 068 control_csawmg_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_csawmgt_debug Checking test 069 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 249.065502 -0:The maximum resident set size (KB) = 554836 +0:The total amount of wall time = 246.557126 +0:The maximum resident set size (KB) = 554616 Test 069 control_csawmgt_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 161.047297 -0:The maximum resident set size (KB) = 518008 +0:The total amount of wall time = 166.306117 +0:The maximum resident set size (KB) = 517740 Test 070 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_diag_debug Checking test 071 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 163.495526 -0:The maximum resident set size (KB) = 563136 +0:The total amount of wall time = 166.205990 +0:The maximum resident set size (KB) = 562884 Test 071 control_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug_p8 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_debug_p8 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_debug_p8 Checking test 072 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 171.784857 -0:The maximum resident set size (KB) = 548980 +0:The total amount of wall time = 169.565441 +0:The maximum resident set size (KB) = 548808 Test 072 control_debug_p8 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 184.671574 -0:The maximum resident set size (KB) = 864724 +0:The total amount of wall time = 181.912202 +0:The maximum resident set size (KB) = 864676 Test 073 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 175.476719 -0:The maximum resident set size (KB) = 862448 +0:The total amount of wall time = 175.926398 +0:The maximum resident set size (KB) = 862344 Test 074 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson_extdiag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 191.511147 -0:The maximum resident set size (KB) = 904992 +0:The total amount of wall time = 192.872286 +0:The maximum resident set size (KB) = 904720 Test 075 control_thompson_extdiag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_thompson_progcld_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_thompson_progcld_thompson_debug Checking test 076 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 188.684328 -0:The maximum resident set size (KB) = 864772 +0:The total amount of wall time = 184.202428 +0:The maximum resident set size (KB) = 864932 Test 076 control_thompson_progcld_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/regional_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/regional_debug Checking test 077 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 260.284206 -0:The maximum resident set size (KB) = 590960 +0:The total amount of wall time = 261.450181 +0:The maximum resident set size (KB) = 590776 Test 077 regional_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_control_debug Checking test 078 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 285.684823 -0:The maximum resident set size (KB) = 872136 +0:The total amount of wall time = 284.803158 +0:The maximum resident set size (KB) = 872324 Test 078 rap_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_unified_drag_suite_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 284.253009 -0:The maximum resident set size (KB) = 872276 +0:The total amount of wall time = 284.325500 +0:The maximum resident set size (KB) = 872280 Test 079 rap_unified_drag_suite_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 300.120101 -0:The maximum resident set size (KB) = 966384 +0:The total amount of wall time = 296.622421 +0:The maximum resident set size (KB) = 966228 Test 080 rap_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 295.271882 -0:The maximum resident set size (KB) = 876732 +0:The total amount of wall time = 289.361735 +0:The maximum resident set size (KB) = 876804 Test 081 rap_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_unified_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 293.864265 -0:The maximum resident set size (KB) = 872028 +0:The total amount of wall time = 288.486083 +0:The maximum resident set size (KB) = 872208 Test 082 rap_unified_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_noah_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_noah_debug Checking test 083 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 284.485993 -0:The maximum resident set size (KB) = 872192 +0:The total amount of wall time = 280.924323 +0:The maximum resident set size (KB) = 872120 Test 083 rap_noah_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_rrtmgp_debug Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 486.593662 -0:The maximum resident set size (KB) = 986108 +0:The total amount of wall time = 481.755491 +0:The maximum resident set size (KB) = 985964 Test 084 rap_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_lndp_debug Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 288.722275 -0:The maximum resident set size (KB) = 873228 +0:The total amount of wall time = 286.069682 +0:The maximum resident set size (KB) = 873188 Test 085 rap_lndp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_sfcdiff_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_sfcdiff_debug Checking test 086 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 285.350028 -0:The maximum resident set size (KB) = 871876 +0:The total amount of wall time = 283.032328 +0:The maximum resident set size (KB) = 871980 Test 086 rap_sfcdiff_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_flake_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_flake_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 288.400560 -0:The maximum resident set size (KB) = 872256 +0:The total amount of wall time = 283.130931 +0:The maximum resident set size (KB) = 871984 Test 087 rap_flake_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 475.840599 -0:The maximum resident set size (KB) = 871224 +0:The total amount of wall time = 469.870153 +0:The maximum resident set size (KB) = 870920 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_progcld_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rap_progcld_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 283.469028 -0:The maximum resident set size (KB) = 871844 +0:The total amount of wall time = 284.733996 +0:The maximum resident set size (KB) = 872168 Test 089 rap_progcld_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/rrfs_v1beta_debug Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 282.882482 -0:The maximum resident set size (KB) = 870128 +0:The total amount of wall time = 279.937903 +0:The maximum resident set size (KB) = 870228 Test 090 rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_wam_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_wam_debug Checking test 091 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -0:The total amount of wall time = 296.280056 -0:The maximum resident set size (KB) = 233028 +0:The total amount of wall time = 296.821185 +0:The maximum resident set size (KB) = 232920 Test 091 control_wam_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_atm Checking test 092 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 511.246113 -0:The maximum resident set size (KB) = 669348 +0:The total amount of wall time = 503.941576 +0:The maximum resident set size (KB) = 668716 Test 092 hafs_regional_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_atm_thompson_gfdlsf +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_atm_thompson_gfdlsf Checking test 093 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 588.331111 -0:The maximum resident set size (KB) = 1031348 +0:The total amount of wall time = 586.115985 +0:The maximum resident set size (KB) = 1025356 Test 093 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_atm_ocn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_atm_ocn Checking test 094 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2786,28 +2786,28 @@ Checking test 094 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 = 416.451413 -0:The maximum resident set size (KB) = 688592 +0:The total amount of wall time = 408.969642 +0:The maximum resident set size (KB) = 688176 Test 094 hafs_regional_atm_ocn PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_atm_wav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_atm_wav Checking test 095 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 925.638422 -0:The maximum resident set size (KB) = 682852 +0:The total amount of wall time = 967.606366 +0:The maximum resident set size (KB) = 687600 Test 095 hafs_regional_atm_wav PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_atm_ocn_wav Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2816,62 +2816,62 @@ Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1032.763701 -0:The maximum resident set size (KB) = 686048 +0:The total amount of wall time = 1047.900735 +0:The maximum resident set size (KB) = 686416 Test 096 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_1nest_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_1nest_atm Checking test 097 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1014.631167 -0:The maximum resident set size (KB) = 261556 +0:The total amount of wall time = 1008.487848 +0:The maximum resident set size (KB) = 261160 Test 097 hafs_regional_1nest_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_telescopic_2nests_atm Checking test 098 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1039.308244 -0:The maximum resident set size (KB) = 261012 +0:The total amount of wall time = 1056.293687 +0:The maximum resident set size (KB) = 258656 Test 098 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_global_1nest_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_global_1nest_atm Checking test 099 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 666.632989 -0:The maximum resident set size (KB) = 161364 +0:The total amount of wall time = 666.625193 +0:The maximum resident set size (KB) = 163628 Test 099 hafs_global_1nest_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_global_multiple_4nests_atm Checking test 100 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 1105.439018 -0:The maximum resident set size (KB) = 199032 +0:The total amount of wall time = 1118.523018 +0:The maximum resident set size (KB) = 197156 Test 100 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_docn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_docn Checking test 101 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2879,14 +2879,14 @@ Checking test 101 hafs_regional_docn results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK -0:The total amount of wall time = 358.871717 -0:The maximum resident set size (KB) = 685224 +0:The total amount of wall time = 344.740023 +0:The maximum resident set size (KB) = 687680 Test 101 hafs_regional_docn PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_docn_oisst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_docn_oisst Checking test 102 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2894,105 +2894,105 @@ Checking test 102 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 = 348.053653 -0:The maximum resident set size (KB) = 684704 +0:The total amount of wall time = 342.520037 +0:The maximum resident set size (KB) = 687580 Test 102 hafs_regional_docn_oisst PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/hafs_regional_datm_cdeps +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/hafs_regional_datm_cdeps Checking test 103 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 = 1288.614446 -0:The maximum resident set size (KB) = 868336 +0:The total amount of wall time = 1296.197925 +0:The maximum resident set size (KB) = 868480 Test 103 hafs_regional_datm_cdeps PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_control_cfsr Checking test 104 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 = 161.048450 -0:The maximum resident set size (KB) = 703868 +0:The total amount of wall time = 163.973318 +0:The maximum resident set size (KB) = 703948 Test 104 datm_cdeps_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_restart_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_restart_cfsr Checking test 105 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.179467 -0:The maximum resident set size (KB) = 692756 +0:The total amount of wall time = 96.947758 +0:The maximum resident set size (KB) = 703652 Test 105 datm_cdeps_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_control_gefs Checking test 106 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 = 154.796880 -0:The maximum resident set size (KB) = 590196 +0:The total amount of wall time = 158.726514 +0:The maximum resident set size (KB) = 590008 Test 106 datm_cdeps_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_stochy_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_stochy_gefs Checking test 107 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 = 150.708503 -0:The maximum resident set size (KB) = 590020 +0:The total amount of wall time = 160.057949 +0:The maximum resident set size (KB) = 590504 Test 107 datm_cdeps_stochy_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_bulk_cfsr Checking test 108 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 = 156.013744 -0:The maximum resident set size (KB) = 692724 +0:The total amount of wall time = 165.009541 +0:The maximum resident set size (KB) = 703828 Test 108 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_bulk_gefs Checking test 109 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 = 149.204711 -0:The maximum resident set size (KB) = 590324 +0:The total amount of wall time = 157.860272 +0:The maximum resident set size (KB) = 590548 Test 109 datm_cdeps_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_mx025_cfsr Checking test 110 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3001,14 +3001,14 @@ Checking test 110 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 = 341.965272 -0:The maximum resident set size (KB) = 521996 +0:The total amount of wall time = 351.637078 +0:The maximum resident set size (KB) = 521460 Test 110 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_mx025_gefs Checking test 111 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3017,51 +3017,51 @@ Checking test 111 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 = 340.121331 -0:The maximum resident set size (KB) = 494228 +0:The total amount of wall time = 350.530387 +0:The maximum resident set size (KB) = 494008 Test 111 datm_cdeps_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_multiple_files_cfsr Checking test 112 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 160.973636 -0:The maximum resident set size (KB) = 692344 +0:The total amount of wall time = 163.958046 +0:The maximum resident set size (KB) = 692364 Test 112 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_3072x1536_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_3072x1536_cfsr Checking test 113 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 = 249.986446 -0:The maximum resident set size (KB) = 1844308 +0:The total amount of wall time = 250.484976 +0:The maximum resident set size (KB) = 1844416 Test 113 datm_cdeps_3072x1536_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/datm_cdeps_debug_cfsr Checking test 114 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 450.208907 -0:The maximum resident set size (KB) = 700908 +0:The total amount of wall time = 452.904919 +0:The maximum resident set size (KB) = 699844 Test 114 datm_cdeps_debug_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20220121/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_15824/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_33031/control_atmwav Checking test 115 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -3105,12 +3105,12 @@ Checking test 115 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 132.668205 -0:The maximum resident set size (KB) = 465324 +0:The total amount of wall time = 131.557223 +0:The maximum resident set size (KB) = 465284 Test 115 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 10:24:13 MST 2022 -Elapsed time: 01h:07m:55s. Have a nice day! +Wed Jan 26 10:38:29 MST 2022 +Elapsed time: 01h:07m:18s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index e3c8fea7a1..5b9e50dac0 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,15 +1,15 @@ -Tue Jan 25 16:32:47 UTC 2022 +Wed Jan 26 15:17:40 UTC 2022 Start Regression test -Compile 001 elapsed time 196 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 192 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 283 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 93 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 218 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 113 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_flake,FV3_GFS_v16_RRTMGP,FV3_GFS_v16_thompson,FV3_GFS_v16_ras,FV3_GFS_v16_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 193 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 282 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 95 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 114 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control Checking test 001 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -56,14 +56,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 = 826.980188 - 0: The maximum resident set size (KB) = 441556 + 0: The total amount of wall time = 795.909231 + 0: The maximum resident set size (KB) = 441144 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -102,14 +102,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 = 384.020707 - 0: The maximum resident set size (KB) = 180848 + 0: The total amount of wall time = 383.541561 + 0: The maximum resident set size (KB) = 181212 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -148,14 +148,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 = 672.997979 -0: The maximum resident set size (KB) = 690064 +0: The total amount of wall time = 681.091735 +0: The maximum resident set size (KB) = 693536 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -166,14 +166,14 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 632.142437 - 0: The maximum resident set size (KB) = 445400 + 0: The total amount of wall time = 619.893705 + 0: The maximum resident set size (KB) = 443816 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -184,14 +184,14 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1457.388625 - 0: The maximum resident set size (KB) = 490436 + 0: The total amount of wall time = 1382.962563 + 0: The maximum resident set size (KB) = 490964 Test 005 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -202,14 +202,14 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 856.596337 - 0: The maximum resident set size (KB) = 541996 + 0: The total amount of wall time = 839.797595 + 0: The maximum resident set size (KB) = 539392 Test 006 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -220,14 +220,14 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1000.695400 - 0: The maximum resident set size (KB) = 802744 + 0: The total amount of wall time = 995.402999 + 0: The maximum resident set size (KB) = 805472 Test 007 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -238,14 +238,14 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 955.740557 - 0: The maximum resident set size (KB) = 798988 + 0: The total amount of wall time = 951.359764 + 0: The maximum resident set size (KB) = 799332 Test 008 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -256,14 +256,14 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 782.464892 - 0: The maximum resident set size (KB) = 453248 + 0: The total amount of wall time = 811.898338 + 0: The maximum resident set size (KB) = 453092 Test 009 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_p8 Checking test 010 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -310,14 +310,14 @@ Checking test 010 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 800.271555 - 0: The maximum resident set size (KB) = 478908 + 0: The total amount of wall time = 799.483943 + 0: The maximum resident set size (KB) = 479564 Test 010 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_control Checking test 011 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -364,14 +364,14 @@ Checking test 011 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1362.710691 - 0: The maximum resident set size (KB) = 784404 + 0: The total amount of wall time = 1353.419993 + 0: The maximum resident set size (KB) = 787628 Test 011 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_2threads Checking test 012 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -418,14 +418,14 @@ Checking test 012 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1423.941032 - 0: The maximum resident set size (KB) = 850592 + 0: The total amount of wall time = 1402.982853 + 0: The maximum resident set size (KB) = 848536 Test 012 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_restart Checking test 013 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -464,14 +464,14 @@ Checking test 013 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 663.768571 - 0: The maximum resident set size (KB) = 535224 + 0: The total amount of wall time = 658.009462 + 0: The maximum resident set size (KB) = 534888 Test 013 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_sfcdiff Checking test 014 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -518,14 +518,14 @@ Checking test 014 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1369.876643 - 0: The maximum resident set size (KB) = 785416 + 0: The total amount of wall time = 1374.715885 + 0: The maximum resident set size (KB) = 784520 Test 014 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_sfcdiff_restart Checking test 015 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -564,14 +564,14 @@ Checking test 015 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 = 677.355219 - 0: The maximum resident set size (KB) = 532040 + 0: The total amount of wall time = 682.214447 + 0: The maximum resident set size (KB) = 531592 Test 015 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/hrrr_control Checking test 016 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -618,14 +618,14 @@ Checking test 016 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1418.156703 - 0: The maximum resident set size (KB) = 784852 + 0: The total amount of wall time = 1333.079634 + 0: The maximum resident set size (KB) = 783796 Test 016 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rrfs_v1beta Checking test 017 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -672,14 +672,14 @@ Checking test 017 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1356.367085 - 0: The maximum resident set size (KB) = 784824 + 0: The total amount of wall time = 1391.426623 + 0: The maximum resident set size (KB) = 785380 Test 017 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rrfs_conus13km_hrrr_warm Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -688,14 +688,14 @@ Checking test 018 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1523.533799 - 0: The maximum resident set size (KB) = 628480 + 0: The total amount of wall time = 1526.586323 + 0: The maximum resident set size (KB) = 628156 Test 018 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rrfs_conus13km_radar_tten_warm Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -704,250 +704,250 @@ Checking test 019 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1500.157034 - 0: The maximum resident set size (KB) = 631644 + 0: The total amount of wall time = 1523.876155 + 0: The maximum resident set size (KB) = 631864 Test 019 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_debug Checking test 020 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 98.290130 - 0: The maximum resident set size (KB) = 440780 + 0: The total amount of wall time = 98.403308 + 0: The maximum resident set size (KB) = 437148 Test 020 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_diag_debug Checking test 021 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 123.309485 - 0: The maximum resident set size (KB) = 494856 + 0: The total amount of wall time = 123.097926 + 0: The maximum resident set size (KB) = 497180 Test 021 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/regional_debug Checking test 022 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 126.768994 - 0: The maximum resident set size (KB) = 544132 + 0: The total amount of wall time = 125.746346 + 0: The maximum resident set size (KB) = 547412 -Test 022 regional_debug PASS Tries: 2 +Test 022 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_control_debug Checking test 023 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 164.553551 - 0: The maximum resident set size (KB) = 803608 + 0: The total amount of wall time = 167.098485 + 0: The maximum resident set size (KB) = 806504 Test 023 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_diag_debug Checking test 024 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 204.429296 - 0: The maximum resident set size (KB) = 885440 + 0: The total amount of wall time = 205.184823 + 0: The maximum resident set size (KB) = 886492 Test 024 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_noah_sfcdiff_cires_ugwp_debug Checking test 025 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 258.429022 - 0: The maximum resident set size (KB) = 804036 + 0: The total amount of wall time = 260.990244 + 0: The maximum resident set size (KB) = 806340 Test 025 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rap_progcld_thompson_debug Checking test 026 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.046843 - 0: The maximum resident set size (KB) = 806168 + 0: The total amount of wall time = 167.887929 + 0: The maximum resident set size (KB) = 806612 Test 026 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/rrfs_v1beta_debug Checking test 027 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 166.847042 - 0: The maximum resident set size (KB) = 805180 + 0: The total amount of wall time = 162.415930 + 0: The maximum resident set size (KB) = 803680 Test 027 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson_debug Checking test 028 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 113.865613 - 0: The maximum resident set size (KB) = 796156 + 0: The total amount of wall time = 112.999182 + 0: The maximum resident set size (KB) = 801668 Test 028 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson_no_aero_debug Checking test 029 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 108.065203 - 0: The maximum resident set size (KB) = 793464 + 0: The total amount of wall time = 109.324287 + 0: The maximum resident set size (KB) = 791168 Test 029 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson_extdiag_debug Checking test 030 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 130.645859 - 0: The maximum resident set size (KB) = 822596 + 0: The total amount of wall time = 128.909366 + 0: The maximum resident set size (KB) = 831036 Test 030 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_thompson_progcld_thompson_debug Checking test 031 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 112.069018 - 0: The maximum resident set size (KB) = 798644 + 0: The total amount of wall time = 112.377935 + 0: The maximum resident set size (KB) = 800148 Test 031 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_rrtmgp_debug Checking test 032 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 103.673548 - 0: The maximum resident set size (KB) = 543768 + 0: The total amount of wall time = 105.391130 + 0: The maximum resident set size (KB) = 541624 Test 032 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_ras_debug Checking test 033 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 100.959011 - 0: The maximum resident set size (KB) = 447620 + 0: The total amount of wall time = 101.606829 + 0: The maximum resident set size (KB) = 450144 Test 033 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_stochy_debug Checking test 034 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 115.575229 - 0: The maximum resident set size (KB) = 441016 + 0: The total amount of wall time = 118.804892 + 0: The maximum resident set size (KB) = 441456 Test 034 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_debug_p8 Checking test 035 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 107.950991 - 0: The maximum resident set size (KB) = 475720 + 0: The total amount of wall time = 107.753504 + 0: The maximum resident set size (KB) = 479956 Test 035 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/control_wam_debug Checking test 036 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 175.811523 - 0: The maximum resident set size (KB) = 183416 + 0: The total amount of wall time = 179.320823 + 0: The maximum resident set size (KB) = 188240 Test 036 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/cpld_control_c96_p8 Checking test 037 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -1009,14 +1009,14 @@ Checking test 037 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 1113.811377 - 0: The maximum resident set size (KB) = 498648 + 0: The total amount of wall time = 1087.166034 + 0: The maximum resident set size (KB) = 501120 Test 037 cpld_control_c96_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/GNU/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_17633/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_25161/cpld_debug_p8 Checking test 038 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1066,12 +1066,12 @@ Checking test 038 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 563.422579 - 0: The maximum resident set size (KB) = 511384 + 0: The total amount of wall time = 560.577877 + 0: The maximum resident set size (KB) = 515136 Test 038 cpld_debug_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 17:19:22 UTC 2022 -Elapsed time: 00h:46m:37s. Have a nice day! +Wed Jan 26 16:04:06 UTC 2022 +Elapsed time: 00h:46m:26s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index b848477005..2f110c4420 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,24 +1,24 @@ -Tue Jan 25 16:17:53 UTC 2022 +Wed Jan 26 15:02:50 UTC 2022 Start Regression test -Compile 001 elapsed time 441 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 001 elapsed time 448 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON Compile 002 elapsed time 174 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 366 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 353 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 356 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 359 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release Compile 005 elapsed time 373 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 347 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 321 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 349 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 166 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 008 elapsed time 164 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 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 010 elapsed time 418 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 427 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 012 elapsed time 185 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 94 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 437 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 393 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 009 elapsed time 148 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 400 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 390 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 012 elapsed time 190 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 101 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 365 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 397 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -83,14 +83,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 212.840482 - 0: The maximum resident set size (KB) = 564132 + 0: The total amount of wall time = 208.387602 + 0: The maximum resident set size (KB) = 563808 Test 001 cpld_control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -143,14 +143,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 241.279847 - 0: The maximum resident set size (KB) = 648544 + 0: The total amount of wall time = 243.117130 + 0: The maximum resident set size (KB) = 643176 Test 002 cpld_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -203,14 +203,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 210.711895 - 0: The maximum resident set size (KB) = 562784 + 0: The total amount of wall time = 209.136531 + 0: The maximum resident set size (KB) = 559864 Test 003 cpld_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -263,14 +263,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 180.435104 - 0: The maximum resident set size (KB) = 537348 + 0: The total amount of wall time = 179.642243 + 0: The maximum resident set size (KB) = 535800 Test 004 cpld_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -323,14 +323,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 246.858316 - 0: The maximum resident set size (KB) = 661988 + 0: The total amount of wall time = 246.619269 + 0: The maximum resident set size (KB) = 663508 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_bmark_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -375,14 +375,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 851.922413 - 0: The maximum resident set size (KB) = 1230452 + 0: The total amount of wall time = 868.865958 + 0: The maximum resident set size (KB) = 1231036 Test 006 cpld_bmark_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_bmark_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -427,14 +427,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 860.894958 - 0: The maximum resident set size (KB) = 1230748 + 0: The total amount of wall time = 857.880403 + 0: The maximum resident set size (KB) = 1226572 Test 007 cpld_bmark_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_bmark_mpi_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_bmark_mpi_p8 Checking test 008 cpld_bmark_mpi_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -479,14 +479,14 @@ Checking test 008 cpld_bmark_mpi_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 838.706359 - 0: The maximum resident set size (KB) = 1230592 + 0: The total amount of wall time = 832.360343 + 0: The maximum resident set size (KB) = 1234124 Test 008 cpld_bmark_mpi_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_control_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_control_c96_p8 Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -548,14 +548,14 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 199.708000 - 0: The maximum resident set size (KB) = 551968 + 0: The total amount of wall time = 204.597061 + 0: The maximum resident set size (KB) = 554104 Test 009 cpld_control_c96_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_restart_c96_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_restart_c96_p8 Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -605,14 +605,14 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 110.580843 - 0: The maximum resident set size (KB) = 322036 + 0: The total amount of wall time = 109.062823 + 0: The maximum resident set size (KB) = 319908 Test 010 cpld_restart_c96_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_control_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -662,14 +662,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 838.990564 - 0: The maximum resident set size (KB) = 726676 + 0: The total amount of wall time = 846.891207 + 0: The maximum resident set size (KB) = 729684 Test 011 cpld_control_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_restart_c192_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -719,14 +719,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 559.850073 - 0: The maximum resident set size (KB) = 827748 + 0: The total amount of wall time = 565.108799 + 0: The maximum resident set size (KB) = 828824 Test 012 cpld_restart_c192_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_control_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_control_c384_p8 Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -769,14 +769,14 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 986.435689 - 0: The maximum resident set size (KB) = 1246920 + 0: The total amount of wall time = 987.777651 + 0: The maximum resident set size (KB) = 1242764 Test 013 cpld_control_c384_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_restart_c384_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_restart_c384_p8 Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -819,14 +819,14 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 543.969045 - 0: The maximum resident set size (KB) = 1199852 + 0: The total amount of wall time = 538.628528 + 0: The maximum resident set size (KB) = 1201200 Test 014 cpld_restart_c384_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/cpld_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -876,14 +876,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 611.553406 - 0: The maximum resident set size (KB) = 613500 + 0: The total amount of wall time = 599.503744 + 0: The maximum resident set size (KB) = 612552 -Test 015 cpld_debug_p8 PASS +Test 015 cpld_debug_p8 PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control Checking test 016 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -930,14 +930,14 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 123.303309 - 0: The maximum resident set size (KB) = 462884 + 0: The total amount of wall time = 121.103475 + 0: The maximum resident set size (KB) = 463964 Test 016 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -980,14 +980,14 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 133.734788 - 0: The maximum resident set size (KB) = 461724 + 0: The total amount of wall time = 129.456862 + 0: The maximum resident set size (KB) = 463648 Test 017 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1030,14 +1030,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 148.261336 - 0: The maximum resident set size (KB) = 509752 + 0: The total amount of wall time = 150.597897 + 0: The maximum resident set size (KB) = 518444 Test 018 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1076,14 +1076,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 65.920426 - 0: The maximum resident set size (KB) = 206608 + 0: The total amount of wall time = 64.133596 + 0: The maximum resident set size (KB) = 206888 Test 019 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_fhzero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1126,14 +1126,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 116.428309 - 0: The maximum resident set size (KB) = 466340 + 0: The total amount of wall time = 120.800405 + 0: The maximum resident set size (KB) = 462664 Test 020 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1160,14 +1160,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 122.081368 - 0: The maximum resident set size (KB) = 465000 + 0: The total amount of wall time = 121.642032 + 0: The maximum resident set size (KB) = 464300 Test 021 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1178,14 +1178,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 125.705821 - 0: The maximum resident set size (KB) = 463200 + 0: The total amount of wall time = 124.972239 + 0: The maximum resident set size (KB) = 462040 Test 022 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1196,14 +1196,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.408040 - 0: The maximum resident set size (KB) = 464304 + 0: The total amount of wall time = 125.720184 + 0: The maximum resident set size (KB) = 462004 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1242,14 +1242,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 309.955988 -0: The maximum resident set size (KB) = 661656 +0: The total amount of wall time = 310.982483 +0: The maximum resident set size (KB) = 659788 Test 024 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1260,14 +1260,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 464.024786 - 0: The maximum resident set size (KB) = 559684 + 0: The total amount of wall time = 459.442121 + 0: The maximum resident set size (KB) = 558716 Test 025 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1278,14 +1278,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 779.812417 - 0: The maximum resident set size (KB) = 822836 + 0: The total amount of wall time = 776.550140 + 0: The maximum resident set size (KB) = 809324 Test 026 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1328,14 +1328,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 673.433254 - 0: The maximum resident set size (KB) = 965732 + 0: The total amount of wall time = 668.085457 + 0: The maximum resident set size (KB) = 964408 Test 027 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1346,28 +1346,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 81.096219 - 0: The maximum resident set size (KB) = 463740 + 0: The total amount of wall time = 81.079635 + 0: The maximum resident set size (KB) = 467264 Test 028 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 44.577850 - 0: The maximum resident set size (KB) = 244204 + 0: The total amount of wall time = 43.138374 + 0: The maximum resident set size (KB) = 247156 Test 029 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1378,14 +1378,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 73.186519 - 0: The maximum resident set size (KB) = 468928 + 0: The total amount of wall time = 74.398933 + 0: The maximum resident set size (KB) = 465872 Test 030 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1432,14 +1432,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 141.774253 - 0: The maximum resident set size (KB) = 495468 + 0: The total amount of wall time = 140.238707 + 0: The maximum resident set size (KB) = 492964 Test 031 control_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_restart_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1478,14 +1478,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 = 75.605748 - 0: The maximum resident set size (KB) = 311876 + 0: The total amount of wall time = 74.746454 + 0: The maximum resident set size (KB) = 311212 Test 032 control_restart_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_decomp_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1528,14 +1528,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 = 142.159063 - 0: The maximum resident set size (KB) = 490264 + 0: The total amount of wall time = 145.887777 + 0: The maximum resident set size (KB) = 486328 Test 033 control_decomp_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_2threads_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1578,14 +1578,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 = 170.005936 - 0: The maximum resident set size (KB) = 560932 + 0: The total amount of wall time = 168.928118 + 0: The maximum resident set size (KB) = 567872 Test 034 control_2threads_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_p7_rrtmgp Checking test 035 control_p7_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1632,14 +1632,14 @@ Checking test 035 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.715224 - 0: The maximum resident set size (KB) = 589868 + 0: The total amount of wall time = 175.712513 + 0: The maximum resident set size (KB) = 591108 Test 035 control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1650,28 +1650,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 300.028194 - 0: The maximum resident set size (KB) = 574412 + 0: The total amount of wall time = 300.289019 + 0: The maximum resident set size (KB) = 580648 Test 036 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 168.078113 - 0: The maximum resident set size (KB) = 577208 + 0: The total amount of wall time = 168.139913 + 0: The maximum resident set size (KB) = 573460 Test 037 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_noquilt Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1679,14 +1679,14 @@ Checking test 038 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 310.609904 - 0: The maximum resident set size (KB) = 587420 + 0: The total amount of wall time = 312.527611 + 0: The maximum resident set size (KB) = 586080 Test 038 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1697,14 +1697,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 222.029332 - 0: The maximum resident set size (KB) = 571128 + 0: The total amount of wall time = 231.100359 + 0: The maximum resident set size (KB) = 572992 Test 039 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_hafs Checking test 040 regional_hafs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1713,28 +1713,28 @@ Checking test 040 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.432611 - 0: The maximum resident set size (KB) = 575020 + 0: The total amount of wall time = 299.967208 + 0: The maximum resident set size (KB) = 572648 Test 040 regional_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.293497 - 0: The maximum resident set size (KB) = 578148 + 0: The total amount of wall time = 297.782458 + 0: The maximum resident set size (KB) = 571896 Test 041 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1745,14 +1745,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 378.025334 - 0: The maximum resident set size (KB) = 695624 + 0: The total amount of wall time = 376.654670 + 0: The maximum resident set size (KB) = 695100 Test 042 regional_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1799,14 +1799,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 = 349.382647 - 0: The maximum resident set size (KB) = 833180 + 0: The total amount of wall time = 357.901986 + 0: The maximum resident set size (KB) = 829904 Test 043 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_2threads Checking test 044 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1853,14 +1853,14 @@ Checking test 044 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 433.650444 - 0: The maximum resident set size (KB) = 895984 + 0: The total amount of wall time = 434.485147 + 0: The maximum resident set size (KB) = 896284 Test 044 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_restart Checking test 045 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1899,14 +1899,14 @@ Checking test 045 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 179.049238 - 0: The maximum resident set size (KB) = 580948 + 0: The total amount of wall time = 178.617315 + 0: The maximum resident set size (KB) = 581452 Test 045 rap_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_sfcdiff Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1953,14 +1953,14 @@ Checking test 046 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 360.723484 - 0: The maximum resident set size (KB) = 833636 + 0: The total amount of wall time = 348.768528 + 0: The maximum resident set size (KB) = 833512 Test 046 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_sfcdiff_restart Checking test 047 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1999,14 +1999,14 @@ Checking test 047 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 = 183.520222 - 0: The maximum resident set size (KB) = 583596 + 0: The total amount of wall time = 182.565418 + 0: The maximum resident set size (KB) = 581892 Test 047 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hrrr_control Checking test 048 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2053,14 +2053,14 @@ Checking test 048 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 348.276572 - 0: The maximum resident set size (KB) = 826964 + 0: The total amount of wall time = 341.027025 + 0: The maximum resident set size (KB) = 826896 Test 048 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rrfs_v1beta Checking test 049 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2107,14 +2107,14 @@ Checking test 049 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 345.250411 - 0: The maximum resident set size (KB) = 830116 + 0: The total amount of wall time = 346.779890 + 0: The maximum resident set size (KB) = 829100 Test 049 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_hrrr_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rrfs_conus13km_hrrr_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rrfs_conus13km_hrrr_warm Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2123,14 +2123,14 @@ Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.197027 - 0: The maximum resident set size (KB) = 658200 + 0: The total amount of wall time = 175.359285 + 0: The maximum resident set size (KB) = 659132 Test 050 rrfs_conus13km_hrrr_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rrfs_conus13km_radar_tten_warm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rrfs_conus13km_radar_tten_warm Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2139,14 +2139,14 @@ Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 170.250221 - 0: The maximum resident set size (KB) = 662860 + 0: The total amount of wall time = 171.621150 + 0: The maximum resident set size (KB) = 663508 Test 051 rrfs_conus13km_radar_tten_warm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_rrtmgp Checking test 052 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2157,14 +2157,14 @@ Checking test 052 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 189.805587 - 0: The maximum resident set size (KB) = 591264 + 0: The total amount of wall time = 191.701724 + 0: The maximum resident set size (KB) = 587860 Test 052 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_rrtmgp_c192 Checking test 053 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -2175,14 +2175,14 @@ Checking test 053 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 508.076103 - 0: The maximum resident set size (KB) = 799612 + 0: The total amount of wall time = 506.489826 + 0: The maximum resident set size (KB) = 798948 Test 053 control_rrtmgp_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_csawmg Checking test 054 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2193,14 +2193,14 @@ Checking test 054 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 318.840220 - 0: The maximum resident set size (KB) = 532648 + 0: The total amount of wall time = 313.494274 + 0: The maximum resident set size (KB) = 530124 Test 054 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_csawmgt Checking test 055 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2211,14 +2211,14 @@ Checking test 055 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 309.373178 - 0: The maximum resident set size (KB) = 530528 + 0: The total amount of wall time = 307.944733 + 0: The maximum resident set size (KB) = 532680 Test 055 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_flake Checking test 056 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2229,14 +2229,14 @@ Checking test 056 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 233.160976 - 0: The maximum resident set size (KB) = 533836 + 0: The total amount of wall time = 234.889458 + 0: The maximum resident set size (KB) = 531704 Test 056 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_ras Checking test 057 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2247,14 +2247,14 @@ Checking test 057 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 167.700523 - 0: The maximum resident set size (KB) = 493776 + 0: The total amount of wall time = 171.038889 + 0: The maximum resident set size (KB) = 497076 Test 057 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson Checking test 058 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2265,14 +2265,14 @@ Checking test 058 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.948390 - 0: The maximum resident set size (KB) = 850728 + 0: The total amount of wall time = 213.519295 + 0: The maximum resident set size (KB) = 852316 Test 058 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson_no_aero Checking test 059 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2283,54 +2283,54 @@ Checking test 059 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.580607 - 0: The maximum resident set size (KB) = 840216 + 0: The total amount of wall time = 202.128979 + 0: The maximum resident set size (KB) = 841056 Test 059 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_wam_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_wam_repro Checking test 060 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 112.667002 - 0: The maximum resident set size (KB) = 225032 + 0: The total amount of wall time = 119.290711 + 0: The maximum resident set size (KB) = 223952 Test 060 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_debug Checking test 061 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 141.047436 - 0: The maximum resident set size (KB) = 531236 + 0: The total amount of wall time = 143.311577 + 0: The maximum resident set size (KB) = 536132 Test 061 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_2threads_debug Checking test 062 control_2threads_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 211.446259 - 0: The maximum resident set size (KB) = 579444 + 0: The total amount of wall time = 211.864928 + 0: The maximum resident set size (KB) = 585428 Test 062 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_CubedSphereGrid_debug Checking test 063 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2357,428 +2357,428 @@ Checking test 063 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 153.198398 - 0: The maximum resident set size (KB) = 532472 + 0: The total amount of wall time = 152.044982 + 0: The maximum resident set size (KB) = 532264 Test 063 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_wrtGauss_netcdf_parallel_debug Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 140.832901 - 0: The maximum resident set size (KB) = 533692 + 0: The total amount of wall time = 145.472701 + 0: The maximum resident set size (KB) = 530516 Test 064 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_stochy_debug Checking test 065 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 160.812118 - 0: The maximum resident set size (KB) = 536864 + 0: The total amount of wall time = 164.976387 + 0: The maximum resident set size (KB) = 532536 Test 065 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_lndp_debug Checking test 066 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 145.371134 - 0: The maximum resident set size (KB) = 534876 + 0: The total amount of wall time = 145.601867 + 0: The maximum resident set size (KB) = 535692 Test 066 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_rrtmgp_debug Checking test 067 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.994887 - 0: The maximum resident set size (KB) = 636652 + 0: The total amount of wall time = 160.439209 + 0: The maximum resident set size (KB) = 638460 Test 067 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_csawmg_debug Checking test 068 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 220.914786 - 0: The maximum resident set size (KB) = 571992 + 0: The total amount of wall time = 225.730348 + 0: The maximum resident set size (KB) = 570284 Test 068 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_csawmgt_debug Checking test 069 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 222.650671 - 0: The maximum resident set size (KB) = 573268 + 0: The total amount of wall time = 221.938544 + 0: The maximum resident set size (KB) = 576540 Test 069 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 147.192099 - 0: The maximum resident set size (KB) = 544152 + 0: The total amount of wall time = 145.861062 + 0: The maximum resident set size (KB) = 546368 -Test 070 control_ras_debug PASS +Test 070 control_ras_debug PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_diag_debug Checking test 071 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.964476 - 0: The maximum resident set size (KB) = 589980 + 0: The total amount of wall time = 150.422550 + 0: The maximum resident set size (KB) = 591352 Test 071 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug_p8 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_debug_p8 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_debug_p8 Checking test 072 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 155.696537 - 0: The maximum resident set size (KB) = 558188 + 0: The total amount of wall time = 151.230683 + 0: The maximum resident set size (KB) = 556436 Test 072 control_debug_p8 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.908614 - 0: The maximum resident set size (KB) = 892208 + 0: The total amount of wall time = 165.458920 + 0: The maximum resident set size (KB) = 890792 Test 073 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.741633 - 0: The maximum resident set size (KB) = 884252 + 0: The total amount of wall time = 158.975109 + 0: The maximum resident set size (KB) = 886332 Test 074 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 178.639664 - 0: The maximum resident set size (KB) = 922096 + 0: The total amount of wall time = 176.411870 + 0: The maximum resident set size (KB) = 922548 Test 075 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_thompson_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_thompson_progcld_thompson_debug Checking test 076 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 168.695269 - 0: The maximum resident set size (KB) = 890876 + 0: The total amount of wall time = 164.978249 + 0: The maximum resident set size (KB) = 895028 Test 076 control_thompson_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/regional_debug Checking test 077 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 239.294276 - 0: The maximum resident set size (KB) = 603268 + 0: The total amount of wall time = 233.728188 + 0: The maximum resident set size (KB) = 600516 Test 077 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_control_debug Checking test 078 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 258.627822 - 0: The maximum resident set size (KB) = 898260 + 0: The total amount of wall time = 261.524131 + 0: The maximum resident set size (KB) = 901516 Test 078 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 257.921089 - 0: The maximum resident set size (KB) = 900948 + 0: The total amount of wall time = 257.913932 + 0: The maximum resident set size (KB) = 901416 Test 079 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 275.067955 - 0: The maximum resident set size (KB) = 983092 + 0: The total amount of wall time = 273.808101 + 0: The maximum resident set size (KB) = 982864 Test 080 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 264.734259 - 0: The maximum resident set size (KB) = 901908 + 0: The total amount of wall time = 262.945040 + 0: The maximum resident set size (KB) = 902832 Test 081 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 263.817035 - 0: The maximum resident set size (KB) = 901136 + 0: The total amount of wall time = 264.563862 + 0: The maximum resident set size (KB) = 903576 Test 082 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_noah_debug Checking test 083 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 254.431486 - 0: The maximum resident set size (KB) = 903340 + 0: The total amount of wall time = 259.940371 + 0: The maximum resident set size (KB) = 903728 Test 083 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_rrtmgp_debug Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 440.394393 - 0: The maximum resident set size (KB) = 1006820 + 0: The total amount of wall time = 439.794469 + 0: The maximum resident set size (KB) = 1009060 Test 084 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_lndp_debug Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 258.925902 - 0: The maximum resident set size (KB) = 900776 + 0: The total amount of wall time = 261.159678 + 0: The maximum resident set size (KB) = 899936 -Test 085 rap_lndp_debug PASS +Test 085 rap_lndp_debug PASS Tries: 2 baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_sfcdiff_debug Checking test 086 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 253.896619 - 0: The maximum resident set size (KB) = 898336 + 0: The total amount of wall time = 256.893904 + 0: The maximum resident set size (KB) = 895700 Test 086 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 258.894034 - 0: The maximum resident set size (KB) = 896996 + 0: The total amount of wall time = 258.247292 + 0: The maximum resident set size (KB) = 896704 Test 087 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 429.936711 - 0: The maximum resident set size (KB) = 898340 + 0: The total amount of wall time = 435.025587 + 0: The maximum resident set size (KB) = 897948 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_progcld_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rap_progcld_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 256.634278 - 0: The maximum resident set size (KB) = 898476 + 0: The total amount of wall time = 259.495432 + 0: The maximum resident set size (KB) = 901436 Test 089 rap_progcld_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/rrfs_v1beta_debug Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 260.063891 - 0: The maximum resident set size (KB) = 895540 + 0: The total amount of wall time = 260.142489 + 0: The maximum resident set size (KB) = 896188 Test 090 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_wam_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_wam_debug Checking test 091 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 271.804896 - 0: The maximum resident set size (KB) = 252384 + 0: The total amount of wall time = 274.982887 + 0: The maximum resident set size (KB) = 252160 Test 091 control_wam_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_atm Checking test 092 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 271.578391 - 0: The maximum resident set size (KB) = 699252 + 0: The total amount of wall time = 268.581690 + 0: The maximum resident set size (KB) = 698016 Test 092 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_atm_thompson_gfdlsf +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_atm_thompson_gfdlsf Checking test 093 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 320.167308 - 0: The maximum resident set size (KB) = 1064472 + 0: The total amount of wall time = 328.992315 + 0: The maximum resident set size (KB) = 1060676 Test 093 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_atm_ocn Checking test 094 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2787,28 +2787,28 @@ Checking test 094 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 364.113779 - 0: The maximum resident set size (KB) = 721616 + 0: The total amount of wall time = 364.415917 + 0: The maximum resident set size (KB) = 717576 Test 094 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_atm_wav Checking test 095 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 840.087154 - 0: The maximum resident set size (KB) = 724380 + 0: The total amount of wall time = 854.527878 + 0: The maximum resident set size (KB) = 717812 Test 095 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_atm_ocn_wav Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2817,62 +2817,62 @@ Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 930.206689 - 0: The maximum resident set size (KB) = 720596 + 0: The total amount of wall time = 935.359200 + 0: The maximum resident set size (KB) = 714948 Test 096 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_1nest_atm Checking test 097 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 402.744856 - 0: The maximum resident set size (KB) = 292320 + 0: The total amount of wall time = 405.796531 + 0: The maximum resident set size (KB) = 297536 Test 097 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_telescopic_2nests_atm Checking test 098 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 422.488810 - 0: The maximum resident set size (KB) = 298036 + 0: The total amount of wall time = 421.377440 + 0: The maximum resident set size (KB) = 293428 Test 098 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_global_1nest_atm Checking test 099 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.753902 - 0: The maximum resident set size (KB) = 193400 + 0: The total amount of wall time = 196.753721 + 0: The maximum resident set size (KB) = 190912 Test 099 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_global_multiple_4nests_atm Checking test 100 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 432.039747 - 0: The maximum resident set size (KB) = 238596 + 0: The total amount of wall time = 435.193590 + 0: The maximum resident set size (KB) = 237156 Test 100 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_docn Checking test 101 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2880,14 +2880,14 @@ Checking test 101 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 = 343.795759 - 0: The maximum resident set size (KB) = 714640 + 0: The total amount of wall time = 349.201442 + 0: The maximum resident set size (KB) = 714604 Test 101 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_docn_oisst Checking test 102 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2895,105 +2895,105 @@ Checking test 102 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 = 345.373435 - 0: The maximum resident set size (KB) = 718572 + 0: The total amount of wall time = 344.843161 + 0: The maximum resident set size (KB) = 720156 Test 102 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/hafs_regional_datm_cdeps Checking test 103 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 = 947.143874 - 0: The maximum resident set size (KB) = 852228 + 0: The total amount of wall time = 949.839129 + 0: The maximum resident set size (KB) = 854844 Test 103 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_control_cfsr Checking test 104 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 = 137.831477 - 0: The maximum resident set size (KB) = 721792 + 0: The total amount of wall time = 140.669810 + 0: The maximum resident set size (KB) = 718788 Test 104 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_restart_cfsr Checking test 105 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 = 87.576378 - 0: The maximum resident set size (KB) = 740776 + 0: The total amount of wall time = 88.069375 + 0: The maximum resident set size (KB) = 721096 Test 105 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_control_gefs Checking test 106 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 = 135.006550 - 0: The maximum resident set size (KB) = 619852 + 0: The total amount of wall time = 137.319947 + 0: The maximum resident set size (KB) = 621768 Test 106 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_stochy_gefs Checking test 107 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 = 138.396687 - 0: The maximum resident set size (KB) = 621340 + 0: The total amount of wall time = 138.461051 + 0: The maximum resident set size (KB) = 621696 Test 107 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_bulk_cfsr Checking test 108 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 = 139.103198 - 0: The maximum resident set size (KB) = 720572 + 0: The total amount of wall time = 141.080309 + 0: The maximum resident set size (KB) = 721264 Test 108 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_bulk_gefs Checking test 109 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 = 135.557741 - 0: The maximum resident set size (KB) = 621444 + 0: The total amount of wall time = 139.241413 + 0: The maximum resident set size (KB) = 619928 Test 109 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_mx025_cfsr Checking test 110 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3002,14 +3002,14 @@ Checking test 110 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 = 300.308772 - 0: The maximum resident set size (KB) = 566844 + 0: The total amount of wall time = 302.190614 + 0: The maximum resident set size (KB) = 577276 Test 110 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_mx025_gefs Checking test 111 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3018,51 +3018,51 @@ Checking test 111 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 = 296.508306 - 0: The maximum resident set size (KB) = 536360 + 0: The total amount of wall time = 302.494701 + 0: The maximum resident set size (KB) = 530620 Test 111 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_multiple_files_cfsr Checking test 112 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 = 138.599589 - 0: The maximum resident set size (KB) = 719908 + 0: The total amount of wall time = 140.677502 + 0: The maximum resident set size (KB) = 721132 Test 112 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_3072x1536_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_3072x1536_cfsr Checking test 113 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 = 188.325438 - 0: The maximum resident set size (KB) = 1834340 + 0: The total amount of wall time = 190.827746 + 0: The maximum resident set size (KB) = 1833012 Test 113 datm_cdeps_3072x1536_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/datm_cdeps_debug_cfsr Checking test 114 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 = 433.427215 - 0: The maximum resident set size (KB) = 725788 + 0: The total amount of wall time = 438.919322 + 0: The maximum resident set size (KB) = 744668 Test 114 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_atmwav Checking test 115 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -3106,14 +3106,14 @@ Checking test 115 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 78.568518 - 0: The maximum resident set size (KB) = 493828 + 0: The total amount of wall time = 79.795209 + 0: The maximum resident set size (KB) = 492436 Test 115 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_c384gdas_wav Checking test 116 control_c384gdas_wav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -3159,14 +3159,14 @@ Checking test 116 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 683.303062 - 0: The maximum resident set size (KB) = 1041016 + 0: The total amount of wall time = 690.659356 + 0: The maximum resident set size (KB) = 1041948 Test 116 control_c384gdas_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_32402/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_8557/control_atm_aerosols Checking test 117 control_atm_aerosols results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -3213,12 +3213,12 @@ Checking test 117 control_atm_aerosols results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 277.440115 - 0: The maximum resident set size (KB) = 898176 + 0: The total amount of wall time = 280.536985 + 0: The maximum resident set size (KB) = 886920 Test 117 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 17:13:35 UTC 2022 -Elapsed time: 00h:55m:42s. Have a nice day! +Wed Jan 26 15:57:17 UTC 2022 +Elapsed time: 00h:54m:27s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index fb73334b10..f555e51f16 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Tue Jan 25 16:16:36 GMT 2022 +Wed Jan 26 15:02:03 GMT 2022 Start Regression test -Compile 001 elapsed time 1605 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 224 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1430 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1429 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 005 elapsed time 1496 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 826 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 239 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 236 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 208 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1479 seconds. -DAPP=HAFSW -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 001 elapsed time 1614 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 225 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1425 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1423 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 005 elapsed time 1488 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 823 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 235 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 223 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 204 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 1480 seconds. -DAPP=HAFSW -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 011 elapsed time 1470 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 012 elapsed time 295 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 013 elapsed time 133 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 1410 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 012 elapsed time 278 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 013 elapsed time 127 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 1450 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -82,14 +82,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 290.375404 - 0: The maximum resident set size (KB) = 601480 + 0: The total amount of wall time = 289.365289 + 0: The maximum resident set size (KB) = 599180 Test 001 cpld_control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -142,14 +142,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 886.621434 - 0: The maximum resident set size (KB) = 668056 + 0: The total amount of wall time = 989.813566 + 0: The maximum resident set size (KB) = 670292 Test 002 cpld_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_mpi_p8 Checking test 003 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 003 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 250.754870 - 0: The maximum resident set size (KB) = 595536 + 0: The total amount of wall time = 251.325437 + 0: The maximum resident set size (KB) = 595652 Test 003 cpld_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_control_p7_rrtmgp Checking test 004 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 004 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 335.245111 - 0: The maximum resident set size (KB) = 702664 + 0: The total amount of wall time = 332.744439 + 0: The maximum resident set size (KB) = 699204 Test 004 cpld_control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_bmark_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_bmark_p7 Checking test 005 cpld_bmark_p7 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -314,14 +314,14 @@ Checking test 005 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1159.446922 - 0: The maximum resident set size (KB) = 1367300 + 0: The total amount of wall time = 1157.685940 + 0: The maximum resident set size (KB) = 1371468 Test 005 cpld_bmark_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_bmark_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_bmark_p8 Checking test 006 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -366,14 +366,14 @@ Checking test 006 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1148.826791 - 0: The maximum resident set size (KB) = 1370176 + 0: The total amount of wall time = 1154.034716 + 0: The maximum resident set size (KB) = 1363992 Test 006 cpld_bmark_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_bmark_mpi_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_bmark_mpi_p8 Checking test 007 cpld_bmark_mpi_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -418,14 +418,14 @@ Checking test 007 cpld_bmark_mpi_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 1143.539144 - 0: The maximum resident set size (KB) = 1374928 + 0: The total amount of wall time = 1146.995364 + 0: The maximum resident set size (KB) = 1373916 Test 007 cpld_bmark_mpi_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_control_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_control_c96_p8 Checking test 008 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -487,14 +487,14 @@ Checking test 008 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 285.602961 - 0: The maximum resident set size (KB) = 592868 + 0: The total amount of wall time = 279.274883 + 0: The maximum resident set size (KB) = 591572 Test 008 cpld_control_c96_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_restart_c96_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_restart_c96_p8 Checking test 009 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -544,14 +544,14 @@ Checking test 009 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 156.381974 - 0: The maximum resident set size (KB) = 390328 + 0: The total amount of wall time = 156.766820 + 0: The maximum resident set size (KB) = 352848 Test 009 cpld_restart_c96_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_control_c192_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_control_c192_p8 Checking test 010 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -601,14 +601,14 @@ Checking test 010 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 1194.647948 - 0: The maximum resident set size (KB) = 788196 + 0: The total amount of wall time = 1196.540045 + 0: The maximum resident set size (KB) = 781476 Test 010 cpld_control_c192_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_restart_c192_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_restart_c192_p8 Checking test 011 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -658,14 +658,14 @@ Checking test 011 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 755.029440 - 0: The maximum resident set size (KB) = 885980 + 0: The total amount of wall time = 752.567937 + 0: The maximum resident set size (KB) = 887460 Test 011 cpld_restart_c192_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_control_c384_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_control_c384_p8 Checking test 012 cpld_control_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -708,14 +708,14 @@ Checking test 012 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1325.128214 - 0: The maximum resident set size (KB) = 1336920 + 0: The total amount of wall time = 1326.406990 + 0: The maximum resident set size (KB) = 1338700 Test 012 cpld_control_c384_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_restart_c384_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_restart_c384_p8 Checking test 013 cpld_restart_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -758,14 +758,14 @@ Checking test 013 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 756.324505 - 0: The maximum resident set size (KB) = 1296120 + 0: The total amount of wall time = 724.504643 + 0: The maximum resident set size (KB) = 1293856 Test 013 cpld_restart_c384_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/cpld_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/cpld_debug_p8 Checking test 014 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -815,14 +815,14 @@ Checking test 014 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 799.110870 - 0: The maximum resident set size (KB) = 646552 + 0: The total amount of wall time = 804.007845 + 0: The maximum resident set size (KB) = 644116 Test 014 cpld_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control Checking test 015 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -869,14 +869,14 @@ Checking test 015 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 174.846676 - 0: The maximum resident set size (KB) = 484100 + 0: The total amount of wall time = 169.508151 + 0: The maximum resident set size (KB) = 481320 Test 015 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -919,14 +919,14 @@ Checking test 016 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 173.447202 - 0: The maximum resident set size (KB) = 478168 + 0: The total amount of wall time = 172.180769 + 0: The maximum resident set size (KB) = 477548 Test 016 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -969,14 +969,14 @@ Checking test 017 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 724.168970 - 0: The maximum resident set size (KB) = 525820 + 0: The total amount of wall time = 776.321213 + 0: The maximum resident set size (KB) = 523336 Test 017 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1015,14 +1015,14 @@ Checking test 018 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 92.079161 - 0: The maximum resident set size (KB) = 225680 + 0: The total amount of wall time = 90.271994 + 0: The maximum resident set size (KB) = 225840 Test 018 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1065,14 +1065,14 @@ Checking test 019 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 160.419469 - 0: The maximum resident set size (KB) = 483792 + 0: The total amount of wall time = 158.034739 + 0: The maximum resident set size (KB) = 481396 Test 019 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1099,14 +1099,14 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 159.384233 - 0: The maximum resident set size (KB) = 477276 + 0: The total amount of wall time = 157.437027 + 0: The maximum resident set size (KB) = 476840 Test 020 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1117,14 +1117,14 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 166.766280 - 0: The maximum resident set size (KB) = 481368 + 0: The total amount of wall time = 163.880742 + 0: The maximum resident set size (KB) = 480336 Test 021 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1135,14 +1135,14 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 168.645212 - 0: The maximum resident set size (KB) = 484316 + 0: The total amount of wall time = 169.761248 + 0: The maximum resident set size (KB) = 486588 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1181,14 +1181,14 @@ Checking test 023 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 540.124229 -0: The maximum resident set size (KB) = 660760 +0: The total amount of wall time = 535.287282 +0: The maximum resident set size (KB) = 659056 Test 023 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1199,14 +1199,14 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 651.646800 - 0: The maximum resident set size (KB) = 584256 + 0: The total amount of wall time = 648.673743 + 0: The maximum resident set size (KB) = 582648 Test 024 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1217,14 +1217,14 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 803.688233 - 0: The maximum resident set size (KB) = 754848 + 0: The total amount of wall time = 799.047338 + 0: The maximum resident set size (KB) = 750536 Test 025 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1267,14 +1267,14 @@ Checking test 026 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 742.772829 - 0: The maximum resident set size (KB) = 834432 + 0: The total amount of wall time = 742.910959 + 0: The maximum resident set size (KB) = 833460 Test 026 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1285,28 +1285,28 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 112.507082 - 0: The maximum resident set size (KB) = 487788 + 0: The total amount of wall time = 109.947813 + 0: The maximum resident set size (KB) = 490696 Test 027 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 67.000271 - 0: The maximum resident set size (KB) = 241488 + 0: The total amount of wall time = 61.754858 + 0: The maximum resident set size (KB) = 247496 Test 028 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1317,14 +1317,14 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 104.751088 - 0: The maximum resident set size (KB) = 490460 + 0: The total amount of wall time = 99.471901 + 0: The maximum resident set size (KB) = 485992 Test 029 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_p8 Checking test 030 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1371,14 +1371,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 = 189.527912 - 0: The maximum resident set size (KB) = 505952 + 0: The total amount of wall time = 189.716587 + 0: The maximum resident set size (KB) = 508492 Test 030 control_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_restart_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_restart_p8 Checking test 031 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1417,14 +1417,14 @@ Checking test 031 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 = 106.727275 - 0: The maximum resident set size (KB) = 312200 + 0: The total amount of wall time = 103.371691 + 0: The maximum resident set size (KB) = 313712 Test 031 control_restart_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_decomp_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_decomp_p8 Checking test 032 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1467,14 +1467,14 @@ Checking test 032 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 195.299199 - 0: The maximum resident set size (KB) = 497848 + 0: The total amount of wall time = 197.230124 + 0: The maximum resident set size (KB) = 498184 Test 032 control_decomp_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_2threads_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_2threads_p8 Checking test 033 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1517,14 +1517,14 @@ Checking test 033 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 = 740.763449 - 0: The maximum resident set size (KB) = 571724 + 0: The total amount of wall time = 845.929036 + 0: The maximum resident set size (KB) = 578460 Test 033 control_2threads_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_p7_rrtmgp Checking test 034 control_p7_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1571,14 +1571,14 @@ Checking test 034 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 243.291925 - 0: The maximum resident set size (KB) = 608496 + 0: The total amount of wall time = 235.581311 + 0: The maximum resident set size (KB) = 604192 Test 034 control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1589,28 +1589,28 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 424.820549 - 0: The maximum resident set size (KB) = 582212 + 0: The total amount of wall time = 417.166201 + 0: The maximum resident set size (KB) = 586668 Test 035 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 241.832582 - 0: The maximum resident set size (KB) = 582876 + 0: The total amount of wall time = 234.002521 + 0: The maximum resident set size (KB) = 586060 Test 036 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1618,14 +1618,14 @@ Checking test 037 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 = 449.364692 - 0: The maximum resident set size (KB) = 592428 + 0: The total amount of wall time = 442.370588 + 0: The maximum resident set size (KB) = 591200 Test 037 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_hafs Checking test 038 regional_hafs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1634,28 +1634,28 @@ Checking test 038 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 414.704984 - 0: The maximum resident set size (KB) = 586252 + 0: The total amount of wall time = 413.327636 + 0: The maximum resident set size (KB) = 587392 Test 038 regional_hafs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_netcdf_parallel Checking test 039 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 420.499058 - 0: The maximum resident set size (KB) = 578264 + 0: The total amount of wall time = 405.211066 + 0: The maximum resident set size (KB) = 582880 Test 039 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_RRTMGP Checking test 040 regional_RRTMGP results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1666,14 +1666,14 @@ Checking test 040 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 520.761093 - 0: The maximum resident set size (KB) = 709884 + 0: The total amount of wall time = 518.292002 + 0: The maximum resident set size (KB) = 707980 Test 040 regional_RRTMGP PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_control Checking test 041 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1720,14 +1720,14 @@ Checking test 041 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 474.054692 - 0: The maximum resident set size (KB) = 850616 + 0: The total amount of wall time = 468.857390 + 0: The maximum resident set size (KB) = 849884 Test 041 rap_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_restart Checking test 042 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1766,14 +1766,14 @@ Checking test 042 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 237.828367 - 0: The maximum resident set size (KB) = 597256 + 0: The total amount of wall time = 241.057755 + 0: The maximum resident set size (KB) = 597476 Test 042 rap_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_sfcdiff Checking test 043 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1820,14 +1820,14 @@ Checking test 043 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 476.608633 - 0: The maximum resident set size (KB) = 847776 + 0: The total amount of wall time = 467.476904 + 0: The maximum resident set size (KB) = 844676 Test 043 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_sfcdiff_restart Checking test 044 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1866,14 +1866,14 @@ Checking test 044 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 = 239.453378 - 0: The maximum resident set size (KB) = 596652 + 0: The total amount of wall time = 245.654021 + 0: The maximum resident set size (KB) = 596520 Test 044 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hrrr_control Checking test 045 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1920,14 +1920,14 @@ Checking test 045 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 456.533661 - 0: The maximum resident set size (KB) = 847828 + 0: The total amount of wall time = 451.207999 + 0: The maximum resident set size (KB) = 846844 Test 045 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rrfs_v1beta Checking test 046 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1974,14 +1974,14 @@ Checking test 046 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.178321 - 0: The maximum resident set size (KB) = 845224 + 0: The total amount of wall time = 458.895923 + 0: The maximum resident set size (KB) = 846636 Test 046 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_hrrr_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rrfs_conus13km_hrrr_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rrfs_conus13km_hrrr_warm Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -1990,14 +1990,14 @@ Checking test 047 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 220.491772 - 0: The maximum resident set size (KB) = 699668 + 0: The total amount of wall time = 216.651409 + 0: The maximum resident set size (KB) = 687256 Test 047 rrfs_conus13km_hrrr_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rrfs_conus13km_radar_tten_warm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rrfs_conus13km_radar_tten_warm Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2006,14 +2006,14 @@ Checking test 048 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 223.508569 - 0: The maximum resident set size (KB) = 693120 + 0: The total amount of wall time = 216.162905 + 0: The maximum resident set size (KB) = 691400 Test 048 rrfs_conus13km_radar_tten_warm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_rrtmgp Checking test 049 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2024,14 +2024,14 @@ Checking test 049 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 250.542129 - 0: The maximum resident set size (KB) = 602140 + 0: The total amount of wall time = 251.879140 + 0: The maximum resident set size (KB) = 601200 Test 049 control_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_rrtmgp_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_rrtmgp_c192 Checking test 050 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -2042,14 +2042,14 @@ Checking test 050 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 688.966571 - 0: The maximum resident set size (KB) = 809372 + 0: The total amount of wall time = 689.783547 + 0: The maximum resident set size (KB) = 811452 Test 050 control_rrtmgp_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_csawmg Checking test 051 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2060,14 +2060,14 @@ Checking test 051 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 422.793563 - 0: The maximum resident set size (KB) = 539356 + 0: The total amount of wall time = 422.254074 + 0: The maximum resident set size (KB) = 542248 Test 051 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_csawmgt Checking test 052 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2078,14 +2078,14 @@ Checking test 052 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 421.416323 - 0: The maximum resident set size (KB) = 540092 + 0: The total amount of wall time = 418.521584 + 0: The maximum resident set size (KB) = 539880 Test 052 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_flake Checking test 053 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2096,14 +2096,14 @@ Checking test 053 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 280.757303 - 0: The maximum resident set size (KB) = 549072 + 0: The total amount of wall time = 281.471850 + 0: The maximum resident set size (KB) = 550072 Test 053 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_ras Checking test 054 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2114,14 +2114,14 @@ Checking test 054 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 229.198171 - 0: The maximum resident set size (KB) = 513468 + 0: The total amount of wall time = 227.621400 + 0: The maximum resident set size (KB) = 515492 Test 054 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson Checking test 055 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2132,14 +2132,14 @@ Checking test 055 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 280.940642 - 0: The maximum resident set size (KB) = 865840 + 0: The total amount of wall time = 283.687515 + 0: The maximum resident set size (KB) = 868432 Test 055 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson_no_aero Checking test 056 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2150,54 +2150,54 @@ Checking test 056 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 277.199976 - 0: The maximum resident set size (KB) = 855292 + 0: The total amount of wall time = 272.605197 + 0: The maximum resident set size (KB) = 856824 Test 056 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_wam_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_wam_repro Checking test 057 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 151.345205 - 0: The maximum resident set size (KB) = 240008 + 0: The total amount of wall time = 150.395397 + 0: The maximum resident set size (KB) = 240692 Test 057 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_debug Checking test 058 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.549549 - 0: The maximum resident set size (KB) = 546540 + 0: The total amount of wall time = 189.191744 + 0: The maximum resident set size (KB) = 548592 Test 058 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_2threads_debug Checking test 059 control_2threads_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 361.761769 - 0: The maximum resident set size (KB) = 590004 + 0: The total amount of wall time = 362.149441 + 0: The maximum resident set size (KB) = 592516 Test 059 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_CubedSphereGrid_debug Checking test 060 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2224,428 +2224,428 @@ Checking test 060 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 207.091166 - 0: The maximum resident set size (KB) = 544464 + 0: The total amount of wall time = 205.500065 + 0: The maximum resident set size (KB) = 540216 Test 060 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_wrtGauss_netcdf_parallel_debug Checking test 061 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 195.140657 - 0: The maximum resident set size (KB) = 550264 + 0: The total amount of wall time = 191.625227 + 0: The maximum resident set size (KB) = 547208 Test 061 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_stochy_debug Checking test 062 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 215.608915 - 0: The maximum resident set size (KB) = 550004 + 0: The total amount of wall time = 215.171867 + 0: The maximum resident set size (KB) = 552484 Test 062 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_lndp_debug Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.893169 - 0: The maximum resident set size (KB) = 553524 + 0: The total amount of wall time = 192.728959 + 0: The maximum resident set size (KB) = 555896 Test 063 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_rrtmgp_debug Checking test 064 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 210.256762 - 0: The maximum resident set size (KB) = 645724 + 0: The total amount of wall time = 211.189268 + 0: The maximum resident set size (KB) = 646284 Test 064 control_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_csawmg_debug Checking test 065 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 308.375415 - 0: The maximum resident set size (KB) = 583644 + 0: The total amount of wall time = 305.445151 + 0: The maximum resident set size (KB) = 585940 Test 065 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_csawmgt_debug Checking test 066 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 301.288209 - 0: The maximum resident set size (KB) = 595280 + 0: The total amount of wall time = 298.149369 + 0: The maximum resident set size (KB) = 583700 Test 066 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_ras_debug Checking test 067 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 196.302387 - 0: The maximum resident set size (KB) = 563164 + 0: The total amount of wall time = 194.204782 + 0: The maximum resident set size (KB) = 557768 Test 067 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_diag_debug Checking test 068 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 200.997113 - 0: The maximum resident set size (KB) = 602760 + 0: The total amount of wall time = 201.668990 + 0: The maximum resident set size (KB) = 603576 Test 068 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug_p8 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_debug_p8 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_debug_p8 Checking test 069 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 205.092578 - 0: The maximum resident set size (KB) = 565732 + 0: The total amount of wall time = 204.634169 + 0: The maximum resident set size (KB) = 562880 Test 069 control_debug_p8 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson_debug Checking test 070 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 222.150615 - 0: The maximum resident set size (KB) = 909664 + 0: The total amount of wall time = 223.352077 + 0: The maximum resident set size (KB) = 909572 Test 070 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson_no_aero_debug Checking test 071 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 213.951368 - 0: The maximum resident set size (KB) = 899496 + 0: The total amount of wall time = 212.086156 + 0: The maximum resident set size (KB) = 901768 Test 071 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson_extdiag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson_extdiag_debug Checking test 072 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 234.396797 - 0: The maximum resident set size (KB) = 941356 + 0: The total amount of wall time = 232.939406 + 0: The maximum resident set size (KB) = 935644 Test 072 control_thompson_extdiag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_thompson_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_thompson_progcld_thompson_debug Checking test 073 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 223.797784 - 0: The maximum resident set size (KB) = 910168 + 0: The total amount of wall time = 221.907543 + 0: The maximum resident set size (KB) = 909368 Test 073 control_thompson_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/regional_debug Checking test 074 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 322.971165 - 0: The maximum resident set size (KB) = 604904 + 0: The total amount of wall time = 321.090120 + 0: The maximum resident set size (KB) = 607920 Test 074 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_control_debug Checking test 075 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 342.883029 - 0: The maximum resident set size (KB) = 913972 + 0: The total amount of wall time = 342.665126 + 0: The maximum resident set size (KB) = 913284 Test 075 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_unified_drag_suite_debug Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 343.642543 - 0: The maximum resident set size (KB) = 911604 + 0: The total amount of wall time = 341.774628 + 0: The maximum resident set size (KB) = 920148 Test 076 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_diag_debug Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 364.115107 - 0: The maximum resident set size (KB) = 1001524 + 0: The total amount of wall time = 365.846501 + 0: The maximum resident set size (KB) = 996564 Test 077 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_cires_ugwp_debug Checking test 078 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 351.225492 - 0: The maximum resident set size (KB) = 915000 + 0: The total amount of wall time = 350.374261 + 0: The maximum resident set size (KB) = 914212 Test 078 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_unified_ugwp_debug Checking test 079 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 352.780435 - 0: The maximum resident set size (KB) = 921664 + 0: The total amount of wall time = 351.182402 + 0: The maximum resident set size (KB) = 910728 Test 079 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_noah_debug Checking test 080 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 340.823136 - 0: The maximum resident set size (KB) = 910864 + 0: The total amount of wall time = 338.219009 + 0: The maximum resident set size (KB) = 911084 Test 080 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_rrtmgp_debug Checking test 081 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 586.205916 - 0: The maximum resident set size (KB) = 1008888 + 0: The total amount of wall time = 584.728061 + 0: The maximum resident set size (KB) = 1008536 Test 081 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_lndp_debug Checking test 082 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.031981 - 0: The maximum resident set size (KB) = 913800 + 0: The total amount of wall time = 347.080098 + 0: The maximum resident set size (KB) = 911700 Test 082 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_sfcdiff_debug Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 343.361317 - 0: The maximum resident set size (KB) = 912520 + 0: The total amount of wall time = 344.210380 + 0: The maximum resident set size (KB) = 914148 Test 083 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 343.921891 - 0: The maximum resident set size (KB) = 913504 + 0: The total amount of wall time = 342.414730 + 0: The maximum resident set size (KB) = 919352 Test 084 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_noah_sfcdiff_cires_ugwp_debug Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 574.034099 - 0: The maximum resident set size (KB) = 910948 + 0: The total amount of wall time = 571.023682 + 0: The maximum resident set size (KB) = 910644 Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_progcld_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rap_progcld_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rap_progcld_thompson_debug Checking test 086 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 344.830100 - 0: The maximum resident set size (KB) = 911296 + 0: The total amount of wall time = 343.786166 + 0: The maximum resident set size (KB) = 909864 Test 086 rap_progcld_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/rrfs_v1beta_debug Checking test 087 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 347.461769 - 0: The maximum resident set size (KB) = 907028 + 0: The total amount of wall time = 341.839217 + 0: The maximum resident set size (KB) = 917152 Test 087 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_wam_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_wam_debug Checking test 088 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 368.759794 - 0: The maximum resident set size (KB) = 263512 + 0: The total amount of wall time = 366.519330 + 0: The maximum resident set size (KB) = 265820 Test 088 control_wam_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_atm Checking test 089 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1087.253385 - 0: The maximum resident set size (KB) = 786912 + 0: The total amount of wall time = 1074.743839 + 0: The maximum resident set size (KB) = 788624 Test 089 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_atm_thompson_gfdlsf +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_atm_thompson_gfdlsf Checking test 090 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1163.865807 - 0: The maximum resident set size (KB) = 1144368 + 0: The total amount of wall time = 1199.948318 + 0: The maximum resident set size (KB) = 1138072 Test 090 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_atm_ocn Checking test 091 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2654,28 +2654,28 @@ Checking test 091 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 = 451.933135 - 0: The maximum resident set size (KB) = 814748 + 0: The total amount of wall time = 455.942469 + 0: The maximum resident set size (KB) = 813964 Test 091 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_atm_wav Checking test 092 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 926.270800 - 0: The maximum resident set size (KB) = 817068 + 0: The total amount of wall time = 943.017446 + 0: The maximum resident set size (KB) = 818660 Test 092 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_atm_ocn_wav Checking test 093 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2684,14 +2684,14 @@ Checking test 093 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1014.993234 - 0: The maximum resident set size (KB) = 821240 + 0: The total amount of wall time = 1033.875587 + 0: The maximum resident set size (KB) = 822504 Test 093 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_docn Checking test 094 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2699,14 +2699,14 @@ Checking test 094 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 = 441.536873 - 0: The maximum resident set size (KB) = 816764 + 0: The total amount of wall time = 442.644288 + 0: The maximum resident set size (KB) = 816460 Test 094 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_docn_oisst Checking test 095 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2714,105 +2714,105 @@ Checking test 095 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 = 439.123374 - 0: The maximum resident set size (KB) = 815572 + 0: The total amount of wall time = 440.738456 + 0: The maximum resident set size (KB) = 816140 Test 095 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/hafs_regional_datm_cdeps Checking test 096 hafs_regional_datm_cdeps results .... Comparing ufs.hafs.cpl.hi.2019-08-30-00000.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-30-00000.nc .........OK Comparing ufs.hafs.datm.r.2019-08-30-00000.nc .........OK - 0: The total amount of wall time = 1232.551137 - 0: The maximum resident set size (KB) = 857032 + 0: The total amount of wall time = 1216.432696 + 0: The maximum resident set size (KB) = 858648 Test 096 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/datm_cdeps_control_cfsr Checking test 097 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 191.814957 - 0: The maximum resident set size (KB) = 727056 + 0: The total amount of wall time = 194.088095 + 0: The maximum resident set size (KB) = 727252 Test 097 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/datm_cdeps_restart_cfsr Checking test 098 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 116.987699 - 0: The maximum resident set size (KB) = 745356 + 0: The total amount of wall time = 116.185722 + 0: The maximum resident set size (KB) = 727456 Test 098 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/datm_cdeps_control_gefs Checking test 099 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 188.247993 - 0: The maximum resident set size (KB) = 625532 + 0: The total amount of wall time = 189.773369 + 0: The maximum resident set size (KB) = 628416 Test 099 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 = 191.301527 - 0: The maximum resident set size (KB) = 625244 + 0: The total amount of wall time = 192.128081 + 0: The maximum resident set size (KB) = 627212 Test 100 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 = 192.921871 - 0: The maximum resident set size (KB) = 726096 + 0: The total amount of wall time = 197.363261 + 0: The maximum resident set size (KB) = 727240 Test 101 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 = 187.819422 - 0: The maximum resident set size (KB) = 627136 + 0: The total amount of wall time = 192.047519 + 0: The maximum resident set size (KB) = 628792 Test 102 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 @@ -2821,14 +2821,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 = 409.952804 - 0: The maximum resident set size (KB) = 595828 + 0: The total amount of wall time = 424.084704 + 0: The maximum resident set size (KB) = 588136 Test 103 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 @@ -2837,51 +2837,51 @@ 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 = 401.533415 - 0: The maximum resident set size (KB) = 566172 + 0: The total amount of wall time = 404.051189 + 0: The maximum resident set size (KB) = 565080 Test 104 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 = 192.620169 - 0: The maximum resident set size (KB) = 726032 + 0: The total amount of wall time = 195.849079 + 0: The maximum resident set size (KB) = 726484 Test 105 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_3072x1536_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/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 = 265.305158 - 0: The maximum resident set size (KB) = 1838180 + 0: The total amount of wall time = 272.165518 + 0: The maximum resident set size (KB) = 1902176 Test 106 datm_cdeps_3072x1536_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/datm_cdeps_debug_cfsr Checking test 107 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 = 570.963902 - 0: The maximum resident set size (KB) = 734772 + 0: The total amount of wall time = 570.421663 + 0: The maximum resident set size (KB) = 733316 Test 107 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_98071/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19931/control_atmwav Checking test 108 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -2925,12 +2925,12 @@ Checking test 108 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 114.670499 - 0: The maximum resident set size (KB) = 527932 + 0: The total amount of wall time = 113.599442 + 0: The maximum resident set size (KB) = 529300 Test 108 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 18:10:58 GMT 2022 -Elapsed time: 01h:54m:22s. Have a nice day! +Wed Jan 26 17:09:32 GMT 2022 +Elapsed time: 02h:07m:30s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 19938540fd..c6ab074e89 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,23 +1,23 @@ -Tue Jan 25 10:16:46 CST 2022 +Wed Jan 26 10:31:43 CST 2022 Start Regression test -Compile 001 elapsed time 507 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 195 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 385 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 408 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 449 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 397 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 181 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 198 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 145 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 418 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 419 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 012 elapsed time 200 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 102 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 358 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 492 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 259 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 384 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 387 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 395 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 383 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 186 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 186 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 160 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 396 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 391 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 012 elapsed time 208 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 96 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 350 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_control_p8 Checking test 001 cpld_control_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -82,14 +82,14 @@ Checking test 001 cpld_control_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 326.219382 - 0: The maximum resident set size (KB) = 642712 + 0: The total amount of wall time = 217.969022 + 0: The maximum resident set size (KB) = 641584 Test 001 cpld_control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_2threads_p8 Checking test 002 cpld_2threads_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -142,14 +142,14 @@ Checking test 002 cpld_2threads_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 257.132749 - 0: The maximum resident set size (KB) = 696992 + 0: The total amount of wall time = 246.771458 + 0: The maximum resident set size (KB) = 700380 Test 002 cpld_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_decomp_p8 Checking test 003 cpld_decomp_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -202,14 +202,14 @@ Checking test 003 cpld_decomp_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 225.929576 - 0: The maximum resident set size (KB) = 637996 + 0: The total amount of wall time = 221.396427 + 0: The maximum resident set size (KB) = 640252 Test 003 cpld_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_mpi_p8 Checking test 004 cpld_mpi_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -262,14 +262,14 @@ Checking test 004 cpld_mpi_p8 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 190.952383 - 0: The maximum resident set size (KB) = 651972 + 0: The total amount of wall time = 190.208743 + 0: The maximum resident set size (KB) = 652512 Test 004 cpld_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_control_p7_rrtmgp Checking test 005 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -322,14 +322,14 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 252.169152 - 0: The maximum resident set size (KB) = 744968 + 0: The total amount of wall time = 253.866084 + 0: The maximum resident set size (KB) = 736508 Test 005 cpld_control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_bmark_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -374,14 +374,14 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 902.583737 - 0: The maximum resident set size (KB) = 1467624 + 0: The total amount of wall time = 896.970547 + 0: The maximum resident set size (KB) = 1473396 Test 006 cpld_bmark_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_bmark_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_bmark_p8 Checking test 007 cpld_bmark_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -426,14 +426,14 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 931.069774 - 0: The maximum resident set size (KB) = 1470076 + 0: The total amount of wall time = 906.777193 + 0: The maximum resident set size (KB) = 1471732 Test 007 cpld_bmark_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_bmark_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_bmark_mpi_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_bmark_mpi_p8 Checking test 008 cpld_bmark_mpi_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -478,14 +478,14 @@ Checking test 008 cpld_bmark_mpi_p8 results .... Comparing RESTART/iced.2013-04-01-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK - 0: The total amount of wall time = 900.053033 - 0: The maximum resident set size (KB) = 1484420 + 0: The total amount of wall time = 882.629823 + 0: The maximum resident set size (KB) = 1489844 Test 008 cpld_bmark_mpi_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_control_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_control_c96_p8 Checking test 009 cpld_control_c96_p8 results .... Comparing sfcf021.tile1.nc .........OK Comparing sfcf021.tile2.nc .........OK @@ -547,14 +547,14 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 210.535510 - 0: The maximum resident set size (KB) = 626216 + 0: The total amount of wall time = 212.195853 + 0: The maximum resident set size (KB) = 624212 Test 009 cpld_control_c96_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c96_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_restart_c96_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_restart_c96_p8 Checking test 010 cpld_restart_c96_p8 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -604,14 +604,14 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/iced.2021-03-23-21600.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 123.247821 - 0: The maximum resident set size (KB) = 392188 + 0: The total amount of wall time = 117.161269 + 0: The maximum resident set size (KB) = 442648 Test 010 cpld_restart_c96_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_control_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_control_c192_p8 Checking test 011 cpld_control_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -661,14 +661,14 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 870.859883 - 0: The maximum resident set size (KB) = 847280 + 0: The total amount of wall time = 862.689140 + 0: The maximum resident set size (KB) = 843688 Test 011 cpld_control_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c192_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_restart_c192_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_restart_c192_p8 Checking test 012 cpld_restart_c192_p8 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -718,14 +718,14 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/iced.2021-03-23-64800.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK - 0: The total amount of wall time = 646.647071 - 0: The maximum resident set size (KB) = 912864 + 0: The total amount of wall time = 643.824922 + 0: The maximum resident set size (KB) = 913652 Test 012 cpld_restart_c192_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_control_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_control_c384_p8 Checking test 013 cpld_control_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -768,14 +768,14 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 1057.724656 - 0: The maximum resident set size (KB) = 1436524 + 0: The total amount of wall time = 1055.627012 + 0: The maximum resident set size (KB) = 1438124 Test 013 cpld_control_c384_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_control_c384_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_restart_c384_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_restart_c384_p8 Checking test 014 cpld_restart_c384_p8 results .... Comparing sfcf006.nc ............ALT CHECK......OK Comparing atmf006.nc ............ALT CHECK......OK @@ -818,14 +818,14 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 593.281876 - 0: The maximum resident set size (KB) = 1401064 + 0: The total amount of wall time = 566.106323 + 0: The maximum resident set size (KB) = 1398084 Test 014 cpld_restart_c384_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/cpld_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/cpld_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/cpld_debug_p8 Checking test 015 cpld_debug_p8 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -875,14 +875,14 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/iced.2021-03-22-43200.nc .........OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK - 0: The total amount of wall time = 641.474140 - 0: The maximum resident set size (KB) = 689188 + 0: The total amount of wall time = 650.594460 + 0: The maximum resident set size (KB) = 689212 Test 015 cpld_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control Checking test 016 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -929,14 +929,14 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 122.061759 - 0: The maximum resident set size (KB) = 485596 + 0: The total amount of wall time = 125.338359 + 0: The maximum resident set size (KB) = 485492 Test 016 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_decomp Checking test 017 control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -979,14 +979,14 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 129.300789 - 0: The maximum resident set size (KB) = 485088 + 0: The total amount of wall time = 132.068528 + 0: The maximum resident set size (KB) = 487816 Test 017 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_2threads Checking test 018 control_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1029,14 +1029,14 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 144.005621 - 0: The maximum resident set size (KB) = 531700 + 0: The total amount of wall time = 147.299183 + 0: The maximum resident set size (KB) = 534352 Test 018 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_restart Checking test 019 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1075,14 +1075,14 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 68.967341 - 0: The maximum resident set size (KB) = 225248 + 0: The total amount of wall time = 66.513537 + 0: The maximum resident set size (KB) = 222920 Test 019 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_fhzero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_fhzero Checking test 020 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1125,14 +1125,14 @@ Checking test 020 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 115.482774 - 0: The maximum resident set size (KB) = 486900 + 0: The total amount of wall time = 118.442443 + 0: The maximum resident set size (KB) = 486692 Test 020 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_CubedSphereGrid Checking test 021 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1159,14 +1159,14 @@ Checking test 021 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 119.317367 - 0: The maximum resident set size (KB) = 484176 + 0: The total amount of wall time = 123.101095 + 0: The maximum resident set size (KB) = 484264 Test 021 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_latlon Checking test 022 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1177,14 +1177,14 @@ Checking test 022 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 121.048231 - 0: The maximum resident set size (KB) = 487820 + 0: The total amount of wall time = 122.029479 + 0: The maximum resident set size (KB) = 489348 Test 022 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_wrtGauss_netcdf_parallel Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1195,14 +1195,14 @@ Checking test 023 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 123.097054 - 0: The maximum resident set size (KB) = 484888 + 0: The total amount of wall time = 124.258159 + 0: The maximum resident set size (KB) = 485884 Test 023 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_c48 Checking test 024 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1241,14 +1241,14 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 307.670108 -0: The maximum resident set size (KB) = 653104 +0: The total amount of wall time = 305.130283 +0: The maximum resident set size (KB) = 656148 Test 024 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_c192 Checking test 025 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1259,14 +1259,14 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 468.063090 - 0: The maximum resident set size (KB) = 590444 + 0: The total amount of wall time = 465.375324 + 0: The maximum resident set size (KB) = 587120 Test 025 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_c384 Checking test 026 control_c384 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1277,14 +1277,14 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 803.803544 - 0: The maximum resident set size (KB) = 883368 + 0: The total amount of wall time = 962.064954 + 0: The maximum resident set size (KB) = 881984 Test 026 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_c384gdas Checking test 027 control_c384gdas results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1327,14 +1327,14 @@ Checking test 027 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 790.771770 - 0: The maximum resident set size (KB) = 998780 + 0: The total amount of wall time = 672.385311 + 0: The maximum resident set size (KB) = 999140 Test 027 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_stochy Checking test 028 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1345,28 +1345,28 @@ Checking test 028 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.242878 - 0: The maximum resident set size (KB) = 485768 + 0: The total amount of wall time = 81.611127 + 0: The maximum resident set size (KB) = 486856 Test 028 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_stochy_restart Checking test 029 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.324993 - 0: The maximum resident set size (KB) = 261948 + 0: The total amount of wall time = 45.423738 + 0: The maximum resident set size (KB) = 266180 Test 029 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_lndp Checking test 030 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1377,14 +1377,14 @@ Checking test 030 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 75.180777 - 0: The maximum resident set size (KB) = 492264 + 0: The total amount of wall time = 78.477844 + 0: The maximum resident set size (KB) = 488772 Test 030 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_p8 Checking test 031 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1431,14 +1431,14 @@ Checking test 031 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.672858 - 0: The maximum resident set size (KB) = 511276 + 0: The total amount of wall time = 137.667189 + 0: The maximum resident set size (KB) = 511492 Test 031 control_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_restart_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_restart_p8 Checking test 032 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1477,14 +1477,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 = 75.413508 - 0: The maximum resident set size (KB) = 297952 + 0: The total amount of wall time = 75.991771 + 0: The maximum resident set size (KB) = 298212 Test 032 control_restart_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_decomp_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_decomp_p8 Checking test 033 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1527,14 +1527,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 = 146.511370 - 0: The maximum resident set size (KB) = 507348 + 0: The total amount of wall time = 201.636752 + 0: The maximum resident set size (KB) = 502704 Test 033 control_decomp_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_2threads_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_2threads_p8 Checking test 034 control_2threads_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1577,14 +1577,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 = 166.431231 - 0: The maximum resident set size (KB) = 577948 + 0: The total amount of wall time = 163.178698 + 0: The maximum resident set size (KB) = 576448 Test 034 control_2threads_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_p7_rrtmgp Checking test 035 control_p7_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1631,14 +1631,14 @@ Checking test 035 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 172.332808 - 0: The maximum resident set size (KB) = 613180 + 0: The total amount of wall time = 170.806047 + 0: The maximum resident set size (KB) = 612412 Test 035 control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_control Checking test 036 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1649,28 +1649,28 @@ Checking test 036 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 301.423240 - 0: The maximum resident set size (KB) = 586480 + 0: The total amount of wall time = 298.302637 + 0: The maximum resident set size (KB) = 588456 Test 036 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_restart Checking test 037 regional_restart results .... Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 171.022960 - 0: The maximum resident set size (KB) = 588112 + 0: The total amount of wall time = 168.716947 + 0: The maximum resident set size (KB) = 589688 Test 037 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_noquilt Checking test 038 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1678,14 +1678,14 @@ Checking test 038 regional_noquilt results .... Comparing RESTART/fv_core.res.tile1_new.nc .........OK Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK - 0: The total amount of wall time = 302.302716 - 0: The maximum resident set size (KB) = 602892 + 0: The total amount of wall time = 299.147347 + 0: The maximum resident set size (KB) = 598504 Test 038 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_2threads Checking test 039 regional_2threads results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1696,14 +1696,14 @@ Checking test 039 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 215.764113 - 0: The maximum resident set size (KB) = 600724 + 0: The total amount of wall time = 213.722485 + 0: The maximum resident set size (KB) = 598580 Test 039 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_hafs Checking test 040 regional_hafs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1712,28 +1712,28 @@ Checking test 040 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 296.046335 - 0: The maximum resident set size (KB) = 584584 + 0: The total amount of wall time = 297.922465 + 0: The maximum resident set size (KB) = 587376 Test 040 regional_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_netcdf_parallel Checking test 041 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 297.597103 - 0: The maximum resident set size (KB) = 589492 + 0: The total amount of wall time = 297.362549 + 0: The maximum resident set size (KB) = 586536 Test 041 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_RRTMGP Checking test 042 regional_RRTMGP results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -1744,14 +1744,14 @@ Checking test 042 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 373.589648 - 0: The maximum resident set size (KB) = 711480 + 0: The total amount of wall time = 373.644831 + 0: The maximum resident set size (KB) = 715336 Test 042 regional_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_control Checking test 043 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1798,14 +1798,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 = 342.326061 - 0: The maximum resident set size (KB) = 851492 + 0: The total amount of wall time = 346.012813 + 0: The maximum resident set size (KB) = 852112 Test 043 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_2threads Checking test 044 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1852,14 +1852,14 @@ Checking test 044 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 443.984432 - 0: The maximum resident set size (KB) = 911432 + 0: The total amount of wall time = 407.337798 + 0: The maximum resident set size (KB) = 912296 Test 044 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_restart Checking test 045 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1898,14 +1898,14 @@ Checking test 045 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 177.093400 - 0: The maximum resident set size (KB) = 610044 + 0: The total amount of wall time = 177.959706 + 0: The maximum resident set size (KB) = 604184 Test 045 rap_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_sfcdiff Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1952,14 +1952,14 @@ Checking test 046 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 342.013212 - 0: The maximum resident set size (KB) = 850768 + 0: The total amount of wall time = 342.927369 + 0: The maximum resident set size (KB) = 851280 Test 046 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_sfcdiff_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_sfcdiff_restart Checking test 047 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -1998,14 +1998,14 @@ Checking test 047 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 = 182.282521 - 0: The maximum resident set size (KB) = 607008 + 0: The total amount of wall time = 177.153990 + 0: The maximum resident set size (KB) = 605016 Test 047 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hrrr_control Checking test 048 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2052,14 +2052,14 @@ Checking test 048 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 331.749468 - 0: The maximum resident set size (KB) = 854872 + 0: The total amount of wall time = 333.724884 + 0: The maximum resident set size (KB) = 854644 Test 048 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rrfs_v1beta Checking test 049 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -2106,14 +2106,14 @@ Checking test 049 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 338.049906 - 0: The maximum resident set size (KB) = 849604 + 0: The total amount of wall time = 337.224151 + 0: The maximum resident set size (KB) = 849720 Test 049 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_hrrr_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rrfs_conus13km_hrrr_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rrfs_conus13km_hrrr_warm Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2122,14 +2122,14 @@ Checking test 050 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.663892 - 0: The maximum resident set size (KB) = 715844 + 0: The total amount of wall time = 167.189034 + 0: The maximum resident set size (KB) = 713048 Test 050 rrfs_conus13km_hrrr_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_conus13km_radar_tten_warm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rrfs_conus13km_radar_tten_warm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rrfs_conus13km_radar_tten_warm Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -2138,14 +2138,14 @@ Checking test 051 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK - 0: The total amount of wall time = 177.177327 - 0: The maximum resident set size (KB) = 718768 + 0: The total amount of wall time = 224.949674 + 0: The maximum resident set size (KB) = 720728 Test 051 rrfs_conus13km_radar_tten_warm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_rrtmgp Checking test 052 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2156,14 +2156,14 @@ Checking test 052 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 185.932655 - 0: The maximum resident set size (KB) = 604488 + 0: The total amount of wall time = 186.881179 + 0: The maximum resident set size (KB) = 603636 Test 052 control_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_rrtmgp_c192 Checking test 053 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -2174,14 +2174,14 @@ Checking test 053 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 506.106056 - 0: The maximum resident set size (KB) = 806048 + 0: The total amount of wall time = 505.758429 + 0: The maximum resident set size (KB) = 803252 Test 053 control_rrtmgp_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_csawmg Checking test 054 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2192,14 +2192,14 @@ Checking test 054 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.680535 - 0: The maximum resident set size (KB) = 544424 + 0: The total amount of wall time = 308.445028 + 0: The maximum resident set size (KB) = 544828 Test 054 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_csawmgt Checking test 055 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2210,14 +2210,14 @@ Checking test 055 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 302.679800 - 0: The maximum resident set size (KB) = 542252 + 0: The total amount of wall time = 303.331163 + 0: The maximum resident set size (KB) = 545220 Test 055 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_flake Checking test 056 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2228,14 +2228,14 @@ Checking test 056 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 215.763342 - 0: The maximum resident set size (KB) = 556652 + 0: The total amount of wall time = 215.086082 + 0: The maximum resident set size (KB) = 557208 Test 056 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_ras Checking test 057 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2246,14 +2246,14 @@ Checking test 057 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 166.864105 - 0: The maximum resident set size (KB) = 516272 + 0: The total amount of wall time = 166.212528 + 0: The maximum resident set size (KB) = 516584 Test 057 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson Checking test 058 control_thompson results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2264,14 +2264,14 @@ Checking test 058 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.252668 - 0: The maximum resident set size (KB) = 872652 + 0: The total amount of wall time = 209.625730 + 0: The maximum resident set size (KB) = 873068 Test 058 control_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson_no_aero Checking test 059 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -2282,54 +2282,54 @@ Checking test 059 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.721967 - 0: The maximum resident set size (KB) = 867576 + 0: The total amount of wall time = 269.663076 + 0: The maximum resident set size (KB) = 866284 Test 059 control_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_wam_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_wam_repro Checking test 060 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 112.710305 - 0: The maximum resident set size (KB) = 253952 + 0: The total amount of wall time = 113.315001 + 0: The maximum resident set size (KB) = 251996 Test 060 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_debug Checking test 061 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 159.033245 - 0: The maximum resident set size (KB) = 547716 + 0: The total amount of wall time = 160.548462 + 0: The maximum resident set size (KB) = 549244 Test 061 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_2threads_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_2threads_debug Checking test 062 control_2threads_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 227.224235 - 0: The maximum resident set size (KB) = 591048 + 0: The total amount of wall time = 232.255577 + 0: The maximum resident set size (KB) = 589540 Test 062 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_CubedSphereGrid_debug Checking test 063 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2356,428 +2356,428 @@ Checking test 063 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 169.815752 - 0: The maximum resident set size (KB) = 545620 + 0: The total amount of wall time = 169.499976 + 0: The maximum resident set size (KB) = 547848 Test 063 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_wrtGauss_netcdf_parallel_debug Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 157.346261 - 0: The maximum resident set size (KB) = 545980 + 0: The total amount of wall time = 163.145337 + 0: The maximum resident set size (KB) = 547052 Test 064 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_stochy_debug Checking test 065 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 176.605493 - 0: The maximum resident set size (KB) = 548764 + 0: The total amount of wall time = 176.640257 + 0: The maximum resident set size (KB) = 550828 Test 065 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_lndp_debug Checking test 066 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 156.879550 - 0: The maximum resident set size (KB) = 560912 + 0: The total amount of wall time = 162.336433 + 0: The maximum resident set size (KB) = 561900 Test 066 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_rrtmgp_debug Checking test 067 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 173.999909 - 0: The maximum resident set size (KB) = 642740 + 0: The total amount of wall time = 168.813339 + 0: The maximum resident set size (KB) = 643876 Test 067 control_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_csawmg_debug Checking test 068 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 239.012552 - 0: The maximum resident set size (KB) = 577476 + 0: The total amount of wall time = 242.599104 + 0: The maximum resident set size (KB) = 580036 Test 068 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_csawmgt_debug Checking test 069 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 236.963003 - 0: The maximum resident set size (KB) = 579016 + 0: The total amount of wall time = 242.753595 + 0: The maximum resident set size (KB) = 577700 Test 069 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_ras_debug Checking test 070 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 162.623552 - 0: The maximum resident set size (KB) = 557524 + 0: The total amount of wall time = 167.407861 + 0: The maximum resident set size (KB) = 559560 Test 070 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_diag_debug Checking test 071 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 167.055309 - 0: The maximum resident set size (KB) = 604508 + 0: The total amount of wall time = 166.150603 + 0: The maximum resident set size (KB) = 603952 Test 071 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_debug_p8 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_debug_p8 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_debug_p8 Checking test 072 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 165.972031 - 0: The maximum resident set size (KB) = 575248 + 0: The total amount of wall time = 167.950204 + 0: The maximum resident set size (KB) = 573012 Test 072 control_debug_p8 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson_debug Checking test 073 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 177.909709 - 0: The maximum resident set size (KB) = 906468 + 0: The total amount of wall time = 176.762031 + 0: The maximum resident set size (KB) = 909152 Test 073 control_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson_no_aero_debug Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 174.881771 - 0: The maximum resident set size (KB) = 904300 + 0: The total amount of wall time = 189.621987 + 0: The maximum resident set size (KB) = 907140 Test 074 control_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson_extdiag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson_extdiag_debug Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 191.235173 - 0: The maximum resident set size (KB) = 949952 + 0: The total amount of wall time = 189.371626 + 0: The maximum resident set size (KB) = 935888 Test 075 control_thompson_extdiag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_thompson_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_thompson_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_thompson_progcld_thompson_debug Checking test 076 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 183.774867 - 0: The maximum resident set size (KB) = 908512 + 0: The total amount of wall time = 184.899418 + 0: The maximum resident set size (KB) = 908380 Test 076 control_thompson_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/regional_debug Checking test 077 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 251.589692 - 0: The maximum resident set size (KB) = 613116 + 0: The total amount of wall time = 252.254230 + 0: The maximum resident set size (KB) = 611436 Test 077 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_control_debug Checking test 078 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 281.886455 - 0: The maximum resident set size (KB) = 913384 + 0: The total amount of wall time = 275.489711 + 0: The maximum resident set size (KB) = 910752 Test 078 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_unified_drag_suite_debug Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.863064 - 0: The maximum resident set size (KB) = 909624 + 0: The total amount of wall time = 276.636752 + 0: The maximum resident set size (KB) = 910132 Test 079 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_diag_debug Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 296.960072 - 0: The maximum resident set size (KB) = 1010488 + 0: The total amount of wall time = 291.801890 + 0: The maximum resident set size (KB) = 1006032 Test 080 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_cires_ugwp_debug Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 287.397734 - 0: The maximum resident set size (KB) = 918592 + 0: The total amount of wall time = 279.631587 + 0: The maximum resident set size (KB) = 913576 Test 081 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_unified_ugwp_debug Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.158296 - 0: The maximum resident set size (KB) = 913440 + 0: The total amount of wall time = 279.594138 + 0: The maximum resident set size (KB) = 913372 Test 082 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_noah_debug Checking test 083 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 268.989042 - 0: The maximum resident set size (KB) = 911760 + 0: The total amount of wall time = 270.934102 + 0: The maximum resident set size (KB) = 913940 Test 083 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_rrtmgp_debug Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 463.835753 - 0: The maximum resident set size (KB) = 1014304 + 0: The total amount of wall time = 459.211847 + 0: The maximum resident set size (KB) = 1007380 Test 084 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_lndp_debug Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 274.384688 - 0: The maximum resident set size (KB) = 912232 + 0: The total amount of wall time = 275.003841 + 0: The maximum resident set size (KB) = 914968 Test 085 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_sfcdiff_debug Checking test 086 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 279.549454 - 0: The maximum resident set size (KB) = 907712 + 0: The total amount of wall time = 344.337212 + 0: The maximum resident set size (KB) = 911296 Test 086 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_flake_debug Checking test 087 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 278.179928 - 0: The maximum resident set size (KB) = 912316 + 0: The total amount of wall time = 274.305401 + 0: The maximum resident set size (KB) = 912212 Test 087 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_noah_sfcdiff_cires_ugwp_debug Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 456.320406 - 0: The maximum resident set size (KB) = 909576 + 0: The total amount of wall time = 457.268238 + 0: The maximum resident set size (KB) = 912480 Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rap_progcld_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rap_progcld_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rap_progcld_thompson_debug Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 277.385891 - 0: The maximum resident set size (KB) = 910180 + 0: The total amount of wall time = 276.627741 + 0: The maximum resident set size (KB) = 911720 Test 089 rap_progcld_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/rrfs_v1beta_debug Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 284.002384 - 0: The maximum resident set size (KB) = 914020 + 0: The total amount of wall time = 271.939284 + 0: The maximum resident set size (KB) = 908648 Test 090 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_wam_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_wam_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_wam_debug Checking test 091 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.218573 - 0: The maximum resident set size (KB) = 273156 + 0: The total amount of wall time = 309.612831 + 0: The maximum resident set size (KB) = 272472 Test 091 control_wam_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_atm Checking test 092 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 282.897312 - 0: The maximum resident set size (KB) = 847092 + 0: The total amount of wall time = 272.935177 + 0: The maximum resident set size (KB) = 845996 Test 092 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_thompson_gfdlsf -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_atm_thompson_gfdlsf +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_atm_thompson_gfdlsf Checking test 093 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 320.774778 - 0: The maximum resident set size (KB) = 1205216 + 0: The total amount of wall time = 321.144257 + 0: The maximum resident set size (KB) = 1207748 Test 093 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_atm_ocn Checking test 094 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2786,28 +2786,28 @@ Checking test 094 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 = 361.507533 - 0: The maximum resident set size (KB) = 888948 + 0: The total amount of wall time = 357.259227 + 0: The maximum resident set size (KB) = 888960 Test 094 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_atm_wav Checking test 095 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 789.980163 - 0: The maximum resident set size (KB) = 888524 + 0: The total amount of wall time = 782.336382 + 0: The maximum resident set size (KB) = 887836 Test 095 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_atm_ocn_wav Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2816,62 +2816,62 @@ Checking test 096 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 878.594607 - 0: The maximum resident set size (KB) = 893860 + 0: The total amount of wall time = 876.573202 + 0: The maximum resident set size (KB) = 887544 Test 096 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_1nest_atm Checking test 097 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 426.343377 - 0: The maximum resident set size (KB) = 385652 + 0: The total amount of wall time = 424.740941 + 0: The maximum resident set size (KB) = 384136 Test 097 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_telescopic_2nests_atm Checking test 098 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 407.209133 - 0: The maximum resident set size (KB) = 393820 + 0: The total amount of wall time = 403.181597 + 0: The maximum resident set size (KB) = 392720 Test 098 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_global_1nest_atm Checking test 099 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 194.572053 - 0: The maximum resident set size (KB) = 254208 + 0: The total amount of wall time = 191.219574 + 0: The maximum resident set size (KB) = 262480 Test 099 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_global_multiple_4nests_atm Checking test 100 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 419.063811 - 0: The maximum resident set size (KB) = 378072 + 0: The total amount of wall time = 415.601273 + 0: The maximum resident set size (KB) = 367552 Test 100 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_docn Checking test 101 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2879,14 +2879,14 @@ Checking test 101 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 = 346.307111 - 0: The maximum resident set size (KB) = 881900 + 0: The total amount of wall time = 344.957059 + 0: The maximum resident set size (KB) = 886496 Test 101 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_docn_oisst Checking test 102 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2894,105 +2894,105 @@ Checking test 102 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 = 345.880998 - 0: The maximum resident set size (KB) = 886132 + 0: The total amount of wall time = 365.167288 + 0: The maximum resident set size (KB) = 887992 Test 102 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/hafs_regional_datm_cdeps Checking test 103 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 = 923.657703 - 0: The maximum resident set size (KB) = 864444 + 0: The total amount of wall time = 918.125115 + 0: The maximum resident set size (KB) = 871620 Test 103 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_control_cfsr Checking test 104 datm_cdeps_control_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 142.088930 - 0: The maximum resident set size (KB) = 722804 + 0: The total amount of wall time = 142.690058 + 0: The maximum resident set size (KB) = 720508 Test 104 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_restart_cfsr Checking test 105 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.403595 - 0: The maximum resident set size (KB) = 722276 + 0: The total amount of wall time = 108.076960 + 0: The maximum resident set size (KB) = 721584 Test 105 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_control_gefs Checking test 106 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 = 147.457012 - 0: The maximum resident set size (KB) = 623836 + 0: The total amount of wall time = 207.950804 + 0: The maximum resident set size (KB) = 621916 Test 106 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_stochy_gefs Checking test 107 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 = 139.518383 - 0: The maximum resident set size (KB) = 624252 + 0: The total amount of wall time = 142.881216 + 0: The maximum resident set size (KB) = 620300 Test 107 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_bulk_cfsr Checking test 108 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 148.297614 - 0: The maximum resident set size (KB) = 722128 + 0: The total amount of wall time = 144.510169 + 0: The maximum resident set size (KB) = 722468 Test 108 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_bulk_gefs Checking test 109 datm_cdeps_bulk_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 139.419903 - 0: The maximum resident set size (KB) = 622424 + 0: The total amount of wall time = 137.599600 + 0: The maximum resident set size (KB) = 622464 Test 109 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_mx025_cfsr Checking test 110 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3001,14 +3001,14 @@ Checking test 110 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 = 303.646233 - 0: The maximum resident set size (KB) = 621160 + 0: The total amount of wall time = 306.769508 + 0: The maximum resident set size (KB) = 631868 Test 110 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_mx025_gefs Checking test 111 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -3017,51 +3017,51 @@ Checking test 111 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 = 304.945790 - 0: The maximum resident set size (KB) = 595900 + 0: The total amount of wall time = 297.651238 + 0: The maximum resident set size (KB) = 596756 Test 111 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_multiple_files_cfsr Checking test 112 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 = 140.620554 - 0: The maximum resident set size (KB) = 723048 + 0: The total amount of wall time = 140.767219 + 0: The maximum resident set size (KB) = 723432 Test 112 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_3072x1536_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_3072x1536_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_3072x1536_cfsr Checking test 113 datm_cdeps_3072x1536_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 200.522302 - 0: The maximum resident set size (KB) = 1835696 + 0: The total amount of wall time = 195.610300 + 0: The maximum resident set size (KB) = 1835700 Test 113 datm_cdeps_3072x1536_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/datm_cdeps_debug_cfsr Checking test 114 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 = 457.781002 - 0: The maximum resident set size (KB) = 727064 + 0: The total amount of wall time = 447.759818 + 0: The maximum resident set size (KB) = 726232 Test 114 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_atmwav Checking test 115 control_atmwav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -3105,14 +3105,14 @@ Checking test 115 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 83.221311 - 0: The maximum resident set size (KB) = 567496 + 0: The total amount of wall time = 82.094200 + 0: The maximum resident set size (KB) = 566280 Test 115 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_377918/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_264760/control_c384gdas_wav Checking test 116 control_c384gdas_wav results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf003.nc ............ALT CHECK......OK @@ -3158,12 +3158,12 @@ Checking test 116 control_c384gdas_wav results .... Comparing 20210322.030000.restart.gnh_10m .........OK Comparing 20210322.030000.restart.gsh_15m .........OK - 0: The total amount of wall time = 697.465587 - 0: The maximum resident set size (KB) = 1202728 + 0: The total amount of wall time = 697.606422 + 0: The maximum resident set size (KB) = 1209484 Test 116 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Jan 25 11:15:22 CST 2022 -Elapsed time: 00h:58m:37s. Have a nice day! +Wed Jan 26 11:31:29 CST 2022 +Elapsed time: 00h:59m:47s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index 5b13e1a9f7..4a12fdd364 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,17 +1,17 @@ -Wed Jan 26 01:05:20 UTC 2022 +Wed Jan 26 16:43:04 UTC 2022 Start Regression test -Compile 001 elapsed time 768 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 755 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 003 elapsed time 807 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 005 elapsed time 510 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 509 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 007 elapsed time 461 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 868 seconds. -DAPP=HAFSW -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 773 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 786 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 003 elapsed time 841 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 005 elapsed time 576 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 575 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 007 elapsed time 485 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 933 seconds. -DAPP=HAFSW -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-20220121/control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control Checking test 001 control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -58,14 +58,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.221960 -The maximum resident set size (KB) = 423648 +The total amount of wall time = 144.235258 +The maximum resident set size (KB) = 423584 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_decomp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -108,14 +108,14 @@ 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.522560 -The maximum resident set size (KB) = 422572 +The total amount of wall time = 147.487635 +The maximum resident set size (KB) = 422548 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_restart +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -154,14 +154,14 @@ Checking test 003 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 77.813858 -The maximum resident set size (KB) = 156416 +The total amount of wall time = 81.466780 +The maximum resident set size (KB) = 156484 Test 003 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_fhzero +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_fhzero Checking test 004 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -204,14 +204,14 @@ Checking test 004 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 136.316493 -The maximum resident set size (KB) = 423676 +The total amount of wall time = 138.326623 +The maximum resident set size (KB) = 423696 Test 004 control_fhzero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_CubedSphereGrid Checking test 005 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -238,14 +238,14 @@ Checking test 005 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 138.645041 -The maximum resident set size (KB) = 423664 +The total amount of wall time = 137.986728 +The maximum resident set size (KB) = 423800 Test 005 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_latlon -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_latlon +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_latlon Checking test 006 control_latlon results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -256,14 +256,14 @@ Checking test 006 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 140.757416 -The maximum resident set size (KB) = 423620 +The total amount of wall time = 140.812744 +The maximum resident set size (KB) = 423448 Test 006 control_latlon PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_wrtGauss_netcdf_parallel Checking test 007 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -274,14 +274,14 @@ Checking test 007 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.568100 -The maximum resident set size (KB) = 423576 +The total amount of wall time = 143.231227 +The maximum resident set size (KB) = 423600 Test 007 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c48 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_c48 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_c48 Checking test 008 control_c48 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -320,14 +320,14 @@ Checking test 008 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 430.501410 -The maximum resident set size (KB) = 630856 +The total amount of wall time = 430.950472 +The maximum resident set size (KB) = 630784 Test 008 control_c48 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c192 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_c192 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_c192 Checking test 009 control_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -338,14 +338,14 @@ Checking test 009 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 541.481839 -The maximum resident set size (KB) = 524128 +The total amount of wall time = 541.815382 +The maximum resident set size (KB) = 524272 Test 009 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_stochy +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_stochy Checking test 010 control_stochy results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -356,28 +356,28 @@ Checking test 010 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 98.343290 -The maximum resident set size (KB) = 426616 +The total amount of wall time = 95.783535 +The maximum resident set size (KB) = 426564 Test 010 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_stochy_restart +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_stochy_restart Checking test 011 control_stochy_restart results .... Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf012.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 57.315215 -The maximum resident set size (KB) = 176216 +The total amount of wall time = 57.987788 +The maximum resident set size (KB) = 176172 Test 011 control_stochy_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_lndp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_lndp Checking test 012 control_lndp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -388,14 +388,14 @@ Checking test 012 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 86.514163 -The maximum resident set size (KB) = 428340 +The total amount of wall time = 88.186054 +The maximum resident set size (KB) = 428372 Test 012 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_p8 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_p8 Checking test 013 control_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -442,14 +442,14 @@ Checking test 013 control_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 162.876835 -The maximum resident set size (KB) = 456016 +The total amount of wall time = 162.628591 +The maximum resident set size (KB) = 455956 Test 013 control_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_restart_p8 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_restart_p8 Checking test 014 control_restart_p8 results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -488,14 +488,14 @@ Checking test 014 control_restart_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 91.775953 -The maximum resident set size (KB) = 269932 +The total amount of wall time = 96.995046 +The maximum resident set size (KB) = 269820 Test 014 control_restart_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_decomp_p8 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_decomp_p8 Checking test 015 control_decomp_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -538,14 +538,14 @@ Checking test 015 control_decomp_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 169.096855 -The maximum resident set size (KB) = 449132 +The total amount of wall time = 166.456742 +The maximum resident set size (KB) = 449040 Test 015 control_decomp_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p7_rrtmgp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_p7_rrtmgp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_p7_rrtmgp Checking test 016 control_p7_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -592,14 +592,14 @@ Checking test 016 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 212.798450 -The maximum resident set size (KB) = 550484 +The total amount of wall time = 210.429785 +The maximum resident set size (KB) = 550408 Test 016 control_p7_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_control +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_control Checking test 017 regional_control results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -610,28 +610,28 @@ Checking test 017 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 366.064188 -The maximum resident set size (KB) = 531888 +The total amount of wall time = 372.020518 +The maximum resident set size (KB) = 531708 Test 017 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_restart +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_restart Checking test 018 regional_restart results .... Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 217.456043 -The maximum resident set size (KB) = 526156 +The total amount of wall time = 220.797433 +The maximum resident set size (KB) = 526080 Test 018 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_noquilt +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_noquilt Checking test 019 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -639,14 +639,14 @@ Checking test 019 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 = 394.565785 -The maximum resident set size (KB) = 536172 +The total amount of wall time = 391.188676 +The maximum resident set size (KB) = 536104 Test 019 regional_noquilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_hafs -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_hafs +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_hafs Checking test 020 regional_hafs results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -655,28 +655,28 @@ Checking test 020 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 362.368903 -The maximum resident set size (KB) = 527816 +The total amount of wall time = 359.446165 +The maximum resident set size (KB) = 527192 Test 020 regional_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_netcdf_parallel Checking test 021 regional_netcdf_parallel results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -The total amount of wall time = 359.866303 -The maximum resident set size (KB) = 526728 +The total amount of wall time = 359.940197 +The maximum resident set size (KB) = 526592 Test 021 regional_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_RRTMGP +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_RRTMGP Checking test 022 regional_RRTMGP results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf024.nc ............ALT CHECK......OK @@ -687,14 +687,14 @@ Checking test 022 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 455.421612 -The maximum resident set size (KB) = 653472 +The total amount of wall time = 454.347543 +The maximum resident set size (KB) = 653228 Test 022 regional_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_control +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_control Checking test 023 rap_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -741,14 +741,14 @@ Checking test 023 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 389.786007 -The maximum resident set size (KB) = 788908 +The total amount of wall time = 390.739212 +The maximum resident set size (KB) = 788948 Test 023 rap_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_restart +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_restart Checking test 024 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -787,14 +787,14 @@ Checking test 024 rap_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 206.791479 -The maximum resident set size (KB) = 529952 +The total amount of wall time = 206.556580 +The maximum resident set size (KB) = 530048 Test 024 rap_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_sfcdiff Checking test 025 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -841,14 +841,14 @@ Checking test 025 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 390.473532 -The maximum resident set size (KB) = 789016 +The total amount of wall time = 394.935956 +The maximum resident set size (KB) = 788912 Test 025 rap_sfcdiff PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_sfcdiff_restart +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_sfcdiff_restart Checking test 026 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK @@ -887,14 +887,14 @@ Checking test 026 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 207.648021 -The maximum resident set size (KB) = 529856 +The total amount of wall time = 222.720473 +The maximum resident set size (KB) = 529828 Test 026 rap_sfcdiff_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hrrr_control -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hrrr_control +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hrrr_control Checking test 027 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -941,14 +941,14 @@ Checking test 027 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 376.083613 -The maximum resident set size (KB) = 786716 +The total amount of wall time = 386.621245 +The maximum resident set size (KB) = 786684 Test 027 hrrr_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rrfs_v1beta Checking test 028 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -995,14 +995,14 @@ Checking test 028 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 382.708415 -The maximum resident set size (KB) = 786200 +The total amount of wall time = 385.143365 +The maximum resident set size (KB) = 786156 Test 028 rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_hrrr_warm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rrfs_conus13km_hrrr_warm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rrfs_conus13km_hrrr_warm Checking test 029 rrfs_conus13km_hrrr_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -1011,14 +1011,14 @@ Checking test 029 rrfs_conus13km_hrrr_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 253.055993 -The maximum resident set size (KB) = 599724 +The total amount of wall time = 249.125593 +The maximum resident set size (KB) = 599748 Test 029 rrfs_conus13km_hrrr_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rrfs_conus13km_radar_tten_warm Checking test 030 rrfs_conus13km_radar_tten_warm results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK @@ -1027,14 +1027,14 @@ Checking test 030 rrfs_conus13km_radar_tten_warm results .... Comparing atmf001.nc ............ALT CHECK......OK Comparing atmf002.nc ............ALT CHECK......OK -The total amount of wall time = 255.195228 -The maximum resident set size (KB) = 601192 +The total amount of wall time = 262.194903 +The maximum resident set size (KB) = 601020 Test 030 rrfs_conus13km_radar_tten_warm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_rrtmgp +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_rrtmgp Checking test 031 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1045,14 +1045,14 @@ Checking test 031 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 219.543970 -The maximum resident set size (KB) = 550124 +The total amount of wall time = 221.863528 +The maximum resident set size (KB) = 550008 Test 031 control_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_rrtmgp_c192 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_rrtmgp_c192 Checking test 032 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK @@ -1063,14 +1063,14 @@ Checking test 032 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 586.085697 -The maximum resident set size (KB) = 760064 +The total amount of wall time = 594.147191 +The maximum resident set size (KB) = 759860 Test 032 control_rrtmgp_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_csawmg +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_csawmg Checking test 033 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1081,14 +1081,14 @@ Checking test 033 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 359.008024 -The maximum resident set size (KB) = 491168 +The total amount of wall time = 363.097060 +The maximum resident set size (KB) = 490948 Test 033 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_csawmgt +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_csawmgt Checking test 034 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1099,14 +1099,14 @@ Checking test 034 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.286830 -The maximum resident set size (KB) = 491140 +The total amount of wall time = 359.493689 +The maximum resident set size (KB) = 490924 Test 034 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_flake -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_flake +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_flake Checking test 035 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1117,14 +1117,14 @@ Checking test 035 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 230.859997 -The maximum resident set size (KB) = 492128 +The total amount of wall time = 237.322209 +The maximum resident set size (KB) = 492084 Test 035 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_ras +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_ras Checking test 036 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1135,40 +1135,40 @@ Checking test 036 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 190.641344 -The maximum resident set size (KB) = 456584 +The total amount of wall time = 195.173013 +The maximum resident set size (KB) = 456624 Test 036 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_repro -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_wam_repro +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_wam_repro Checking test 037 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK -The total amount of wall time = 121.682704 -The maximum resident set size (KB) = 167388 +The total amount of wall time = 122.206895 +The maximum resident set size (KB) = 167112 Test 037 control_wam PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_debug Checking test 038 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 142.477748 -The maximum resident set size (KB) = 489696 +The total amount of wall time = 147.459341 +The maximum resident set size (KB) = 489564 Test 038 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_CubedSphereGrid_debug Checking test 039 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1195,428 +1195,428 @@ Checking test 039 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 152.019178 -The maximum resident set size (KB) = 489848 +The total amount of wall time = 156.526405 +The maximum resident set size (KB) = 489736 Test 039 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_wrtGauss_netcdf_parallel_debug Checking test 040 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 146.238070 -The maximum resident set size (KB) = 489776 +The total amount of wall time = 148.738262 +The maximum resident set size (KB) = 489516 Test 040 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_stochy_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_stochy_debug Checking test 041 control_stochy_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 163.681102 -The maximum resident set size (KB) = 494072 +The total amount of wall time = 165.553642 +The maximum resident set size (KB) = 493876 Test 041 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_lndp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_lndp_debug Checking test 042 control_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 146.706187 -The maximum resident set size (KB) = 494484 +The total amount of wall time = 151.117013 +The maximum resident set size (KB) = 494304 Test 042 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_rrtmgp_debug Checking test 043 control_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 159.078775 -The maximum resident set size (KB) = 594796 +The total amount of wall time = 163.430564 +The maximum resident set size (KB) = 594732 Test 043 control_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_csawmg_debug Checking test 044 control_csawmg_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 230.336821 -The maximum resident set size (KB) = 531416 +The total amount of wall time = 229.863280 +The maximum resident set size (KB) = 531292 Test 044 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_csawmgt_debug Checking test 045 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 225.668363 -The maximum resident set size (KB) = 531352 +The total amount of wall time = 226.240749 +The maximum resident set size (KB) = 531168 Test 045 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_ras_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_ras_debug Checking test 046 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 148.791493 -The maximum resident set size (KB) = 502572 +The total amount of wall time = 152.622691 +The maximum resident set size (KB) = 502488 Test 046 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_diag_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_diag_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_diag_debug Checking test 047 control_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 151.169225 -The maximum resident set size (KB) = 546964 +The total amount of wall time = 162.437529 +The maximum resident set size (KB) = 546876 Test 047 control_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug_p8 -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_debug_p8 +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_debug_p8 Checking test 048 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 154.786132 -The maximum resident set size (KB) = 514396 +The total amount of wall time = 155.105190 +The maximum resident set size (KB) = 514196 Test 048 control_debug_p8 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_thompson_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_thompson_debug Checking test 049 control_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 172.986569 -The maximum resident set size (KB) = 850528 +The total amount of wall time = 172.085511 +The maximum resident set size (KB) = 850332 Test 049 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_thompson_no_aero_debug Checking test 050 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 162.231862 -The maximum resident set size (KB) = 845080 +The total amount of wall time = 160.325174 +The maximum resident set size (KB) = 844908 Test 050 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_thompson_extdiag_debug Checking test 051 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 181.797613 -The maximum resident set size (KB) = 878192 +The total amount of wall time = 182.561473 +The maximum resident set size (KB) = 877880 Test 051 control_thompson_extdiag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_thompson_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_thompson_progcld_thompson_debug Checking test 052 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 172.944820 -The maximum resident set size (KB) = 850560 +The total amount of wall time = 175.922416 +The maximum resident set size (KB) = 850356 Test 052 control_thompson_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/regional_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/regional_debug Checking test 053 regional_debug results .... Comparing dynf000.nc ............ALT CHECK......OK Comparing dynf001.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf001.nc ............ALT CHECK......OK -The total amount of wall time = 249.116645 -The maximum resident set size (KB) = 553456 +The total amount of wall time = 254.841493 +The maximum resident set size (KB) = 553348 Test 053 regional_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_control_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_control_debug Checking test 054 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 264.792973 -The maximum resident set size (KB) = 856428 +The total amount of wall time = 267.520105 +The maximum resident set size (KB) = 856300 Test 054 rap_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_unified_drag_suite_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_unified_drag_suite_debug Checking test 055 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 266.054987 -The maximum resident set size (KB) = 856544 +The total amount of wall time = 265.540890 +The maximum resident set size (KB) = 856332 Test 055 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_diag_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_diag_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_diag_debug Checking test 056 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 281.307246 -The maximum resident set size (KB) = 938892 +The total amount of wall time = 285.693956 +The maximum resident set size (KB) = 938736 Test 056 rap_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_cires_ugwp_debug Checking test 057 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 270.435563 -The maximum resident set size (KB) = 858376 +The total amount of wall time = 289.352510 +The maximum resident set size (KB) = 858240 Test 057 rap_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_unified_ugwp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_unified_ugwp_debug Checking test 058 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 271.054902 -The maximum resident set size (KB) = 856580 +The total amount of wall time = 271.230531 +The maximum resident set size (KB) = 856352 Test 058 rap_unified_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_noah_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_noah_debug Checking test 059 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 259.899501 -The maximum resident set size (KB) = 854948 +The total amount of wall time = 261.794730 +The maximum resident set size (KB) = 854788 Test 059 rap_noah_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_rrtmgp_debug Checking test 060 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 446.348780 -The maximum resident set size (KB) = 963072 +The total amount of wall time = 450.857271 +The maximum resident set size (KB) = 962852 Test 060 rap_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_lndp_debug Checking test 061 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 268.327653 -The maximum resident set size (KB) = 857516 +The total amount of wall time = 271.038421 +The maximum resident set size (KB) = 857248 Test 061 rap_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_sfcdiff_debug Checking test 062 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 266.397439 -The maximum resident set size (KB) = 856816 +The total amount of wall time = 269.566670 +The maximum resident set size (KB) = 856772 Test 062 rap_sfcdiff_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_flake_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_flake_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_flake_debug Checking test 063 rap_flake_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 264.018932 -The maximum resident set size (KB) = 856556 +The total amount of wall time = 264.873062 +The maximum resident set size (KB) = 856444 Test 063 rap_flake_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_noah_sfcdiff_cires_ugwp_debug Checking test 064 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 436.943104 -The maximum resident set size (KB) = 855516 +The total amount of wall time = 444.422512 +The maximum resident set size (KB) = 855440 Test 064 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_progcld_thompson_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rap_progcld_thompson_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rap_progcld_thompson_debug Checking test 065 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 263.343267 -The maximum resident set size (KB) = 856456 +The total amount of wall time = 271.393499 +The maximum resident set size (KB) = 856244 Test 065 rap_progcld_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/rrfs_v1beta_debug Checking test 066 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -The total amount of wall time = 262.712125 -The maximum resident set size (KB) = 854392 +The total amount of wall time = 269.369436 +The maximum resident set size (KB) = 854252 Test 066 rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_debug -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/control_wam_debug +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/control_wam_debug Checking test 067 control_wam_debug results .... Comparing sfcf019.nc ............ALT CHECK......OK Comparing atmf019.nc ............ALT CHECK......OK -The total amount of wall time = 272.107886 -The maximum resident set size (KB) = 197536 +The total amount of wall time = 273.521182 +The maximum resident set size (KB) = 197352 Test 067 control_wam_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_atm Checking test 068 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -The total amount of wall time = 325.196524 -The maximum resident set size (KB) = 641780 +The total amount of wall time = 349.521098 +The maximum resident set size (KB) = 640496 Test 068 hafs_regional_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_atm_thompson_gfdlsf +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_atm_thompson_gfdlsf Checking test 069 hafs_regional_atm_thompson_gfdlsf results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -The total amount of wall time = 379.273165 -The maximum resident set size (KB) = 1001000 +The total amount of wall time = 390.658733 +The maximum resident set size (KB) = 994904 Test 069 hafs_regional_atm_thompson_gfdlsf PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_atm_ocn Checking test 070 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1625,28 +1625,28 @@ Checking test 070 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 = 497.261252 -The maximum resident set size (KB) = 641948 +The total amount of wall time = 553.077546 +The maximum resident set size (KB) = 642000 Test 070 hafs_regional_atm_ocn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_atm_wav Checking test 071 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 905.031894 -The maximum resident set size (KB) = 643588 +The total amount of wall time = 931.944773 +The maximum resident set size (KB) = 638308 Test 071 hafs_regional_atm_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_atm_ocn_wav Checking test 072 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -1655,48 +1655,48 @@ Checking test 072 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 972.800349 -The maximum resident set size (KB) = 641292 +The total amount of wall time = 1009.709606 +The maximum resident set size (KB) = 640016 Test 072 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_1nest_atm Checking test 073 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -The total amount of wall time = 347.905875 -The maximum resident set size (KB) = 236996 +The total amount of wall time = 351.912530 +The maximum resident set size (KB) = 237240 Test 073 hafs_regional_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_regional_telescopic_2nests_atm Checking test 074 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -The total amount of wall time = 369.549246 -The maximum resident set size (KB) = 232040 +The total amount of wall time = 381.095824 +The maximum resident set size (KB) = 231476 Test 074 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_10816/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Jun.Wang/FV3_RT/rt_40162/hafs_global_1nest_atm Checking test 075 hafs_global_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -The total amount of wall time = 165.350852 -The maximum resident set size (KB) = 141308 +The total amount of wall time = 172.921562 +The maximum resident set size (KB) = 139244 Test 075 hafs_global_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 26 01:44:05 UTC 2022 -Elapsed time: 00h:38m:46s. Have a nice day! +Wed Jan 26 17:23:52 UTC 2022 +Elapsed time: 00h:40m:49s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index b071bd67a1..8afdd1b7ee 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,108 +1,34 @@ -Tue Jan 25 22:42:42 UTC 2022 +Wed Jan 26 16:43:19 UTC 2022 Start Regression test -Compile 001 elapsed time 1958 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 517 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1133 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1076 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 005 elapsed time 1285 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 875 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit -Compile 007 elapsed time 449 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 446 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 009 elapsed time 276 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1207 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst,FV3_HAFS_v0_thompson_tedmf_gfdlsf -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1203 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 012 elapsed time 819 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 528 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 914 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 001 compile FAIL -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_control_p8 -Checking test 001 cpld_control_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK +Compile 002 elapsed time 521 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1134 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_p7_rrtmgp,FV3_GFS_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1081 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_RAP,FV3_RAP_sfcdiff,FV3_HRRR,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 005 elapsed time 1307 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_RRTMGP,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 905 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DREPRO=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Bitforbit +Compile 007 elapsed time 452 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v16_RRTMGP,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_v16_p8 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 702 seconds. -DAPP=ATM -DDEBUG=ON -DCCPP_SUITES=FV3_RAP,FV3_RAP_cires_ugwp,FV3_RAP_unified_ugwp,FV3_RAP_noah,FV3_RAP_RRTMGP,FV3_RAP_sfcdiff,FV3_RAP_flake,FV3_RAP_noah_sfcdiff_cires_ugwp,FV3_RRFS_v1beta -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 009 elapsed time 273 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16_fv3wam -D32BIT=ON -DMULTI_GASES=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 012 elapsed time 787 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 470 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -[0] The total amount of wall time = 243.162121 -[0] The maximum resident set size (KB) = 559512 - -Test 001 cpld_control_p8 PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_2threads_p8 -Checking test 002 cpld_2threads_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_debug_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/cpld_debug_p8 +Checking test 015 cpld_debug_p8 results .... + Comparing sfcf006.tile1.nc .........OK + Comparing sfcf006.tile2.nc .........OK + Comparing sfcf006.tile3.nc .........OK + Comparing sfcf006.tile4.nc .........OK + Comparing sfcf006.tile5.nc .........OK + Comparing sfcf006.tile6.nc .........OK + Comparing atmf006.tile1.nc .........OK + Comparing atmf006.tile2.nc .........OK + Comparing atmf006.tile3.nc .........OK + Comparing atmf006.tile4.nc .........OK + Comparing atmf006.tile5.nc .........OK + Comparing atmf006.tile6.nc .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -136,33 +62,30 @@ Checking test 002 cpld_2threads_p8 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK + Comparing RESTART/iced.2021-03-22-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 229.488894 -[0] The maximum resident set size (KB) = 647160 +[0] The total amount of wall time = 709.216018 +[0] The maximum resident set size (KB) = 613084 -Test 002 cpld_2threads_p8 PASS +Test 015 cpld_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_decomp_p8 -Checking test 003 cpld_decomp_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control +Checking test 016 control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -195,34 +118,24 @@ Checking test 003 cpld_decomp_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 243.595417 -[0] The maximum resident set size (KB) = 557700 +[0] The total amount of wall time = 139.766367 +[0] The maximum resident set size (KB) = 469680 -Test 003 cpld_decomp_p8 PASS +Test 016 control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_mpi_p8 -Checking test 004 cpld_mpi_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_decomp +Checking test 017 control_decomp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -255,34 +168,24 @@ Checking test 004 cpld_mpi_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 207.203934 -[0] The maximum resident set size (KB) = 547108 +[0] The total amount of wall time = 147.439682 +[0] The maximum resident set size (KB) = 471444 -Test 004 cpld_mpi_p8 PASS +Test 017 control_decomp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_control_p7_rrtmgp -Checking test 005 cpld_control_p7_rrtmgp results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_2threads +Checking test 018 control_2threads results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -315,26 +218,20 @@ Checking test 005 cpld_control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - Comparing 20210323.060000.out_grd.glo_1deg .........OK - Comparing 20210323.060000.out_pnt.points .........OK - Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 289.152210 -[0] The maximum resident set size (KB) = 658376 +[0] The total amount of wall time = 129.676295 +[0] The maximum resident set size (KB) = 515128 -Test 005 cpld_control_p7_rrtmgp PASS +Test 018 control_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_bmark_p7 -Checking test 006 cpld_bmark_p7 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_restart +Checking test 019 control_restart results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -367,26 +264,24 @@ Checking test 006 cpld_bmark_p7 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1024.928292 -[0] The maximum resident set size (KB) = 1276424 +[0] The total amount of wall time = 75.064059 +[0] The maximum resident set size (KB) = 212324 -Test 006 cpld_bmark_p7 PASS +Test 019 control_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_bmark_p8 -Checking test 007 cpld_bmark_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_fhzero +Checking test 020 control_fhzero results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -419,27 +314,91 @@ Checking test 007 cpld_bmark_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 1012.530003 -[0] The maximum resident set size (KB) = 1273560 +[0] The total amount of wall time = 132.188811 +[0] The maximum resident set size (KB) = 472596 -Test 007 cpld_bmark_p8 PASS +Test 020 control_fhzero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_bmark_mpi_p8 -Checking test 008 cpld_bmark_mpi_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK - Comparing 20130401.060000.out_grd.gwes_30m .........OK - Comparing 20130401.060000.out_pnt.points .........OK - Comparing RESTART/coupler.res .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_CubedSphereGrid +Checking test 021 control_CubedSphereGrid results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + +[0] The total amount of wall time = 135.056239 +[0] The maximum resident set size (KB) = 471312 + +Test 021 control_CubedSphereGrid PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_latlon +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_latlon +Checking test 022 control_latlon results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 137.060349 +[0] The maximum resident set size (KB) = 470288 + +Test 022 control_latlon PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_wrtGauss_netcdf_parallel +Checking test 023 control_wrtGauss_netcdf_parallel results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 141.671112 +[0] The maximum resident set size (KB) = 471624 + +Test 023 control_wrtGauss_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c48 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_c48 +Checking test 024 control_c48 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK Comparing RESTART/fv_core.res.tile2.nc .........OK @@ -471,46 +430,60 @@ Checking test 008 cpld_bmark_mpi_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2013-04-01-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 978.799081 -[0] The maximum resident set size (KB) = 1283036 +[0] The total amount of wall time = 437.878926 +[0] The maximum resident set size (KB) = 658148 -Test 008 cpld_bmark_mpi_p8 PASS +Test 024 control_c48 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_control_c96_p8 -Checking test 009 cpld_control_c96_p8 results .... - Comparing sfcf021.tile1.nc .........OK - Comparing sfcf021.tile2.nc .........OK - Comparing sfcf021.tile3.nc .........OK - Comparing sfcf021.tile4.nc .........OK - Comparing sfcf021.tile5.nc .........OK - Comparing sfcf021.tile6.nc .........OK - Comparing atmf021.tile1.nc .........OK - Comparing atmf021.tile2.nc .........OK - Comparing atmf021.tile3.nc .........OK - Comparing atmf021.tile4.nc .........OK - Comparing atmf021.tile5.nc .........OK - Comparing atmf021.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c192 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_c192 +Checking test 025 control_c192 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK + +[0] The total amount of wall time = 551.242571 +[0] The maximum resident set size (KB) = 576388 + +Test 025 control_c192 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c384 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_c384 +Checking test 026 control_c384 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +[0] The total amount of wall time = 1036.836790 +[0] The maximum resident set size (KB) = 852564 + +Test 026 control_c384 PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c384gdas +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_c384gdas +Checking test 027 control_c384gdas results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF06 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF06 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -543,31 +516,78 @@ Checking test 009 cpld_control_c96_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 232.621520 -[0] The maximum resident set size (KB) = 552340 +[0] The total amount of wall time = 906.438931 +[0] The maximum resident set size (KB) = 994372 -Test 009 cpld_control_c96_p8 PASS +Test 027 control_c384gdas PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c96_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_restart_c96_p8 -Checking test 010 cpld_restart_c96_p8 results .... - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_stochy +Checking test 028 control_stochy results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +[0] The total amount of wall time = 91.606344 +[0] The maximum resident set size (KB) = 474120 + +Test 028 control_stochy PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_stochy_restart +Checking test 029 control_stochy_restart results .... + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF12 .........OK + +[0] The total amount of wall time = 50.966289 +[0] The maximum resident set size (KB) = 266264 + +Test 029 control_stochy_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_lndp +Checking test 030 control_lndp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf012.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf012.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF12 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF12 .........OK + +[0] The total amount of wall time = 85.002420 +[0] The maximum resident set size (KB) = 474628 + +Test 030 control_lndp PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_p8 +Checking test 031 control_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -600,31 +620,20 @@ Checking test 010 cpld_restart_c96_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-21600.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 126.888027 -[0] The maximum resident set size (KB) = 363404 +[0] The total amount of wall time = 153.592952 +[0] The maximum resident set size (KB) = 493828 -Test 010 cpld_restart_c96_p8 PASS +Test 031 control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_control_c192_p8 -Checking test 011 cpld_control_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_restart_p8 +Checking test 032 control_restart_p8 results .... + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -657,31 +666,24 @@ Checking test 011 cpld_control_c192_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 986.428216 -[0] The maximum resident set size (KB) = 742812 +[0] The total amount of wall time = 85.365539 +[0] The maximum resident set size (KB) = 317044 -Test 011 cpld_control_c192_p8 PASS +Test 032 control_restart_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c192_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_restart_c192_p8 -Checking test 012 cpld_restart_c192_p8 results .... - Comparing sfcf036.tile1.nc .........OK - Comparing sfcf036.tile2.nc .........OK - Comparing sfcf036.tile3.nc .........OK - Comparing sfcf036.tile4.nc .........OK - Comparing sfcf036.tile5.nc .........OK - Comparing sfcf036.tile6.nc .........OK - Comparing atmf036.tile1.nc .........OK - Comparing atmf036.tile2.nc .........OK - Comparing atmf036.tile3.nc .........OK - Comparing atmf036.tile4.nc .........OK - Comparing atmf036.tile5.nc .........OK - Comparing atmf036.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_decomp_p8 +Checking test 033 control_decomp_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -714,21 +716,24 @@ Checking test 012 cpld_restart_c192_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-23-64800.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 616.685584 -[0] The maximum resident set size (KB) = 829208 +[0] The total amount of wall time = 163.211290 +[0] The maximum resident set size (KB) = 489332 -Test 012 cpld_restart_c192_p8 PASS +Test 033 control_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_control_c384_p8 -Checking test 013 cpld_control_c384_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_2threads_p8 +Checking test 034 control_2threads_p8 results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -761,24 +766,28 @@ Checking test 013 cpld_control_c384_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 1103.033827 -[0] The maximum resident set size (KB) = 1279164 +[0] The total amount of wall time = 143.873608 +[0] The maximum resident set size (KB) = 561724 -Test 013 cpld_control_c384_p8 PASS +Test 034 control_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c384_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_restart_c384_p8 -Checking test 014 cpld_restart_c384_p8 results .... - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_p7_rrtmgp +Checking test 035 control_p7_rrtmgp results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -811,34 +820,141 @@ Checking test 014 cpld_restart_c384_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 590.706634 -[0] The maximum resident set size (KB) = 1238348 +[0] The total amount of wall time = 208.215891 +[0] The maximum resident set size (KB) = 593992 -Test 014 cpld_restart_c384_p8 PASS +Test 035 control_p7_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_debug_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/cpld_debug_p8 -Checking test 015 cpld_debug_p8 results .... - Comparing sfcf006.tile1.nc .........OK - Comparing sfcf006.tile2.nc .........OK - Comparing sfcf006.tile3.nc .........OK - Comparing sfcf006.tile4.nc .........OK - Comparing sfcf006.tile5.nc .........OK - Comparing sfcf006.tile6.nc .........OK - Comparing atmf006.tile1.nc .........OK - Comparing atmf006.tile2.nc .........OK - Comparing atmf006.tile3.nc .........OK - Comparing atmf006.tile4.nc .........OK - Comparing atmf006.tile5.nc .........OK - Comparing atmf006.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_control +Checking test 036 regional_control results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 347.574985 +[0] The maximum resident set size (KB) = 569536 + +Test 036 regional_control PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_restart +Checking test 037 regional_restart results .... + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 191.169745 +[0] The maximum resident set size (KB) = 572484 + +Test 037 regional_restart PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_noquilt +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_noquilt +Checking test 038 regional_noquilt results .... + Comparing atmos_4xdaily.nc .........OK + Comparing fv3_history2d.nc .........OK + Comparing fv3_history.nc .........OK + Comparing RESTART/fv_core.res.tile1_new.nc .........OK + Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK + +[0] The total amount of wall time = 369.406440 +[0] The maximum resident set size (KB) = 607348 + +Test 038 regional_noquilt PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_2threads +Checking test 039 regional_2threads results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 197.278924 +[0] The maximum resident set size (KB) = 573008 + +Test 039 regional_2threads PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_hafs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_hafs +Checking test 040 regional_hafs results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing HURPRS.GrbF00 .........OK + Comparing HURPRS.GrbF24 .........OK + +[0] The total amount of wall time = 348.476531 +[0] The maximum resident set size (KB) = 566352 + +Test 040 regional_hafs PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_netcdf_parallel +Checking test 041 regional_netcdf_parallel results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 345.300585 +[0] The maximum resident set size (KB) = 566876 + +Test 041 regional_netcdf_parallel PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_RRTMGP +Checking test 042 regional_RRTMGP results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf024.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf024.nc ............ALT CHECK......OK + Comparing PRSLEV.GrbF00 .........OK + Comparing PRSLEV.GrbF24 .........OK + Comparing NATLEV.GrbF00 .........OK + Comparing NATLEV.GrbF24 .........OK + +[0] The total amount of wall time = 455.267712 +[0] The maximum resident set size (KB) = 692380 + +Test 042 regional_RRTMGP PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_control +Checking test 043 rap_control results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -871,19 +987,16 @@ Checking test 015 cpld_debug_p8 results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2021-03-22-43200.nc .........OK - Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 703.345903 -[0] The maximum resident set size (KB) = 614884 +[0] The total amount of wall time = 396.343480 +[0] The maximum resident set size (KB) = 839120 -Test 015 cpld_debug_p8 PASS +Test 043 rap_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control -Checking test 016 control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_2threads +Checking test 044 rap_2threads results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -929,22 +1042,18 @@ Checking test 016 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 139.686990 -[0] The maximum resident set size (KB) = 472000 +[0] The total amount of wall time = 373.103515 +[0] The maximum resident set size (KB) = 899648 -Test 016 control PASS +Test 044 rap_2threads PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_decomp -Checking test 017 control_decomp results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_restart +Checking test 045 rap_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -979,22 +1088,26 @@ Checking test 017 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 146.105002 -[0] The maximum resident set size (KB) = 470704 +[0] The total amount of wall time = 204.395440 +[0] The maximum resident set size (KB) = 588924 -Test 017 control_decomp PASS +Test 045 rap_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_2threads -Checking test 018 control_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_sfcdiff +Checking test 046 rap_sfcdiff results .... Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK @@ -1029,15 +1142,15 @@ Checking test 018 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 129.713397 -[0] The maximum resident set size (KB) = 512644 +[0] The total amount of wall time = 396.120417 +[0] The maximum resident set size (KB) = 841872 -Test 018 control_2threads PASS +Test 046 rap_sfcdiff PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_restart -Checking test 019 control_restart results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_sfcdiff_restart +Checking test 047 rap_sfcdiff_restart results .... Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF24 .........OK @@ -1075,23 +1188,27 @@ Checking test 019 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 74.791637 -[0] The maximum resident set size (KB) = 213628 +[0] The total amount of wall time = 203.907171 +[0] The maximum resident set size (KB) = 592172 -Test 019 control_restart PASS +Test 047 rap_sfcdiff_restart PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_fhzero -Checking test 020 control_fhzero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hrrr_control +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/hrrr_control +Checking test 048 hrrr_control results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf021.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF21 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF21 .........OK + Comparing GFSPRS.GrbF24 .........OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1125,89 +1242,27 @@ Checking test 020 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.486117 -[0] The maximum resident set size (KB) = 472632 +[0] The total amount of wall time = 384.697856 +[0] The maximum resident set size (KB) = 835428 -Test 020 control_fhzero PASS +Test 048 hrrr_control PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_CubedSphereGrid -Checking test 021 control_CubedSphereGrid results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf024.tile1.nc .........OK - Comparing sfcf024.tile2.nc .........OK - Comparing sfcf024.tile3.nc .........OK - Comparing sfcf024.tile4.nc .........OK - Comparing sfcf024.tile5.nc .........OK - Comparing sfcf024.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf024.tile1.nc .........OK - Comparing atmf024.tile2.nc .........OK - Comparing atmf024.tile3.nc .........OK - Comparing atmf024.tile4.nc .........OK - Comparing atmf024.tile5.nc .........OK - Comparing atmf024.tile6.nc .........OK - -[0] The total amount of wall time = 136.825209 -[0] The maximum resident set size (KB) = 472428 - -Test 021 control_CubedSphereGrid PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_latlon -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_latlon -Checking test 022 control_latlon results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 137.987550 -[0] The maximum resident set size (KB) = 468372 - -Test 022 control_latlon PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_wrtGauss_netcdf_parallel -Checking test 023 control_wrtGauss_netcdf_parallel results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rrfs_v1beta +Checking test 049 rrfs_v1beta results .... Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf021.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK + Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK + Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - -[0] The total amount of wall time = 141.731245 -[0] The maximum resident set size (KB) = 471100 - -Test 023 control_wrtGauss_netcdf_parallel PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c48 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_c48 -Checking test 024 control_c48 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -1241,15 +1296,47 @@ Checking test 024 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 441.144207 -[0] The maximum resident set size (KB) = 661908 +[0] The total amount of wall time = 389.948983 +[0] The maximum resident set size (KB) = 836300 -Test 024 control_c48 PASS +Test 049 rrfs_v1beta PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c192 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_c192 -Checking test 025 control_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_hrrr_warm +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rrfs_conus13km_hrrr_warm +Checking test 050 rrfs_conus13km_hrrr_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 184.221315 +[0] The maximum resident set size (KB) = 658500 + +Test 050 rrfs_conus13km_hrrr_warm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_radar_tten_warm +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rrfs_conus13km_radar_tten_warm +Checking test 051 rrfs_conus13km_radar_tten_warm results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf002.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK + Comparing atmf002.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 187.416636 +[0] The maximum resident set size (KB) = 664760 + +Test 051 rrfs_conus13km_radar_tten_warm PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_rrtmgp +Checking test 052 control_rrtmgp results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -1259,15 +1346,15 @@ Checking test 025 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 554.679820 -[0] The maximum resident set size (KB) = 572988 +[0] The total amount of wall time = 226.138392 +[0] The maximum resident set size (KB) = 594872 -Test 025 control_c192 PASS +Test 052 control_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c384 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_c384 -Checking test 026 control_c384 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_rrtmgp_c192 +Checking test 053 control_rrtmgp_c192 results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf012.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -1277,215 +1364,105 @@ Checking test 026 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1030.846568 -[0] The maximum resident set size (KB) = 857712 +[0] The total amount of wall time = 611.681732 +[0] The maximum resident set size (KB) = 802268 -Test 026 control_c384 PASS +Test 053 control_rrtmgp_c192 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c384gdas -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_c384gdas -Checking test 027 control_c384gdas results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_csawmg +Checking test 054 control_csawmg results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF06 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF06 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 900.959275 -[0] The maximum resident set size (KB) = 996176 +[0] The total amount of wall time = 364.278193 +[0] The maximum resident set size (KB) = 530904 -Test 027 control_c384gdas PASS +Test 054 control_csawmg PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_stochy -Checking test 028 control_stochy results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_csawmgt +Checking test 055 control_csawmgt results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK - -[0] The total amount of wall time = 92.717483 -[0] The maximum resident set size (KB) = 474316 - -Test 028 control_stochy PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_stochy_restart -Checking test 029 control_stochy_restart results .... - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 51.298957 -[0] The maximum resident set size (KB) = 268556 +[0] The total amount of wall time = 366.544875 +[0] The maximum resident set size (KB) = 531504 -Test 029 control_stochy_restart PASS +Test 055 control_csawmgt PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_lndp -Checking test 030 control_lndp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_flake +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_flake +Checking test 056 control_flake results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK + Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK + Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 84.503980 -[0] The maximum resident set size (KB) = 473600 +[0] The total amount of wall time = 244.736888 +[0] The maximum resident set size (KB) = 542036 -Test 030 control_lndp PASS +Test 056 control_flake PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_p8 -Checking test 031 control_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_ras +Checking test 057 control_ras results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 154.726350 -[0] The maximum resident set size (KB) = 497164 +[0] The total amount of wall time = 192.811651 +[0] The maximum resident set size (KB) = 502372 -Test 031 control_p8 PASS +Test 057 control_ras PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_restart_p8 -Checking test 032 control_restart_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson +Checking test 058 control_thompson results .... + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK + Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK + Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 84.699673 -[0] The maximum resident set size (KB) = 313292 +[0] The total amount of wall time = 243.104413 +[0] The maximum resident set size (KB) = 855076 -Test 032 control_restart_p8 PASS +Test 058 control_thompson PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_decomp_p8 -Checking test 033 control_decomp_p8 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson_no_aero +Checking test 059 control_thompson_no_aero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK @@ -1494,1583 +1471,1347 @@ Checking test 033 control_decomp_p8 results .... Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 160.562424 -[0] The maximum resident set size (KB) = 488536 +[0] The total amount of wall time = 231.874157 +[0] The maximum resident set size (KB) = 848004 -Test 033 control_decomp_p8 PASS +Test 059 control_thompson_no_aero PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_2threads_p8 -Checking test 034 control_2threads_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_repro +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_wam_repro +Checking test 060 control_wam results .... Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 144.104537 -[0] The maximum resident set size (KB) = 560636 +[0] The total amount of wall time = 128.002110 +[0] The maximum resident set size (KB) = 235492 -Test 034 control_2threads_p8 PASS +Test 060 control_wam PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_p7_rrtmgp -Checking test 035 control_p7_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_debug +Checking test 061 control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK - -[0] The total amount of wall time = 204.875870 -[0] The maximum resident set size (KB) = 595344 - -Test 035 control_p7_rrtmgp PASS + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 168.559762 +[0] The maximum resident set size (KB) = 544832 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_control -Checking test 036 regional_control results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +Test 061 control_debug PASS -[0] The total amount of wall time = 349.109983 -[0] The maximum resident set size (KB) = 568244 -Test 036 regional_control PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_2threads_debug +Checking test 062 control_2threads_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 155.804768 +[0] The maximum resident set size (KB) = 585112 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_restart -Checking test 037 regional_restart results .... - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF24 .........OK +Test 062 control_2threads_debug PASS -[0] The total amount of wall time = 191.372118 -[0] The maximum resident set size (KB) = 572140 -Test 037 regional_restart PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_CubedSphereGrid_debug +Checking test 063 control_CubedSphereGrid_debug results .... + Comparing sfcf000.tile1.nc .........OK + Comparing sfcf000.tile2.nc .........OK + Comparing sfcf000.tile3.nc .........OK + Comparing sfcf000.tile4.nc .........OK + Comparing sfcf000.tile5.nc .........OK + Comparing sfcf000.tile6.nc .........OK + Comparing sfcf001.tile1.nc .........OK + Comparing sfcf001.tile2.nc .........OK + Comparing sfcf001.tile3.nc .........OK + Comparing sfcf001.tile4.nc .........OK + Comparing sfcf001.tile5.nc .........OK + Comparing sfcf001.tile6.nc .........OK + Comparing atmf000.tile1.nc .........OK + Comparing atmf000.tile2.nc .........OK + Comparing atmf000.tile3.nc .........OK + Comparing atmf000.tile4.nc .........OK + Comparing atmf000.tile5.nc .........OK + Comparing atmf000.tile6.nc .........OK + Comparing atmf001.tile1.nc .........OK + Comparing atmf001.tile2.nc .........OK + Comparing atmf001.tile3.nc .........OK + Comparing atmf001.tile4.nc .........OK + Comparing atmf001.tile5.nc .........OK + Comparing atmf001.tile6.nc .........OK +[0] The total amount of wall time = 181.812778 +[0] The maximum resident set size (KB) = 538608 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_noquilt -Checking test 038 regional_noquilt results .... - Comparing atmos_4xdaily.nc .........OK - Comparing fv3_history2d.nc .........OK - Comparing fv3_history.nc .........OK - Comparing RESTART/fv_core.res.tile1_new.nc .........OK - Comparing RESTART/fv_tracer.res.tile1_new.nc .........OK +Test 063 control_CubedSphereGrid_debug PASS -[0] The total amount of wall time = 368.531827 -[0] The maximum resident set size (KB) = 607508 -Test 038 regional_noquilt PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_wrtGauss_netcdf_parallel_debug +Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 170.778447 +[0] The maximum resident set size (KB) = 542776 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_2threads -Checking test 039 regional_2threads results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +Test 064 control_wrtGauss_netcdf_parallel_debug PASS -[0] The total amount of wall time = 197.171072 -[0] The maximum resident set size (KB) = 573788 -Test 039 regional_2threads PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_stochy_debug +Checking test 065 control_stochy_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 192.382155 +[0] The maximum resident set size (KB) = 547300 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_hafs -Checking test 040 regional_hafs results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing HURPRS.GrbF00 .........OK - Comparing HURPRS.GrbF24 .........OK +Test 065 control_stochy_debug PASS -[0] The total amount of wall time = 345.677109 -[0] The maximum resident set size (KB) = 568008 -Test 040 regional_hafs PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_lndp_debug +Checking test 066 control_lndp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 173.053549 +[0] The maximum resident set size (KB) = 542656 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_netcdf_parallel -Checking test 041 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK +Test 066 control_lndp_debug PASS -[0] The total amount of wall time = 344.752589 -[0] The maximum resident set size (KB) = 568192 -Test 041 regional_netcdf_parallel PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_rrtmgp_debug +Checking test 067 control_rrtmgp_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 187.452476 +[0] The maximum resident set size (KB) = 636360 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_RRTMGP -Checking test 042 regional_RRTMGP results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf024.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf024.nc ............ALT CHECK......OK - Comparing PRSLEV.GrbF00 .........OK - Comparing PRSLEV.GrbF24 .........OK - Comparing NATLEV.GrbF00 .........OK - Comparing NATLEV.GrbF24 .........OK +Test 067 control_rrtmgp_debug PASS -[0] The total amount of wall time = 454.711066 -[0] The maximum resident set size (KB) = 688596 -Test 042 regional_RRTMGP PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_csawmg_debug +Checking test 068 control_csawmg_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK +[0] The total amount of wall time = 269.479899 +[0] The maximum resident set size (KB) = 582904 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_control -Checking test 043 rap_control results .... +Test 068 control_csawmg_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_csawmgt_debug +Checking test 069 control_csawmgt_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 393.472336 -[0] The maximum resident set size (KB) = 841320 +[0] The total amount of wall time = 266.038120 +[0] The maximum resident set size (KB) = 577276 -Test 043 rap_control PASS +Test 069 control_csawmgt_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_2threads -Checking test 044 rap_2threads results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_ras_debug +Checking test 070 control_ras_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 373.244027 -[0] The maximum resident set size (KB) = 898556 +[0] The total amount of wall time = 175.318935 +[0] The maximum resident set size (KB) = 555304 -Test 044 rap_2threads PASS +Test 070 control_ras_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_restart -Checking test 045 rap_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_diag_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_diag_debug +Checking test 071 control_diag_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 201.163932 -[0] The maximum resident set size (KB) = 591204 +[0] The total amount of wall time = 178.102117 +[0] The maximum resident set size (KB) = 598584 -Test 045 rap_restart PASS +Test 071 control_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_sfcdiff -Checking test 046 rap_sfcdiff results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_debug_p8 +Checking test 072 control_debug_p8 results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 396.777956 -[0] The maximum resident set size (KB) = 842524 +[0] The total amount of wall time = 184.534890 +[0] The maximum resident set size (KB) = 557632 -Test 046 rap_sfcdiff PASS +Test 072 control_debug_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_sfcdiff_restart -Checking test 047 rap_sfcdiff_restart results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson_debug +Checking test 073 control_thompson_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 201.295373 -[0] The maximum resident set size (KB) = 589580 +[0] The total amount of wall time = 197.722795 +[0] The maximum resident set size (KB) = 902064 -Test 047 rap_sfcdiff_restart PASS +Test 073 control_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hrrr_control -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hrrr_control -Checking test 048 hrrr_control results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson_no_aero_debug +Checking test 074 control_thompson_no_aero_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 379.519879 -[0] The maximum resident set size (KB) = 840124 +[0] The total amount of wall time = 190.056214 +[0] The maximum resident set size (KB) = 898984 -Test 048 hrrr_control PASS +Test 074 control_thompson_no_aero_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rrfs_v1beta -Checking test 049 rrfs_v1beta results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug_extdiag +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson_extdiag_debug +Checking test 075 control_thompson_extdiag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf021.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf021.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF21 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF21 .........OK - Comparing GFSPRS.GrbF24 .........OK - Comparing RESTART/coupler.res .........OK - Comparing RESTART/fv_core.res.nc .........OK - Comparing RESTART/fv_core.res.tile1.nc .........OK - Comparing RESTART/fv_core.res.tile2.nc .........OK - Comparing RESTART/fv_core.res.tile3.nc .........OK - Comparing RESTART/fv_core.res.tile4.nc .........OK - Comparing RESTART/fv_core.res.tile5.nc .........OK - Comparing RESTART/fv_core.res.tile6.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK - Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK - Comparing RESTART/fv_tracer.res.tile1.nc .........OK - Comparing RESTART/fv_tracer.res.tile2.nc .........OK - Comparing RESTART/fv_tracer.res.tile3.nc .........OK - Comparing RESTART/fv_tracer.res.tile4.nc .........OK - Comparing RESTART/fv_tracer.res.tile5.nc .........OK - Comparing RESTART/fv_tracer.res.tile6.nc .........OK - Comparing RESTART/phy_data.tile1.nc .........OK - Comparing RESTART/phy_data.tile2.nc .........OK - Comparing RESTART/phy_data.tile3.nc .........OK - Comparing RESTART/phy_data.tile4.nc .........OK - Comparing RESTART/phy_data.tile5.nc .........OK - Comparing RESTART/phy_data.tile6.nc .........OK - Comparing RESTART/sfc_data.tile1.nc .........OK - Comparing RESTART/sfc_data.tile2.nc .........OK - Comparing RESTART/sfc_data.tile3.nc .........OK - Comparing RESTART/sfc_data.tile4.nc .........OK - Comparing RESTART/sfc_data.tile5.nc .........OK - Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 388.661316 -[0] The maximum resident set size (KB) = 839844 +[0] The total amount of wall time = 207.914174 +[0] The maximum resident set size (KB) = 931740 -Test 049 rrfs_v1beta PASS +Test 075 control_thompson_extdiag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_hrrr_warm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rrfs_conus13km_hrrr_warm -Checking test 050 rrfs_conus13km_hrrr_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_thompson_progcld_thompson_debug +Checking test 076 control_thompson_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK -[0] The total amount of wall time = 179.990834 -[0] The maximum resident set size (KB) = 660100 +[0] The total amount of wall time = 197.780720 +[0] The maximum resident set size (KB) = 901508 -Test 050 rrfs_conus13km_hrrr_warm PASS +Test 076 control_thompson_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_conus13km_radar_tten_warm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rrfs_conus13km_radar_tten_warm -Checking test 051 rrfs_conus13km_radar_tten_warm results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/regional_debug +Checking test 077 regional_debug results .... + Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf001.nc ............ALT CHECK......OK + Comparing phyf000.nc ............ALT CHECK......OK + Comparing phyf001.nc ............ALT CHECK......OK + +[0] The total amount of wall time = 282.839656 +[0] The maximum resident set size (KB) = 594412 + +Test 077 regional_debug PASS + + +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_control_debug +Checking test 078 rap_control_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing sfcf002.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK - Comparing atmf002.nc ............ALT CHECK......OK -[0] The total amount of wall time = 180.982917 -[0] The maximum resident set size (KB) = 666424 +[0] The total amount of wall time = 305.480003 +[0] The maximum resident set size (KB) = 904848 -Test 051 rrfs_conus13km_radar_tten_warm PASS +Test 078 rap_control_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_rrtmgp -Checking test 052 control_rrtmgp results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_unified_drag_suite_debug +Checking test 079 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 223.353332 -[0] The maximum resident set size (KB) = 588476 +[0] The total amount of wall time = 305.750183 +[0] The maximum resident set size (KB) = 904556 -Test 052 control_rrtmgp PASS +Test 079 rap_unified_drag_suite_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_rrtmgp_c192 -Checking test 053 control_rrtmgp_c192 results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_diag_debug +Checking test 080 rap_diag_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 606.730109 -[0] The maximum resident set size (KB) = 800380 +[0] The total amount of wall time = 322.213782 +[0] The maximum resident set size (KB) = 992280 -Test 053 control_rrtmgp_c192 PASS +Test 080 rap_diag_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_csawmg -Checking test 054 control_csawmg results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_cires_ugwp_debug +Checking test 081 rap_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 364.916441 -[0] The maximum resident set size (KB) = 532364 +[0] The total amount of wall time = 312.580949 +[0] The maximum resident set size (KB) = 907292 -Test 054 control_csawmg PASS +Test 081 rap_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_csawmgt -Checking test 055 control_csawmgt results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_unified_ugwp_debug +Checking test 082 rap_unified_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 361.247962 -[0] The maximum resident set size (KB) = 532412 +[0] The total amount of wall time = 313.421294 +[0] The maximum resident set size (KB) = 906336 -Test 055 control_csawmgt PASS +Test 082 rap_unified_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_flake -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_flake -Checking test 056 control_flake results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_noah_debug +Checking test 083 rap_noah_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 246.856289 -[0] The maximum resident set size (KB) = 539508 +[0] The total amount of wall time = 302.765332 +[0] The maximum resident set size (KB) = 904936 -Test 056 control_flake PASS +Test 083 rap_noah_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_ras -Checking test 057 control_ras results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_rrtmgp_debug +Checking test 084 rap_rrtmgp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 190.860187 -[0] The maximum resident set size (KB) = 502016 +[0] The total amount of wall time = 521.069391 +[0] The maximum resident set size (KB) = 1006344 -Test 057 control_ras PASS +Test 084 rap_rrtmgp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson -Checking test 058 control_thompson results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_lndp_debug +Checking test 085 rap_lndp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 241.838700 -[0] The maximum resident set size (KB) = 854136 +[0] The total amount of wall time = 307.768019 +[0] The maximum resident set size (KB) = 908468 -Test 058 control_thompson PASS +Test 085 rap_lndp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson_no_aero -Checking test 059 control_thompson_no_aero results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_sfcdiff_debug +Checking test 086 rap_sfcdiff_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF24 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF24 .........OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 230.626857 -[0] The maximum resident set size (KB) = 848872 +[0] The total amount of wall time = 305.900306 +[0] The maximum resident set size (KB) = 904708 -Test 059 control_thompson_no_aero PASS +Test 086 rap_sfcdiff_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_repro -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_wam_repro -Checking test 060 control_wam results .... - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf024.nc ............ALT CHECK......OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_flake_debug +Checking test 087 rap_flake_debug results .... + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf001.nc ............ALT CHECK......OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 126.932129 -[0] The maximum resident set size (KB) = 234388 +[0] The total amount of wall time = 304.612226 +[0] The maximum resident set size (KB) = 907272 -Test 060 control_wam PASS +Test 087 rap_flake_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_debug -Checking test 061 control_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_noah_sfcdiff_cires_ugwp_debug +Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 166.000430 -[0] The maximum resident set size (KB) = 540228 +[0] The total amount of wall time = 508.704847 +[0] The maximum resident set size (KB) = 908508 -Test 061 control_debug PASS +Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_2threads_debug -Checking test 062 control_2threads_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_progcld_thompson_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rap_progcld_thompson_debug +Checking test 089 rap_progcld_thompson_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 153.886153 -[0] The maximum resident set size (KB) = 582544 +[0] The total amount of wall time = 305.779925 +[0] The maximum resident set size (KB) = 908160 -Test 062 control_2threads_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_CubedSphereGrid_debug -Checking test 063 control_CubedSphereGrid_debug results .... - Comparing sfcf000.tile1.nc .........OK - Comparing sfcf000.tile2.nc .........OK - Comparing sfcf000.tile3.nc .........OK - Comparing sfcf000.tile4.nc .........OK - Comparing sfcf000.tile5.nc .........OK - Comparing sfcf000.tile6.nc .........OK - Comparing sfcf001.tile1.nc .........OK - Comparing sfcf001.tile2.nc .........OK - Comparing sfcf001.tile3.nc .........OK - Comparing sfcf001.tile4.nc .........OK - Comparing sfcf001.tile5.nc .........OK - Comparing sfcf001.tile6.nc .........OK - Comparing atmf000.tile1.nc .........OK - Comparing atmf000.tile2.nc .........OK - Comparing atmf000.tile3.nc .........OK - Comparing atmf000.tile4.nc .........OK - Comparing atmf000.tile5.nc .........OK - Comparing atmf000.tile6.nc .........OK - Comparing atmf001.tile1.nc .........OK - Comparing atmf001.tile2.nc .........OK - Comparing atmf001.tile3.nc .........OK - Comparing atmf001.tile4.nc .........OK - Comparing atmf001.tile5.nc .........OK - Comparing atmf001.tile6.nc .........OK - -[0] The total amount of wall time = 180.922297 -[0] The maximum resident set size (KB) = 541128 - -Test 063 control_CubedSphereGrid_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_wrtGauss_netcdf_parallel_debug -Checking test 064 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 169.808902 -[0] The maximum resident set size (KB) = 542500 - -Test 064 control_wrtGauss_netcdf_parallel_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_stochy_debug -Checking test 065 control_stochy_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 191.580755 -[0] The maximum resident set size (KB) = 544500 - -Test 065 control_stochy_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_lndp_debug -Checking test 066 control_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 171.020146 -[0] The maximum resident set size (KB) = 547264 - -Test 066 control_lndp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_rrtmgp_debug -Checking test 067 control_rrtmgp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 185.470177 -[0] The maximum resident set size (KB) = 638132 - -Test 067 control_rrtmgp_debug PASS +Test 089 rap_progcld_thompson_debug PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_csawmg_debug -Checking test 068 control_csawmg_debug results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/rrfs_v1beta_debug +Checking test 090 rrfs_v1beta_debug results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc ............ALT CHECK......OK Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 267.114818 -[0] The maximum resident set size (KB) = 576180 - -Test 068 control_csawmg_debug PASS - +[0] The total amount of wall time = 304.096117 +[0] The maximum resident set size (KB) = 903460 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_csawmgt_debug -Checking test 069 control_csawmgt_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 090 rrfs_v1beta_debug PASS -[0] The total amount of wall time = 262.721680 -[0] The maximum resident set size (KB) = 576496 -Test 069 control_csawmgt_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_debug +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/control_wam_debug +Checking test 091 control_wam_debug results .... + Comparing sfcf019.nc ............ALT CHECK......OK + Comparing atmf019.nc ............ALT CHECK......OK +[0] The total amount of wall time = 324.299828 +[0] The maximum resident set size (KB) = 257664 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_ras_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_ras_debug -Checking test 070 control_ras_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 091 control_wam_debug PASS -[0] The total amount of wall time = 172.892107 -[0] The maximum resident set size (KB) = 554244 -Test 070 control_ras_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_control_cfsr +Checking test 104 datm_cdeps_control_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2011-10-02-00000.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK +[0] The total amount of wall time = 180.639467 +[0] The maximum resident set size (KB) = 725048 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_diag_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_diag_debug -Checking test 071 control_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 104 datm_cdeps_control_cfsr PASS -[0] The total amount of wall time = 176.371670 -[0] The maximum resident set size (KB) = 596552 -Test 071 control_diag_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_restart_cfsr +Checking test 105 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 = 120.538745 +[0] The maximum resident set size (KB) = 725040 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_debug_p8 -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_debug_p8 -Checking test 072 control_debug_p8 results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 105 datm_cdeps_restart_cfsr PASS -[0] The total amount of wall time = 181.845096 -[0] The maximum resident set size (KB) = 562832 -Test 072 control_debug_p8 PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_control_gefs +Checking test 106 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 = 169.925249 +[0] The maximum resident set size (KB) = 625964 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson_debug -Checking test 073 control_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 106 datm_cdeps_control_gefs PASS -[0] The total amount of wall time = 195.621122 -[0] The maximum resident set size (KB) = 905564 -Test 073 control_thompson_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_stochy_gefs +Checking test 107 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.516581 +[0] The maximum resident set size (KB) = 625840 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson_no_aero_debug -Checking test 074 control_thompson_no_aero_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 107 datm_cdeps_stochy_gefs PASS -[0] The total amount of wall time = 188.602629 -[0] The maximum resident set size (KB) = 895844 -Test 074 control_thompson_no_aero_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_bulk_cfsr +Checking test 108 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 = 174.203550 +[0] The maximum resident set size (KB) = 725748 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson_extdiag_debug -Checking test 075 control_thompson_extdiag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 108 datm_cdeps_bulk_cfsr PASS -[0] The total amount of wall time = 205.442367 -[0] The maximum resident set size (KB) = 931996 -Test 075 control_thompson_extdiag_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_bulk_gefs +Checking test 109 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.686701 +[0] The maximum resident set size (KB) = 628296 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_thompson_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_thompson_progcld_thompson_debug -Checking test 076 control_thompson_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 109 datm_cdeps_bulk_gefs PASS -[0] The total amount of wall time = 195.513076 -[0] The maximum resident set size (KB) = 898476 -Test 076 control_thompson_progcld_thompson_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_mx025_cfsr +Checking test 110 datm_cdeps_mx025_cfsr results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK +[0] The total amount of wall time = 374.521439 +[0] The maximum resident set size (KB) = 576024 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/regional_debug -Checking test 077 regional_debug results .... - Comparing dynf000.nc ............ALT CHECK......OK - Comparing dynf001.nc ............ALT CHECK......OK - Comparing phyf000.nc ............ALT CHECK......OK - Comparing phyf001.nc ............ALT CHECK......OK +Test 110 datm_cdeps_mx025_cfsr PASS -[0] The total amount of wall time = 282.305931 -[0] The maximum resident set size (KB) = 597080 -Test 077 regional_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_mx025_gefs +Checking test 111 datm_cdeps_mx025_gefs results .... + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2011-10-01-43200.nc .........OK + Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK +[0] The total amount of wall time = 361.903824 +[0] The maximum resident set size (KB) = 543164 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_control_debug -Checking test 078 rap_control_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 111 datm_cdeps_mx025_gefs PASS -[0] The total amount of wall time = 303.607352 -[0] The maximum resident set size (KB) = 909016 -Test 078 rap_control_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_multiple_files_cfsr +Checking test 112 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 = 176.455639 +[0] The maximum resident set size (KB) = 725404 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_control_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_unified_drag_suite_debug -Checking test 079 rap_unified_drag_suite_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 112 datm_cdeps_multiple_files_cfsr PASS -[0] The total amount of wall time = 303.357863 -[0] The maximum resident set size (KB) = 907104 -Test 079 rap_unified_drag_suite_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_3072x1536_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_3072x1536_cfsr +Checking test 113 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.017215 +[0] The maximum resident set size (KB) = 1897648 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_diag_debug -Checking test 080 rap_diag_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 113 datm_cdeps_3072x1536_cfsr PASS -[0] The total amount of wall time = 320.084357 -[0] The maximum resident set size (KB) = 986772 -Test 080 rap_diag_debug PASS +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_15100/datm_cdeps_debug_cfsr +Checking test 114 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 = 501.898758 +[0] The maximum resident set size (KB) = 726676 -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_cires_ugwp_debug -Checking test 081 rap_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK +Test 114 datm_cdeps_debug_cfsr PASS -[0] The total amount of wall time = 311.538872 -[0] The maximum resident set size (KB) = 908400 +FAILED TESTS: +Test compile_001 failed in run_compile failed -Test 081 rap_cires_ugwp_debug PASS +REGRESSION TEST FAILED +Wed Jan 26 17:30:01 UTC 2022 +Elapsed time: 00h:46m:44s. Have a nice day! +Wed Jan 26 18:33:46 UTC 2022 +Start Regression test +Compile 001 elapsed time 1951 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp,FV3_GFS_v16_coupled_p8 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_unified_ugwp_debug -Checking test 082 rap_unified_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 309.920231 -[0] The maximum resident set size (KB) = 906848 - -Test 082 rap_unified_ugwp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_noah_debug -Checking test 083 rap_noah_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 299.972213 -[0] The maximum resident set size (KB) = 909172 - -Test 083 rap_noah_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_rrtmgp_debug -Checking test 084 rap_rrtmgp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 518.818245 -[0] The maximum resident set size (KB) = 1005952 - -Test 084 rap_rrtmgp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_lndp_debug -Checking test 085 rap_lndp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 306.251196 -[0] The maximum resident set size (KB) = 912252 - -Test 085 rap_lndp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_sfcdiff_debug -Checking test 086 rap_sfcdiff_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 303.934681 -[0] The maximum resident set size (KB) = 904452 - -Test 086 rap_sfcdiff_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_flake_debug -Checking test 087 rap_flake_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 303.991176 -[0] The maximum resident set size (KB) = 905156 - -Test 087 rap_flake_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_noah_sfcdiff_cires_ugwp_debug -Checking test 088 rap_noah_sfcdiff_cires_ugwp_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 507.863418 -[0] The maximum resident set size (KB) = 908840 - -Test 088 rap_noah_sfcdiff_cires_ugwp_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rap_progcld_thompson_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rap_progcld_thompson_debug -Checking test 089 rap_progcld_thompson_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 304.692971 -[0] The maximum resident set size (KB) = 910000 - -Test 089 rap_progcld_thompson_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/rrfs_v1beta_debug -Checking test 090 rrfs_v1beta_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 302.225736 -[0] The maximum resident set size (KB) = 906032 - -Test 090 rrfs_v1beta_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_wam_debug -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_wam_debug -Checking test 091 control_wam_debug results .... - Comparing sfcf019.nc ............ALT CHECK......OK - Comparing atmf019.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 322.397397 -[0] The maximum resident set size (KB) = 261448 - -Test 091 control_wam_debug PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_atm -Checking test 092 hafs_regional_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 600.921014 -[0] The maximum resident set size (KB) = 732028 - -Test 092 hafs_regional_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_thompson_gfdlsf -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_atm_thompson_gfdlsf -Checking test 093 hafs_regional_atm_thompson_gfdlsf results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 597.887856 -[0] The maximum resident set size (KB) = 1086536 - -Test 093 hafs_regional_atm_thompson_gfdlsf PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_atm_ocn -Checking test 094 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - -[0] The total amount of wall time = 594.335809 -[0] The maximum resident set size (KB) = 737064 - -Test 094 hafs_regional_atm_ocn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_atm_wav -Checking test 095 hafs_regional_atm_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -[0] The total amount of wall time = 984.492785 -[0] The maximum resident set size (KB) = 741876 - -Test 095 hafs_regional_atm_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_atm_ocn_wav -Checking test 096 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing archv.2019_241_06.a .........OK - Comparing archs.2019_241_06.a .........OK - Comparing out_grd.ww3 .........OK - Comparing out_pnt.ww3 .........OK - -[0] The total amount of wall time = 1043.866376 -[0] The maximum resident set size (KB) = 745772 - -Test 096 hafs_regional_atm_ocn_wav PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_1nest_atm -Checking test 097 hafs_regional_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 384.670624 -[0] The maximum resident set size (KB) = 305016 - -Test 097 hafs_regional_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_telescopic_2nests_atm -Checking test 098 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 668.027207 -[0] The maximum resident set size (KB) = 314420 - -Test 098 hafs_regional_telescopic_2nests_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_global_1nest_atm -Checking test 099 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 649.169088 -[0] The maximum resident set size (KB) = 211084 - -Test 099 hafs_global_1nest_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_global_multiple_4nests_atm -Checking test 100 hafs_global_multiple_4nests_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - -[0] The total amount of wall time = 661.268040 -[0] The maximum resident set size (KB) = 256580 - -Test 100 hafs_global_multiple_4nests_atm PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_docn -Checking test 101 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - -[0] The total amount of wall time = 591.704556 -[0] The maximum resident set size (KB) = 740508 - -Test 101 hafs_regional_docn PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_docn_oisst -Checking test 102 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK - Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_control_p8 +Checking test 001 cpld_control_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_grd.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.points .........OK + Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 590.733682 -[0] The maximum resident set size (KB) = 742968 +[0] The total amount of wall time = 245.545232 +[0] The maximum resident set size (KB) = 556488 -Test 102 hafs_regional_docn_oisst PASS +Test 001 cpld_control_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/hafs_regional_datm_cdeps -Checking test 103 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 +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_2threads_p8 +Checking test 002 cpld_2threads_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_grd.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.points .........OK + Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 1085.827585 -[0] The maximum resident set size (KB) = 896932 +[0] The total amount of wall time = 229.015369 +[0] The maximum resident set size (KB) = 645868 -Test 103 hafs_regional_datm_cdeps PASS +Test 002 cpld_2threads_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_control_cfsr -Checking test 104 datm_cdeps_control_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_decomp_p8 +Checking test 003 cpld_decomp_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_grd.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.points .........OK + Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 171.990184 -[0] The maximum resident set size (KB) = 723208 +[0] The total amount of wall time = 244.065438 +[0] The maximum resident set size (KB) = 555136 -Test 104 datm_cdeps_control_cfsr PASS +Test 003 cpld_decomp_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_restart_cfsr -Checking test 105 datm_cdeps_restart_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_mpi_p8 +Checking test 004 cpld_mpi_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_grd.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.points .........OK + Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 115.970557 -[0] The maximum resident set size (KB) = 723560 +[0] The total amount of wall time = 208.424714 +[0] The maximum resident set size (KB) = 547100 -Test 105 datm_cdeps_restart_cfsr PASS +Test 004 cpld_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_control_gefs -Checking test 106 datm_cdeps_control_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_control_p7_rrtmgp +Checking test 005 cpld_control_p7_rrtmgp results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK + Comparing 20210323.060000.out_grd.glo_1deg .........OK + Comparing 20210323.060000.out_pnt.points .........OK + Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 164.393904 -[0] The maximum resident set size (KB) = 626508 +[0] The total amount of wall time = 287.946737 +[0] The maximum resident set size (KB) = 659280 -Test 106 datm_cdeps_control_gefs PASS +Test 005 cpld_control_p7_rrtmgp PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_stochy_gefs -Checking test 107 datm_cdeps_stochy_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p7 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_bmark_p7 +Checking test 006 cpld_bmark_p7 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 165.310807 -[0] The maximum resident set size (KB) = 629300 +[0] The total amount of wall time = 1046.998655 +[0] The maximum resident set size (KB) = 1273048 -Test 107 datm_cdeps_stochy_gefs PASS +Test 006 cpld_bmark_p7 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_bulk_cfsr -Checking test 108 datm_cdeps_bulk_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_bmark_p8 +Checking test 007 cpld_bmark_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 170.319133 -[0] The maximum resident set size (KB) = 724448 +[0] The total amount of wall time = 1040.973486 +[0] The maximum resident set size (KB) = 1276588 -Test 108 datm_cdeps_bulk_cfsr PASS +Test 007 cpld_bmark_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_bulk_gefs -Checking test 109 datm_cdeps_bulk_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_bmark_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_bmark_mpi_p8 +Checking test 008 cpld_bmark_mpi_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK + Comparing 20130401.060000.out_grd.gwes_30m .........OK + Comparing 20130401.060000.out_pnt.points .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2013-04-01-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2013-04-01-21600.nc .........OK -[0] The total amount of wall time = 163.023428 -[0] The maximum resident set size (KB) = 627916 +[0] The total amount of wall time = 983.112395 +[0] The maximum resident set size (KB) = 1281728 -Test 109 datm_cdeps_bulk_gefs PASS +Test 008 cpld_bmark_mpi_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_mx025_cfsr -Checking test 110 datm_cdeps_mx025_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_control_c96_p8 +Checking test 009 cpld_control_c96_p8 results .... + Comparing sfcf021.tile1.nc .........OK + Comparing sfcf021.tile2.nc .........OK + Comparing sfcf021.tile3.nc .........OK + Comparing sfcf021.tile4.nc .........OK + Comparing sfcf021.tile5.nc .........OK + Comparing sfcf021.tile6.nc .........OK + Comparing atmf021.tile1.nc .........OK + Comparing atmf021.tile2.nc .........OK + Comparing atmf021.tile3.nc .........OK + Comparing atmf021.tile4.nc .........OK + Comparing atmf021.tile5.nc .........OK + Comparing atmf021.tile6.nc .........OK + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.2011-10-01-43200.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 340.764234 -[0] The maximum resident set size (KB) = 574880 +[0] The total amount of wall time = 232.589485 +[0] The maximum resident set size (KB) = 553860 -Test 110 datm_cdeps_mx025_cfsr PASS +Test 009 cpld_control_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_mx025_gefs -Checking test 111 datm_cdeps_mx025_gefs results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c96_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_restart_c96_p8 +Checking test 010 cpld_restart_c96_p8 results .... + Comparing sfcf024.tile1.nc .........OK + Comparing sfcf024.tile2.nc .........OK + Comparing sfcf024.tile3.nc .........OK + Comparing sfcf024.tile4.nc .........OK + Comparing sfcf024.tile5.nc .........OK + Comparing sfcf024.tile6.nc .........OK + Comparing atmf024.tile1.nc .........OK + Comparing atmf024.tile2.nc .........OK + Comparing atmf024.tile3.nc .........OK + Comparing atmf024.tile4.nc .........OK + Comparing atmf024.tile5.nc .........OK + Comparing atmf024.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/MOM.res_1.nc .........OK - Comparing RESTART/MOM.res_2.nc .........OK - Comparing RESTART/MOM.res_3.nc .........OK - Comparing RESTART/iced.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 = 337.529020 -[0] The maximum resident set size (KB) = 540748 - -Test 111 datm_cdeps_mx025_gefs PASS - - -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_multiple_files_cfsr -Checking test 112 datm_cdeps_multiple_files_cfsr results .... - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-21600.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK -[0] The total amount of wall time = 169.739671 -[0] The maximum resident set size (KB) = 723320 +[0] The total amount of wall time = 126.253547 +[0] The maximum resident set size (KB) = 341548 -Test 112 datm_cdeps_multiple_files_cfsr PASS +Test 010 cpld_restart_c96_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_3072x1536_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_3072x1536_cfsr -Checking test 113 datm_cdeps_3072x1536_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_control_c192_p8 +Checking test 011 cpld_control_c192_p8 results .... + Comparing sfcf036.tile1.nc .........OK + Comparing sfcf036.tile2.nc .........OK + Comparing sfcf036.tile3.nc .........OK + Comparing sfcf036.tile4.nc .........OK + Comparing sfcf036.tile5.nc .........OK + Comparing sfcf036.tile6.nc .........OK + Comparing atmf036.tile1.nc .........OK + Comparing atmf036.tile2.nc .........OK + Comparing atmf036.tile3.nc .........OK + Comparing atmf036.tile4.nc .........OK + Comparing atmf036.tile5.nc .........OK + Comparing atmf036.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-02-00000.nc .........OK - Comparing RESTART/DATM_CFSR3072x1536.cpl.r.2011-10-02-00000.nc .........OK + Comparing RESTART/iced.2021-03-23-64800.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 248.986942 -[0] The maximum resident set size (KB) = 1836184 +[0] The total amount of wall time = 989.515403 +[0] The maximum resident set size (KB) = 746044 -Test 113 datm_cdeps_3072x1536_cfsr PASS +Test 011 cpld_control_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/datm_cdeps_debug_cfsr -Checking test 114 datm_cdeps_debug_cfsr results .... +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c192_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_restart_c192_p8 +Checking test 012 cpld_restart_c192_p8 results .... + Comparing sfcf036.tile1.nc .........OK + Comparing sfcf036.tile2.nc .........OK + Comparing sfcf036.tile3.nc .........OK + Comparing sfcf036.tile4.nc .........OK + Comparing sfcf036.tile5.nc .........OK + Comparing sfcf036.tile6.nc .........OK + Comparing atmf036.tile1.nc .........OK + Comparing atmf036.tile2.nc .........OK + Comparing atmf036.tile3.nc .........OK + Comparing atmf036.tile4.nc .........OK + Comparing atmf036.tile5.nc .........OK + Comparing atmf036.tile6.nc .........OK + Comparing RESTART/coupler.res .........OK + Comparing RESTART/fv_core.res.nc .........OK + Comparing RESTART/fv_core.res.tile1.nc .........OK + Comparing RESTART/fv_core.res.tile2.nc .........OK + Comparing RESTART/fv_core.res.tile3.nc .........OK + Comparing RESTART/fv_core.res.tile4.nc .........OK + Comparing RESTART/fv_core.res.tile5.nc .........OK + Comparing RESTART/fv_core.res.tile6.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile1.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile2.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile3.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile4.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile5.nc .........OK + Comparing RESTART/fv_srf_wnd.res.tile6.nc .........OK + Comparing RESTART/fv_tracer.res.tile1.nc .........OK + Comparing RESTART/fv_tracer.res.tile2.nc .........OK + Comparing RESTART/fv_tracer.res.tile3.nc .........OK + Comparing RESTART/fv_tracer.res.tile4.nc .........OK + Comparing RESTART/fv_tracer.res.tile5.nc .........OK + Comparing RESTART/fv_tracer.res.tile6.nc .........OK + Comparing RESTART/phy_data.tile1.nc .........OK + Comparing RESTART/phy_data.tile2.nc .........OK + Comparing RESTART/phy_data.tile3.nc .........OK + Comparing RESTART/phy_data.tile4.nc .........OK + Comparing RESTART/phy_data.tile5.nc .........OK + Comparing RESTART/phy_data.tile6.nc .........OK + Comparing RESTART/sfc_data.tile1.nc .........OK + Comparing RESTART/sfc_data.tile2.nc .........OK + Comparing RESTART/sfc_data.tile3.nc .........OK + Comparing RESTART/sfc_data.tile4.nc .........OK + Comparing RESTART/sfc_data.tile5.nc .........OK + Comparing RESTART/sfc_data.tile6.nc .........OK Comparing RESTART/MOM.res.nc .........OK - Comparing RESTART/iced.2011-10-01-21600.nc .........OK - Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK + Comparing RESTART/iced.2021-03-23-64800.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-64800.nc .........OK -[0] The total amount of wall time = 497.026082 -[0] The maximum resident set size (KB) = 728760 +[0] The total amount of wall time = 618.497065 +[0] The maximum resident set size (KB) = 832584 -Test 114 datm_cdeps_debug_cfsr PASS +Test 012 cpld_restart_c192_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_atmwav -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_atmwav -Checking test 115 control_atmwav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf012.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf012.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF12 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF12 .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_control_c384_p8 +Checking test 013 cpld_control_c384_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3103,25 +2844,24 @@ Checking test 115 control_atmwav results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.180000.restart.glo_1deg .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2021-03-22-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 92.889192 -[0] The maximum resident set size (KB) = 489456 +[0] The total amount of wall time = 1107.051002 +[0] The maximum resident set size (KB) = 1279072 -Test 115 control_atmwav PASS +Test 013 cpld_control_c384_p8 PASS -baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_49827/control_c384gdas_wav -Checking test 116 control_c384gdas_wav results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf003.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf003.nc ............ALT CHECK......OK - Comparing GFSFLX.GrbF00 .........OK - Comparing GFSFLX.GrbF03 .........OK - Comparing GFSPRS.GrbF00 .........OK - Comparing GFSPRS.GrbF03 .........OK +baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20220121/cpld_control_c384_p8 +working dir = /gpfs/dell2/ptmp/Jun.Wang/FV3_RT/rt_54135/cpld_restart_c384_p8 +Checking test 014 cpld_restart_c384_p8 results .... + Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing RESTART/coupler.res .........OK Comparing RESTART/fv_core.res.nc .........OK Comparing RESTART/fv_core.res.tile1.nc .........OK @@ -3154,16 +2894,19 @@ Checking test 116 control_c384gdas_wav results .... Comparing RESTART/sfc_data.tile4.nc .........OK Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - Comparing 20210322.030000.restart.aoc_9km .........OK - Comparing 20210322.030000.restart.gnh_10m .........OK - Comparing 20210322.030000.restart.gsh_15m .........OK + Comparing RESTART/MOM.res.nc .........OK + Comparing RESTART/MOM.res_1.nc .........OK + Comparing RESTART/MOM.res_2.nc .........OK + Comparing RESTART/MOM.res_3.nc .........OK + Comparing RESTART/iced.2021-03-22-43200.nc .........OK + Comparing RESTART/ufs.cpld.cpl.r.2021-03-22-43200.nc .........OK -[0] The total amount of wall time = 608.425491 -[0] The maximum resident set size (KB) = 1050444 +[0] The total amount of wall time = 598.418750 +[0] The maximum resident set size (KB) = 1238840 -Test 116 control_c384gdas_wav PASS +Test 014 cpld_restart_c384_p8 PASS REGRESSION TEST WAS SUCCESSFUL -Wed Jan 26 00:31:41 UTC 2022 -Elapsed time: 01h:49m:02s. Have a nice day! +Wed Jan 26 22:09:52 UTC 2022 +Elapsed time: 03h:36m:08s. Have a nice day! diff --git a/tests/ci/Dockerfile b/tests/ci/Dockerfile index 80be6c842e..7ee24a4c6f 100644 --- a/tests/ci/Dockerfile +++ b/tests/ci/Dockerfile @@ -1,4 +1,4 @@ -From noaaemc/ubuntu-hpc:v1.7b +From noaaemc/ubuntu-hpc:v1.8b ENV HOME=/home/builder COPY --chown=builder:builder . $HOME/ufs-weather-model diff --git a/tests/ci/ci.sh b/tests/ci/ci.sh index 4f1052ad4d..b843f8baf1 100755 --- a/tests/ci/ci.sh +++ b/tests/ci/ci.sh @@ -81,7 +81,7 @@ elif [ $RUN == "true" ]; then -e "RT_MACHINE=linux.gnu" -e "RT_COMPILER=gnu" \ -w "/home/builder/ufs-weather-model/tests" \ -v DataVolume:/home/builder/data/NEMSfv3gfs \ - --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.7b \ + --shm-size=512m --name my-container noaaemc/ubuntu-hpc:v1.8b \ /bin/bash -c "./opnReqTest -n ${TEST_NAME} -c ${TEST_CASE} -x" cd $GITHUB_WORKSPACE diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index e576d34a7a..8a16417183 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -1,4 +1,3 @@ -print_esmf: .true. start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] @@ -6,8 +5,6 @@ start_hour: @[SHOUR] start_minute: 0 start_second: 0 nhours_fcst: @[FHMAX] -RUN_CONTINUE: .false. -ENS_SPS: .false. dt_atmos: @[DT_ATMOS] calendar: 'julian' fhrot: @[FHROT] diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index 61159dcd19..61641bcea7 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -1,4 +1,3 @@ -print_esmf: .true. start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] diff --git a/tests/parm/model_configure_fhout.IN b/tests/parm/model_configure_fhout.IN index 76bee9b6e1..8fb5493018 100644 --- a/tests/parm/model_configure_fhout.IN +++ b/tests/parm/model_configure_fhout.IN @@ -1,5 +1,3 @@ -total_member: @[ENS_NUM] -print_esmf: .true. PE_MEMBER01: @[TASKS] start_year: @[SYEAR] start_month: @[SMONTH] diff --git a/tests/parm/model_configure_hafs.IN b/tests/parm/model_configure_hafs.IN index 748eeb7637..2f2eeb3321 100644 --- a/tests/parm/model_configure_hafs.IN +++ b/tests/parm/model_configure_hafs.IN @@ -1,4 +1,3 @@ -print_esmf: .true. start_year: 2018 start_month: 10 start_day: 15 diff --git a/tests/parm/model_configure_hafs_shared.IN b/tests/parm/model_configure_hafs_shared.IN index 61af2abd35..3036de3d45 100644 --- a/tests/parm/model_configure_hafs_shared.IN +++ b/tests/parm/model_configure_hafs_shared.IN @@ -1,4 +1,3 @@ -print_esmf: .false. start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] diff --git a/tests/parm/model_configure_regional.IN b/tests/parm/model_configure_regional.IN index 474b7fac8c..17a97c6be3 100644 --- a/tests/parm/model_configure_regional.IN +++ b/tests/parm/model_configure_regional.IN @@ -1,4 +1,3 @@ -print_esmf: .true. start_year: 2018 start_month: 10 start_day: 15 @@ -9,7 +8,6 @@ nhours_fcst: @[FHMAX] fhrot: @[FHROT] dt_atmos: 225 -cpl: .false. calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. diff --git a/tests/parm/model_configure_rrfs_conus13km.IN b/tests/parm/model_configure_rrfs_conus13km.IN index 5b40086181..800162c727 100644 --- a/tests/parm/model_configure_rrfs_conus13km.IN +++ b/tests/parm/model_configure_rrfs_conus13km.IN @@ -1,4 +1,3 @@ -total_member: 1 start_year: @[SYEAR] start_month: @[SMONTH] start_day: @[SDAY] @@ -12,12 +11,6 @@ calendar: 'julian' restart_interval: @[RESTART_INTERVAL] output_1st_tstep_rst: .false. -memuse_verbose: .false. -print_esmf: .true. -RUN_CONTINUE: .false. -ENS_SPS: .false. -cpl: .false. - quilting: @[QUILTING] write_groups: @[WRITE_GROUP] write_tasks_per_group: @[WRTTASK_PER_GROUP] diff --git a/tests/parm/nems.configure b/tests/parm/nems.configure index b4a6cfd655..e8dadbe9eb 100644 --- a/tests/parm/nems.configure +++ b/tests/parm/nems.configure @@ -1,3 +1,4 @@ + logKindFlag: ESMF_LOGKIND_MULTI EARTH_component_list: ATM ATM_model: fv3 runSeq:: diff --git a/tests/parm/nems.configure.atm_aerosols.IN b/tests/parm/nems.configure.atm_aerosols.IN index cbf9bd856d..cee9daf9b1 100644 --- a/tests/parm/nems.configure.atm_aerosols.IN +++ b/tests/parm/nems.configure.atm_aerosols.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: ATM CHM EARTH_attributes:: diff --git a/tests/parm/nems.configure.blocked_atm_wav.IN b/tests/parm/nems.configure.blocked_atm_wav.IN index 56dcdbb87f..5e0c0ad702 100644 --- a/tests/parm/nems.configure.blocked_atm_wav.IN +++ b/tests/parm/nems.configure.blocked_atm_wav.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: ATM WAV EARTH_attributes:: diff --git a/tests/parm/nems.configure.blocked_atm_wav_2way.IN b/tests/parm/nems.configure.blocked_atm_wav_2way.IN index 9fb0351deb..0e4e84dfff 100644 --- a/tests/parm/nems.configure.blocked_atm_wav_2way.IN +++ b/tests/parm/nems.configure.blocked_atm_wav_2way.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: ATM WAV EARTH_attributes:: diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index 0651821a37..8b4c1f8a04 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: MED ATM OCN ICE EARTH_attributes:: diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index acfe49097f..107bb9d95d 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: MED ATM OCN ICE WAV EARTH_attributes:: @@ -11,7 +14,6 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] -:: # ATM # ATM_model: @[atm_model] diff --git a/tests/parm/nems.configure.datm_cdeps.IN b/tests/parm/nems.configure.datm_cdeps.IN index 46d31d29dc..51d67dfd9a 100644 --- a/tests/parm/nems.configure.datm_cdeps.IN +++ b/tests/parm/nems.configure.datm_cdeps.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: MED ATM OCN ICE EARTH_attributes:: @@ -11,10 +14,6 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] - Verbosity = 5 - dbug_flag = 5 - -:: # ATM # ATM_model: @[atm_model] @@ -87,6 +86,8 @@ DRIVER_attributes:: :: MED_attributes:: + Verbosity = 5 + dbug_flag = 5 ATM_model = @[atm_model] ICE_model = @[ice_model] OCN_model = @[ocn_model] diff --git a/tests/parm/nems.configure.hafs_atm.IN b/tests/parm/nems.configure.hafs_atm.IN index 1ddd14e32a..b71ff6e3ea 100644 --- a/tests/parm/nems.configure.hafs_atm.IN +++ b/tests/parm/nems.configure.hafs_atm.IN @@ -1,3 +1,5 @@ + logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + EARTH_component_list: ATM ATM_model: fv3 diff --git a/tests/parm/nems.configure.hafs_atm_docn.IN b/tests/parm/nems.configure.hafs_atm_docn.IN index 01734f1f90..038f11141b 100644 --- a/tests/parm/nems.configure.hafs_atm_docn.IN +++ b/tests/parm/nems.configure.hafs_atm_docn.IN @@ -2,6 +2,9 @@ ##### NEMS Run-Time Configuration File ##### ############################################## +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + # EARTH # EARTH_component_list: MED ATM OCN EARTH_attributes:: diff --git a/tests/parm/nems.configure.hafs_atm_ocn.IN b/tests/parm/nems.configure.hafs_atm_ocn.IN index 3a04fc5c6a..4173a503a4 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn.IN @@ -2,6 +2,9 @@ ##### NEMS Run-Time Configuration File ##### ############################################## +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + # EARTH # EARTH_component_list: MED ATM OCN EARTH_attributes:: diff --git a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN index a78e4e8c80..b57ee91915 100644 --- a/tests/parm/nems.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_ocn_wav.IN @@ -2,6 +2,9 @@ ##### NEMS Run-Time Configuration File ##### ############################################## +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + # EARTH # EARTH_component_list: MED ATM OCN WAV EARTH_attributes:: diff --git a/tests/parm/nems.configure.hafs_atm_wav.IN b/tests/parm/nems.configure.hafs_atm_wav.IN index 4fb1c0c41d..4f53dbb6c1 100644 --- a/tests/parm/nems.configure.hafs_atm_wav.IN +++ b/tests/parm/nems.configure.hafs_atm_wav.IN @@ -2,6 +2,9 @@ ##### NEMS Run-Time Configuration File ##### ############################################## +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI_ON_ERROR + # EARTH # EARTH_component_list: MED ATM WAV EARTH_attributes:: diff --git a/tests/parm/nems.configure.leapfrog_atm_wav.IN b/tests/parm/nems.configure.leapfrog_atm_wav.IN index c059707692..d2f3ab5227 100644 --- a/tests/parm/nems.configure.leapfrog_atm_wav.IN +++ b/tests/parm/nems.configure.leapfrog_atm_wav.IN @@ -2,6 +2,9 @@ #### NEMS Run-Time Configuration File ##### ############################################# +# ESMF # +logKindFlag: ESMF_LOGKIND_MULTI + # EARTH # EARTH_component_list: ATM WAV EARTH_attributes:: diff --git a/tests/parm/stretched-nest-quilt-model_configure.IN b/tests/parm/stretched-nest-quilt-model_configure.IN index c11f3c4318..fb32a88c06 100644 --- a/tests/parm/stretched-nest-quilt-model_configure.IN +++ b/tests/parm/stretched-nest-quilt-model_configure.IN @@ -1,4 +1,3 @@ -print_esmf: .true. start_year: 2018 start_month: 10 start_day: 15