From bc6c5f6c4914e4fb6329bff239228b8b5d55fa53 Mon Sep 17 00:00:00 2001 From: Dusan Jovic <48258889+DusanJovic-NOAA@users.noreply.github.com> Date: Thu, 16 Dec 2021 10:10:05 -0500 Subject: [PATCH] Add ufs driver. Remove NEMS submodule. Update CMEPS. Update CDEPS. Feature/ort addition. (#931) * Add UFS driver, a copy of two fortran files from the NEMS repository. Remove NEMS submodule. * Update CMEPS for current escomp/master. Implement the ability to write mediator history files for ATM on tiles rather than mesh * Update CDEPS component. The updated CDEPS includes code updates for GFS v16 data mode. * Operation requirement test (ORT) for: - cpld_control_p7 thread and decomposition tests - cpld_bmark_p7 thread and decomposition tests - Due to the wave component in these tests, restart and debug do not work Co-authored-by: Minsuk Ji <57227195+MinsukJi-NOAA@users.noreply.github.com> Co-authored-by: Denise Worthen Co-authored-by: BinLi-NOAA --- .gitmodules | 4 - CDEPS-interface/CDEPS | 2 +- CDEPS-interface/cdeps_files.cmake | 1 + CMEPS-interface/CMEPS | 2 +- CMEPS-interface/CMakeLists.txt | 15 +- CMakeLists.txt | 12 +- FV3 | 2 +- NEMS | 1 - build.sh | 4 - driver/EARTH_GRID_COMP.F90 | 778 +++++++++++++++++++++++ driver/UFS.F90 | 515 +++++++++++++++ tests/RegressionTests_cheyenne.gnu.log | 162 ++--- tests/RegressionTests_cheyenne.intel.log | 486 +++++++------- tests/RegressionTests_gaea.intel.log | 484 +++++++------- tests/RegressionTests_hera.gnu.log | 162 ++--- tests/RegressionTests_hera.intel.log | 492 +++++++------- tests/RegressionTests_jet.intel.log | 450 ++++++------- tests/RegressionTests_orion.intel.log | 476 +++++++------- tests/RegressionTests_wcoss_cray.log | 310 ++++----- tests/RegressionTests_wcoss_dell_p3.log | 502 +++++++-------- tests/ci/repo_check.sh | 8 +- tests/compile.sh | 2 +- tests/default_vars.sh | 3 +- tests/fv3_conf/compile_qsub.IN_cheyenne | 0 tests/fv3_conf/fv3_bsub.IN_wcoss_cray | 1 + tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 | 1 + tests/fv3_conf/fv3_qsub.IN_cheyenne | 2 +- tests/fv3_conf/fv3_slurm.IN_expanse | 2 +- tests/fv3_conf/fv3_slurm.IN_gaea | 3 +- tests/fv3_conf/fv3_slurm.IN_hera | 2 +- tests/fv3_conf/fv3_slurm.IN_jet | 2 +- tests/fv3_conf/fv3_slurm.IN_orion | 2 +- tests/fv3_conf/fv3_slurm.IN_s4 | 2 +- tests/fv3_conf/fv3_slurm.IN_stampede | 2 +- tests/module-setup.sh | 117 ++++ tests/opnReqTest | 25 +- tests/opnReqTests/rst.sh | 15 +- tests/opnReqTests/thr.sh | 37 +- tests/opnReqTests/wrt_env.sh | 1 + tests/parm/nems.configure.cpld.IN | 1 + tests/parm/nems.configure.cpld_wave.IN | 1 + tests/rt.sh | 2 +- tests/run_test.sh | 2 +- tests/tests/cpld_bmark_mpi_p7 | 1 + tests/tests/cpld_bmark_p7 | 1 + tests/tests/cpld_control_c192_p7 | 1 + tests/tests/cpld_control_c384_p7 | 1 + tests/tests/cpld_restart_c192_p7 | 1 + tests/tests/cpld_restart_c384_p7 | 1 + 49 files changed, 3263 insertions(+), 1836 deletions(-) delete mode 160000 NEMS create mode 100644 driver/EARTH_GRID_COMP.F90 create mode 100644 driver/UFS.F90 mode change 100755 => 100644 tests/fv3_conf/compile_qsub.IN_cheyenne mode change 100755 => 100644 tests/fv3_conf/fv3_qsub.IN_cheyenne create mode 100755 tests/module-setup.sh diff --git a/.gitmodules b/.gitmodules index 8b5b737335..a963b019d8 100644 --- a/.gitmodules +++ b/.gitmodules @@ -2,10 +2,6 @@ path = FV3 url = https://github.com/NOAA-EMC/fv3atm branch = develop -[submodule "NEMS"] - path = NEMS - url = https://github.com/NOAA-EMC/NEMS - branch = develop [submodule "WW3"] path = WW3 url = https://github.com/NOAA-EMC/WW3 diff --git a/CDEPS-interface/CDEPS b/CDEPS-interface/CDEPS index bfbba9bb0e..b1c8946789 160000 --- a/CDEPS-interface/CDEPS +++ b/CDEPS-interface/CDEPS @@ -1 +1 @@ -Subproject commit bfbba9bb0e3a70e04cf606b10e3573b24cb81fb8 +Subproject commit b1c89467897fce25fd53edca1e55691fa3b5859b diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 8c4f5d6ae9..3990572168 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -44,6 +44,7 @@ list(APPEND cdeps_datm_files CDEPS/datm/datm_datamode_cplhist_mod.F90 CDEPS/datm/datm_datamode_era5_mod.F90 CDEPS/datm/datm_datamode_gefs_mod.F90 + CDEPS/datm/datm_datamode_gfs_mod.F90 CDEPS/datm/datm_datamode_jra_mod.F90 ) diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 5beead0ff6..8b117b4bc9 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 5beead0ff69de03c9f535efe0aca1f61cc47ec07 +Subproject commit 8b117b4bc9fae268f362577170b218dbb4398390 diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index a60d766e1e..60104f0dc5 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -19,16 +19,11 @@ else() endif() list(APPEND _nems_util_files - CMEPS/util/shr_abort_mod.F90 - CMEPS/util/shr_log_mod.F90 - CMEPS/util/shr_sys_mod.F90 - CMEPS/util/shr_flux_mod.F90 - CMEPS/util/shr_mpi_mod.F90 - CMEPS/util/glc_elevclass_mod.F90 - CMEPS/util/shr_mem_mod.F90 - CMEPS/util/shr_kind_mod.F90 - CMEPS/util/perf_mod.F90 - CMEPS/util/shr_const_mod.F90) + CMEPS/ufs/flux_atmocn_mod.F90 + CMEPS/ufs/glc_elevclass_mod.F90 + CMEPS/ufs/ufs_kind_mod.F90 + CMEPS/ufs/perf_mod.F90 + CMEPS/ufs/ufs_const_mod.F90) list(APPEND _mediator_files CMEPS/mediator/med_phases_restart_mod.F90 diff --git a/CMakeLists.txt b/CMakeLists.txt index 94e083e25c..89b3a73e28 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -81,7 +81,7 @@ endif() message("") message("32BIT ............ ${32BIT}") message("AVX2 ............. ${AVX2}") -message("SIMDMULTIARCH ... ${SIMDMULTIARCH}") +message("SIMDMULTIARCH .... ${SIMDMULTIARCH}") message("DEBUG ............ ${DEBUG}") message("DEBUG_LINKMPI .... ${DEBUG_LINKMPI}") message("INLINE_POST ...... ${INLINE_POST}") @@ -214,13 +214,9 @@ if(CDEPS) endif() ############################################################################### -### UFS Library [NEMS] +### UFS Library ############################################################################### -list(APPEND _nems_srcs NEMS/src/module_EARTH_GRID_COMP.F90 - NEMS/src/module_NEMS_Rusage.F90 - NEMS/src/nems_c_rusage.c) - -add_library(ufs ${_nems_srcs}) +add_library(ufs driver/EARTH_GRID_COMP.F90) set_target_properties(ufs PROPERTIES Fortran_MODULE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/mod) target_include_directories(ufs INTERFACE $ @@ -298,7 +294,7 @@ target_link_libraries(ufs PUBLIC "${_ufs_libs_public}") ############################################################################### ### UFS executable ############################################################################### -add_executable(ufs_model NEMS/src/MAIN_NEMS.F90) +add_executable(ufs_model driver/UFS.F90) add_dependencies(ufs_model ufs) target_link_libraries(ufs_model ufs esmf w3nco::w3nco_d) diff --git a/FV3 b/FV3 index a1b0f33e36..eb463bccde 160000 --- a/FV3 +++ b/FV3 @@ -1 +1 @@ -Subproject commit a1b0f33e36db680620c59794d5ebfa31169c279c +Subproject commit eb463bccde5d19c15c86b6187bffd47e1bd63f9a diff --git a/NEMS b/NEMS deleted file mode 160000 index d51fa54d05..0000000000 --- a/NEMS +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d51fa54d05736400b9e7e67dd1edc208cdd726c0 diff --git a/build.sh b/build.sh index bcc1483b28..6b6e5e1249 100755 --- a/build.sh +++ b/build.sh @@ -11,13 +11,9 @@ export CC=${CC:-mpicc} export CXX=${CXX:-mpicxx} export FC=${FC:-mpif90} -export ESMFMKFILE=${ESMFMKFILE:?"Please set ESMFMKFILE environment variable"} - BUILD_DIR=${BUILD_DIR:-${UFS_MODEL_DIR}/build} mkdir -p ${BUILD_DIR} -[[ -n "${MAPL_ROOT:-""}" ]] && CMAKE_FLAGS+=" -DCMAKE_MODULE_PATH=${MAPL_ROOT}/share/MAPL/cmake" - cd ${BUILD_DIR} cmake ${UFS_MODEL_DIR} ${CMAKE_FLAGS} # Turn off OpenMP threading for parallel builds diff --git a/driver/EARTH_GRID_COMP.F90 b/driver/EARTH_GRID_COMP.F90 new file mode 100644 index 0000000000..2114886157 --- /dev/null +++ b/driver/EARTH_GRID_COMP.F90 @@ -0,0 +1,778 @@ +!----------------------------------------------------------------------- +! + MODULE module_EARTH_GRID_COMP +! +!----------------------------------------------------------------------- +!*** This module contains codes directly related to the EARTH component. +!----------------------------------------------------------------------- +! +!----------------------------------------------------------------------- +! 2010-03-24 Black - Created Earth component module. +! 2010-04 Yang - Added Ensemble capability. +! 2011-05-11 Theurich & Yang - Modified for using the ESMF 5.2.0r_beta_snapshot_07. +! 2011-10-04 Yang - Modified for using the ESMF 5.2.0r library. +! 2012-02 Tripp - Added ESMF superstructure to support an OCN model +! 2013-06 Theurich - Reworked OCN dependency to be NUOPC based +! 2013-07 Theurich - Macro based ESMF error handling +!----------------------------------------------------------------------- +! +!*** The EARTH component lies in the hierarchy seen here: +! +! Main program +! | +! EARTH component +! /|\ +! / | \ +! ATM/OCN/ICE/WAV/LND/IPM/HYD .. components +! | | | +! | | (CICE, etc.) +! | | +! | (MOM6, HYCOM, etc.) +! | +! (FV3, etc.) +! +!----------------------------------------------------------------------- +! + use ESMF + + use NUOPC + use NUOPC_Driver, & + Driver_routine_SS => SetServices, & + Driver_label_SetModelServices => label_SetModelServices, & + Driver_label_SetRunSequence => label_SetRunSequence, & + Driver_label_SetRunClock => label_SetRunClock + use NUOPC_Connector, only: conSS => SetServices + ! - Handle build time ATM options: +#ifdef FRONT_FV3 + use FRONT_FV3, only: FV3_SS => SetServices +#endif +#ifdef FRONT_NEMS_DATM + use FRONT_NEMS_DATM, only: DATM_SS => SetServices +#endif +#ifdef FRONT_CDEPS_DATM + use FRONT_CDEPS_DATM, only: DATM_SS => SetServices +#endif + ! - Handle build time OCN options: +#ifdef FRONT_HYCOM + use FRONT_HYCOM, only: HYCOM_SS => SetServices +#endif +#ifdef FRONT_MOM6 + use FRONT_MOM6, only: MOM6_SS => SetServices +#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 +#endif + ! - Handle build time WAV options: +#ifdef FRONT_WW3 + use FRONT_WW3, only: WW3_SS => SetServices +#endif + ! - Handle build time LND options: +#ifdef FRONT_NOAH + use FRONT_NOAH, only: NOAH_SS => SetServices +#endif +#ifdef FRONT_LIS + use FRONT_LIS, only: LIS_SS => SetServices +#endif + ! - Handle build time IPM options: +#ifdef FRONT_IPE + use FRONT_IPE, only: IPE_SS => SetServices +#endif + ! - Handle build time GOCART options: +#ifdef FRONT_GOCART + use FRONT_GOCART, only: GOCART_SS => SetServices +#endif + ! - Mediator +#ifdef FRONT_CMEPS + use MED, only: MED_SS => SetServices +#endif +! +!----------------------------------------------------------------------- +! + implicit none +! +!----------------------------------------------------------------------- +! + private +! + public :: earth_register + public :: verbose_diagnostics +! +!----------------------------------------------------------------------- +! + logical, private :: flag_verbose_diagnostics = .false. + logical, private :: printattr = .false. + + character(len=*),parameter :: u_FILE_u = & + __FILE__ + + CONTAINS + + logical function verbose_diagnostics(set) + !! Mutator for the verbose diagnostics flag; returns true if + !! verbose diagnostics should be used, and false otherwise. + !! If the "set" argument is present, then the flag is set to + !! the given value. + logical, optional :: set + if(present(set)) then + flag_verbose_diagnostics=set + endif + verbose_diagnostics=flag_verbose_diagnostics + end function verbose_diagnostics + + logical function ChkErr(rc, line, file) + integer, intent(in) :: rc !< return code to check + integer, intent(in) :: line !< Integer source line number + character(len=*), intent(in) :: file !< User-provided source file name + integer :: lrc + ChkErr = .false. + lrc = rc + if (ESMF_LogFoundError(rcToCheck=lrc, msg=ESMF_LOGERR_PASSTHRU, line=line, file=file)) then + ChkErr = .true. + endif + end function ChkErr + +!----------------------------------------------------------------------- +!####################################################################### +!----------------------------------------------------------------------- +! + SUBROUTINE EARTH_REGISTER(EARTH_GRID_COMP,RC) +! +!----------------------------------------------------------------------- +! +!------------------------ +!*** Argument Variables +!------------------------ +! + type(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH component +! + integer,intent(out) :: rc !<-- Error return code +! +!--------------------- +!*** Local Variables +!--------------------- +! + type(ESMF_Config) :: config +! +!----------------------------------------------------------------------- +!*********************************************************************** +!----------------------------------------------------------------------- +! + RC = ESMF_SUCCESS +! +!----------------------------------------------------------------------- +!*********************************************************************** +!----------------------------------------------------------------------- +! + ! Derive from NUOPC_Driver + call NUOPC_CompDerive(EARTH_GRID_COMP, Driver_routine_SS, rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! specializations: + + call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + specLabel=Driver_label_SetModelServices, specRoutine=SetModelServices, & + rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + specLabel=Driver_label_SetRunSequence, specRoutine=SetRunSequence, & + rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + +#ifndef JEDI_DRIVER + ! The NEMS Earth component is currently the top-level driver and + ! does not need to coordinate Clocks with its parent. + call ESMF_MethodRemove(EARTH_GRID_COMP, Driver_label_SetRunClock, rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call NUOPC_CompSpecialize(EARTH_GRID_COMP, & + specLabel=Driver_label_SetRunClock, specRoutine=NUOPC_NoOp, rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return +#endif + + ! register an internal initialization method + call NUOPC_CompSetInternalEntryPoint(EARTH_GRID_COMP, ESMF_METHOD_INITIALIZE, & + phaseLabelList=(/"IPDv04p2"/), userRoutine=ModifyCplLists, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! create, open, and set the config + config = ESMF_ConfigCreate(rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call ESMF_ConfigLoadFile(config, "nems.configure", rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call ESMF_GridCompSet(EARTH_GRID_COMP, config=config, rc=RC) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! Load the required entries from the fd_nems.yaml file + call NUOPC_FieldDictionarySetup("fd_nems.yaml", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + +!----------------------------------------------------------------------- +! + END SUBROUTINE EARTH_REGISTER +! +!----------------------------------------------------------------------- +!####################################################################### +!----------------------------------------------------------------------- +! + + subroutine SetModelServices(driver, rc) + + type(ESMF_GridComp) :: driver + integer, intent(out) :: rc + + ! local variables + integer :: localrc, stat, i, j, petCount + character(ESMF_MAXSTR) :: name + type(ESMF_GridComp) :: comp + type(ESMF_Config) :: config + 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 :: componentCount + type(NUOPC_FreeFormat) :: attrFF, fdFF + logical :: found_comp + logical :: isPresent + + rc = ESMF_SUCCESS + + ! query the Component for info + call ESMF_GridCompGet(driver, name=name, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! get petCount and config + call ESMF_GridCompGet(driver, petCount=petCount, config=config, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! read and ingest free format driver attributes + attrFF = NUOPC_FreeFormatCreate(config, label="EARTH_attributes::", & + relaxedflag=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call NUOPC_CompAttributeIngest(driver, attrFF, addFlag=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call NUOPC_FreeFormatDestroy(attrFF, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! dump the current field dictionary into the Log file + call ESMF_AttributeGet(driver, name="DumpFieldDictionary", & + value=value, defaultValue="false", & + convention="NUOPC", purpose="Instance", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + if (trim(value)=="true") then + call ESMF_LogWrite( & + "===>===>===>===> Begin Dumping Field Dictionary <===<===<===<===",& + ESMF_LOGMSG_INFO) + call NUOPC_FieldDictionaryEgest(fdFF, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call NUOPC_FreeFormatLog(fdFF, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call ESMF_LogWrite( & + "===>===>===>===> Done Dumping Field Dictionary <===<===<===<===", & + ESMF_LOGMSG_INFO) + endif + + ! determine the generic component labels + componentCount = ESMF_ConfigGetLen(config, & + label="EARTH_component_list:", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + allocate(compLabels(componentCount), stat=stat) + if (ESMF_LogFoundAllocError(statusToCheck=stat, & + msg="Allocation of compLabels failed.", & + line=__LINE__, file=trim(name)//":"//__FILE__, rcToReturn=rc)) & + return ! bail out + call ESMF_ConfigGetAttribute(config, valueList=compLabels, & + label="EARTH_component_list:", count=componentCount, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + call ReadAttributes(driver, config, "DRIVER_attributes::", relaxedflag=.true., & + formatprint=printattr, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call ReadAttributes(driver, config, "ALLCOMP_attributes::", relaxedflag=.true., & + formatprint=printattr, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + ! get starttype and set read_restart attribute in driver config list + call InitRestart(driver, config, rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! determine information for each component and add to the driver + do i=1, componentCount + ! construct component prefix + prefix=trim(compLabels(i)) + ! read in petList bounds + call ESMF_ConfigGetAttribute(config, petListBounds, & + label=trim(prefix)//"_petlist_bounds:", default=-1, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! handle the default situation + if (petListBounds(1)==-1 .or. petListBounds(2)==-1) then + petListBounds(1) = 0 + petListBounds(2) = petCount - 1 + endif + ! read in model instance name + call ESMF_ConfigGetAttribute(config, model, & + label=trim(prefix)//"_model:", default="none", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! check that there was a model instance specified + if (trim(model) == "none") then + ! Error condition: no model was specified + write (msg, *) "No model was specified for component: ",trim(prefix) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return ! bail out + endif + ! set petList for this component + allocate(petList(petListBounds(2)-petListBounds(1)+1)) + do j=petListBounds(1), petListBounds(2) + petList(j-petListBounds(1)+1) = j ! PETs are 0 based + enddo + + 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) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#if defined FRONT_NEMS_DATM || defined FRONT_CDEPS_DATM + if (trim(model) == "nems_datm" .or. trim(model) == "datm" ) then + call NUOPC_DriverAddComp(driver, trim(prefix), DATM_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_HYCOM + if (trim(model) == "hycom") then + call NUOPC_DriverAddComp(driver, trim(prefix), HYCOM_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_MOM6 + if (trim(model) == "mom6") then + call NUOPC_DriverAddComp(driver, trim(prefix), MOM6_SS, & + 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 + call NUOPC_DriverAddComp(driver, trim(prefix), DOCN_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_CICE6 + if (trim(model) == "cice6") then + call NUOPC_DriverAddComp(driver, trim(prefix), CICE6_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_WW3 + if (trim(model) == "ww3") then + call NUOPC_DriverAddComp(driver, trim(prefix), WW3_SS, & + 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 + call NUOPC_DriverAddComp(driver, trim(prefix), NOAH_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_LIS + if (trim(model) == "lis") then + call NUOPC_DriverAddComp(driver, trim(prefix), LIS_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_IPE + if (trim(model) == "ipe") then + call NUOPC_DriverAddComp(driver, trim(prefix), IPE_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_GOCART + if (trim(model) == "gocart") then + call NUOPC_DriverAddComp(driver, trim(prefix), GOCART_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif +#ifdef FRONT_CMEPS + if (trim(model) == "cmeps") then + call NUOPC_DriverAddComp(driver, trim(prefix), MED_SS, & + petList=petList, comp=comp, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + found_comp = .true. + end if +#endif + if (.not. found_comp) then + write(msg,*) 'No component ',trim(model),' found' + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msg, line=__LINE__, & + file=__FILE__, rcToReturn=rc) + return + endif + + call AddAttributes(comp, driver, config, trim(prefix), rc=rc) + if (chkerr(rc,__LINE__,u_FILE_u)) return + + ! clean-up + deallocate(petList) + enddo + + ! clean-up + deallocate(compLabels) + end subroutine + + !----------------------------------------------------------------------------- + + subroutine SetRunSequence(driver, rc) + type(ESMF_GridComp) :: driver + integer, intent(out) :: rc + + ! local variables + character(ESMF_MAXSTR) :: name + type(ESMF_Config) :: config + type(NUOPC_FreeFormat) :: runSeqFF + + rc = ESMF_SUCCESS + + ! query the Component for info + call ESMF_GridCompGet(driver, name=name, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! read free format run sequence from config + call ESMF_GridCompGet(driver, config=config, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + runSeqFF = NUOPC_FreeFormatCreate(config, label="runSeq::", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! ingest FreeFormat run sequence + call NUOPC_DriverIngestRunSequence(driver, runSeqFF, & + autoAddConnectors=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! Diagnostic output + if(verbose_diagnostics()) then + call NUOPC_DriverPrint(driver, orderflag=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + endif + + end subroutine + + !----------------------------------------------------------------------------- + + recursive subroutine ModifyCplLists(driver, importState, exportState, clock, & + rc) + type(ESMF_GridComp) :: driver + type(ESMF_State) :: importState, exportState + type(ESMF_Clock) :: clock + integer, intent(out) :: rc + + character(len=160) :: name, msg + type(ESMF_CplComp), pointer :: connectorList(:) + integer :: i, j, cplListSize + character(len=160), allocatable :: cplList(:) + character(len=160) :: value + + rc = ESMF_SUCCESS + + call ESMF_LogWrite("Driver is in ModifyCplLists()", ESMF_LOGMSG_INFO) + + nullify(connectorList) + call NUOPC_DriverGetComp(driver, compList=connectorList, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + write (msg,*) "Found ", size(connectorList), " Connectors."// & + " Modifying CplList Attribute...." + call ESMF_LogWrite(trim(msg), ESMF_LOGMSG_INFO) + + do i=1, size(connectorList) + ! query Connector i for its name + call ESMF_CplCompGet(connectorList(i), name=name, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! access CplList for Connector i + call NUOPC_CompAttributeGet(connectorList(i), name="CplList", & + itemCount=cplListSize, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + if (cplListSize>0) then + allocate(cplList(cplListSize)) + call NUOPC_CompAttributeGet(connectorList(i), name="CplList", & + valueList=cplList, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + ! go through all of the entries in the cplList and add options + do j=1, cplListSize + cplList(j) = trim(cplList(j))//":DumpWeights=true" + cplList(j) = trim(cplList(j))//":SrcTermProcessing=1:TermOrder=SrcSeq" + ! add connection options read in from configuration file + call ESMF_AttributeGet(connectorList(i), name="ConnectionOptions", & + value=value, defaultValue="", rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + cplList(j) = trim(cplList(j))//trim(value) + enddo + ! store the modified cplList in CplList attribute of connector i + call NUOPC_CompAttributeSet(connectorList(i), & + name="CplList", valueList=cplList, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + deallocate(cplList) + endif + enddo + + deallocate(connectorList) + end subroutine + + !----------------------------------------------------------------------------- + + subroutine ReadAttributes(gcomp, config, label, relaxedflag, formatprint, rc) + + use ESMF , only : ESMF_GridComp, ESMF_Config, ESMF_LogWrite, ESMF_LOGMSG_INFO, ESMF_SUCCESS + use NUOPC , only : NUOPC_FreeFormatCreate, NUOPC_CompAttributeIngest + use NUOPC , only : NUOPC_FreeFormatDestroy, NUOPC_FreeFormat + + ! input/output arguments + type(ESMF_GridComp) , intent(inout) :: gcomp + type(ESMF_Config) , intent(in) :: config + character(len=*) , intent(in) :: label + logical , intent(in), optional :: relaxedflag + logical , intent(in), optional :: formatprint + integer , intent(inout) :: rc + + ! local variables + type(NUOPC_FreeFormat) :: attrFF + character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:ReadAttributes)" + !------------------------------------------- + + rc = ESMF_SUCCESS + + if (present(relaxedflag)) then + attrFF = NUOPC_FreeFormatCreate(config, label=trim(label), relaxedflag=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + else + attrFF = NUOPC_FreeFormatCreate(config, label=trim(label), rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + end if + + call NUOPC_CompAttributeIngest(gcomp, attrFF, addFlag=.true., rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + if (present (formatprint)) then + call ESMF_LogWrite('ReadAttributes '//trim(label)//' start:', ESMF_LOGMSG_INFO) + call NUOPC_FreeFormatLog(attrFF, rc=rc) + if (chkerr(rc,__LINE__,u_FILE_u)) return + call ESMF_LogWrite('ReadAttributes '//trim(label)//' end:', ESMF_LOGMSG_INFO) + end if + + call NUOPC_FreeFormatDestroy(attrFF, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + end subroutine ReadAttributes + + subroutine InitRestart(driver, config, rc) + + !----------------------------------------------------- + ! Determine if will restart and read pointer file if appropriate + !----------------------------------------------------- + + use ESMF , only : ESMF_GridComp, ESMF_VM, ESMF_GridCompGet, ESMF_VMGet, ESMF_SUCCESS + use ESMF , only : ESMF_LogSetError, ESMF_LogWrite, ESMF_LOGMSG_INFO, ESMF_RC_NOT_VALID + use NUOPC , only : NUOPC_CompAttributeGet, NUOPC_CompAttributeSet, NUOPC_CompAttributeAdd + + ! input/output variables + type(ESMF_GridComp) , intent(inout) :: driver + type(ESMF_Config) , intent(inout) :: config + integer , intent(out) :: rc + + ! local variables + logical :: read_restart ! read the restart file, based on start_type + character(len=ESMF_MAXSTR) :: cvalue ! temporary + character(len=ESMF_MAXSTR) :: attribute ! + character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:InitRestart)" + !------------------------------------------- + + rc = ESMF_SUCCESS + call ESMF_LogWrite(trim(subname)//": called", ESMF_LOGMSG_INFO) + + !----------------------------------------------------- + ! Carry out restart if appropriate + !----------------------------------------------------- + + read_restart = IsRestart(driver, config, rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + attribute = 'read_restart' + ! Add read_restart to driver attributes + call NUOPC_CompAttributeAdd(driver, attrList=(/trim(attribute)/), rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + write(cvalue,*) read_restart + call NUOPC_CompAttributeSet(driver, name='read_restart', value=trim(cvalue), rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call ESMF_LogWrite('Set attribute read_restart in driver ', ESMF_LOGMSG_INFO) + + end subroutine InitRestart + + function IsRestart(gcomp, config, rc) + + use ESMF , only : ESMF_GridComp, ESMF_SUCCESS + use ESMF , only : ESMF_LogSetError, ESMF_LogWrite, ESMF_LOGMSG_INFO, ESMF_RC_NOT_VALID + use NUOPC , only : NUOPC_CompAttributeGet + + ! input/output variables + logical :: IsRestart + type(ESMF_GridComp) , intent(inout) :: gcomp + type(ESMF_Config) , intent(inout) :: config + integer , intent(out) :: rc + + ! locals + logical :: isPresent, isSet + character(len=ESMF_MAXSTR) :: start_type ! Type of startup + character(len=ESMF_MAXSTR) :: msgstr + character(len=*) , parameter :: start_type_start = "startup" + character(len=*) , parameter :: start_type_cont = "continue" + character(len=*) , parameter :: start_type_brnch = "branch" + character(len=*) , parameter :: subname = "(module_EARTH_GRID_COMP.F90:IsRestart)" + !--------------------------------------- + + rc = ESMF_SUCCESS + + ! First Determine if restart is read + call NUOPC_CompAttributeGet(gcomp, name='start_type', value=start_type, & + isPresent=isPresent, isSet=isSet, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + if( isPresent .and. isSet) then + if ((trim(start_type) /= start_type_start) .and. & + (trim(start_type) /= start_type_cont ) .and. & + (trim(start_type) /= start_type_brnch)) then + write (msgstr, *) subname//': start_type invalid = '//trim(start_type) + call ESMF_LogSetError(ESMF_RC_NOT_VALID, msg=msgstr, line=__LINE__, file=__FILE__, rcToReturn=rc) + return + end if + + !TODO: this is hard-wired to CIME start/continue types in terms of gcomp + IsRestart = .false. + if (trim(start_type) == trim(start_type_cont) .or. trim(start_type) == trim(start_type_brnch)) then + IsRestart = .true. + end if + else + IsRestart = .false. + call ESMF_LogWrite('No start_type attribute found, setting read_restart false ', ESMF_LOGMSG_INFO) + endif + + end function IsRestart + + subroutine AddAttributes(gcomp, driver, config, compname, rc) + + ! Add specific set of attributes to components from driver attributes + + use ESMF , only : ESMF_GridComp, ESMF_Config, ESMF_LogWrite, ESMF_LOGMSG_INFO, ESMF_SUCCESS + use ESMF , only : ESMF_LogFoundAllocError, ESMF_ConfigGetLen, ESMF_ConfigGetAttribute + use NUOPC , only : NUOPC_CompAttributeAdd, NUOPC_CompAttributeGet, NUOPC_CompAttributeSet + + ! input/output parameters + type(ESMF_GridComp) , intent(inout) :: gcomp + type(ESMF_GridComp) , intent(in) :: driver + type(ESMF_Config) , intent(inout) :: config + character(len=*) , intent(in) :: compname + integer , intent(inout) :: rc + + ! local variables + integer :: n + integer :: stat + integer :: inst_index + logical :: is_present + character(len=ESMF_MAXSTR) :: cvalue + character(len=32), allocatable :: compLabels(:) + character(len=32), allocatable :: attrList(:) + integer :: componentCount + character(len=*), parameter :: subname = "(module_EARTH_GRID_COMP.F90:AddAttributes)" + logical :: lvalue = .false. + !------------------------------------------- + + rc = ESMF_Success + call ESMF_LogWrite(trim(subname)//": called", ESMF_LOGMSG_INFO) + + !------ + ! Add restart flag to gcomp attributes + !------ + allocate(attrList(1)) + attrList = (/"read_restart"/) + + call NUOPC_CompAttributeAdd(gcomp, attrList=attrList, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + do n = 1,size(attrList) + if (trim(attrList(n)) == "read_restart") then + call NUOPC_CompAttributeGet(driver, name="read_restart", value=cvalue, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + read(cvalue,*) lvalue + + if (.not. lvalue) then + call NUOPC_CompAttributeGet(driver, name=trim(attrList(n)), value=cvalue, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + end if + call NUOPC_CompAttributeSet(gcomp, name=trim(attrList(n)), value=trim(cvalue), rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + else + print *, trim(attrList(n)) + call NUOPC_CompAttributeGet(driver, name=trim(attrList(n)), value=cvalue, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + call NUOPC_CompAttributeSet(gcomp, name=trim(attrList(n)), value=trim(cvalue), rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + end if + call ESMF_LogWrite('Added attribute '//trim(attrList(n))//' to '//trim(compname), ESMF_LOGMSG_INFO) + enddo + deallocate(attrList) + + !------ + ! Add component specific attributes + !------ + + call ReadAttributes(gcomp, config, trim(compname)//"_attributes::", relaxedflag=.true., & + formatprint=printattr, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + call ReadAttributes(gcomp, config, trim(compname)//"_modelio::", relaxedflag=.true., & + formatprint=printattr, rc=rc) + if (chkerr(rc,__LINE__,u_FILE_u)) return + + call ReadAttributes(gcomp, config, "ALLCOMP_attributes::", relaxedflag=.true., & + formatprint=printattr, rc=rc) + if (ChkErr(rc,__LINE__,u_FILE_u)) return + + end subroutine AddAttributes +! +!----------------------------------------------------------------------- +! + END MODULE module_EARTH_GRID_COMP +! +!----------------------------------------------------------------------- diff --git a/driver/UFS.F90 b/driver/UFS.F90 new file mode 100644 index 0000000000..ba37638dce --- /dev/null +++ b/driver/UFS.F90 @@ -0,0 +1,515 @@ +#define ESMF_ERR_ABORT(rc) if (ESMF_LogFoundError(rc, msg="Aborting UFS", line=__LINE__, file=__FILE__)) call ESMF_Finalize(endflag=ESMF_END_ABORT) +!----------------------------------------------------------------------- +! + PROGRAM UFS +! +!----------------------------------------------------------------------- +!*** Main Program for UFS. +!*** Define ESMF data types and procedures. +!----------------------------------------------------------------------- +! +!----------------------------------------------------------------------- +! +! PROGRAM HISTORY LOG: +! 2007- Black - Modified from Wei-yu's version +! 2007-09 Black - Create the Clock here. +! 2009-08 Colon - Unified NEM-NMM & NEMS-GFS +! 2009-06-29 Black - Modified for addition of NMM nesting; +! added new ATM Driver Component. +! 2009-09 Lu - Add w3tage calls for resource statistics +! 2009-08 W. Yang - Ensemble GEFS Concurrency Code. +! 2010-03 Jovic/Black - Revised to create NEMS gridded component +! for new structure. +! 2010-04 Yang - Add GEFS and GFS for the revised NEMS. +! 2010-11 Yang - Add the "Generic Core" to NEMS +! 2011-02 Yang - Updated to use both the ESMF 4.0.0rp2 library, +! ESMF 5 series library and the the +! ESMF 3.1.0rp2 library. +! 2011-05 Theurich & Yang - Modified for using the ESMF 5.2.0r_beta_snapshot_07. +! 2011-10 Yang - Modified for using the ESMF 5.2.0r library. +! 2013-07 Theurich - Macro based ESMF error handling +! 2016-11 Trahan - Resource usage reporting +! +!----------------------------------------------------------------------- +! + USE MPI + USE ESMF +! +!----------------------------------------------------------------------- +!*** USE the EARTH gridded component module. Although it +!*** contains the calls to Register and the top level Initialize, +!*** Run, and Finalize, only the Register routine is public. +!----------------------------------------------------------------------- +! + USE module_EARTH_GRID_COMP +! +!----------------------------------------------------------------------- +! + IMPLICIT NONE +! +!----------------------------------------------------------------------- +!*** Local Variables. +!----------------------------------------------------------------------- +! + INTEGER :: MYPE & !<-- The MPI task ID + ,NSECONDS_FCST & !<-- Length of forecast in seconds + ,YY,MM,DD & !<-- Time variables for date + ,HH,MNS,SEC & !<-- Time variables for time of day + ,fhrot +! + REAL :: NHOURS_FCST !<-- Length of forecast in hours + + TYPE(ESMF_TimeInterval) :: RUNDURATION & !<-- The ESMF time. The total forecast hours. + ,TIMESTEP & !<-- The ESMF timestep length (we only need a dummy here) + ,restartOffset +! + TYPE(ESMF_Time) :: CURRTIME & !<-- The ESMF current time. + ,STARTTIME !<-- The ESMF start time. +! + TYPE(ESMF_VM) :: VM !<-- The ESMF virtual machine, + ! which contains and manages + ! the computer CPU resource + ! for the ESMF grid components. +! + TYPE(ESMF_GridComp) :: EARTH_GRID_COMP !<-- The EARTH gridded component. +! + 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 +! + INTEGER :: RC, RC_USER !<-- The running error signal +! +! +!----------------------------------------------------------------------- +!*********************************************************************** +!----------------------------------------------------------------------- +! +!----------------------------------------------------------------------- +!*** 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 +! +!----------------------------------------------------------------------- +!*** Extract the MPI task ID. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Obtain the local task ID" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_VMGet(vm =VM & !<-- The ESMF Virtual Machine + ,localpet=MYPE & !<-- The local MPI task ID + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Print subversion version and other status information. +!----------------------------------------------------------------------- +! + if (mype==0) call w3tagb('ufs ',0000,0000,0000,'np23 ') +! +!----------------------------------------------------------------------- +!*** Set up the default log. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Set Up ESMF Log" +! 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 + +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Create and load the Configure object which will hold the contents +!*** of the Main configure file. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Create/Load the Main Configure Object" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CF_MAIN=ESMF_ConfigCreate(rc=RC) +! + CALL ESMF_ConfigLoadFile(config =CF_MAIN & !<-- The Configure object + ,filename='model_configure' & !<-- The name of the configure file + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Create the EARTH gridded component which will create and +!*** control the ATM (atmoshpere), OCN (ocean), ICE (sea ice), etc. +!*** gridded components. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Create the EARTH Gridded Component" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + EARTH_GRID_COMP=ESMF_GridCompCreate(name ='EARTH Grid Comp' & !<-- EARTH component name + ,rc = RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Register the EARTH gridded component's Initialize, Run and +!*** Finalize routines. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Register EARTH Gridded Component Init, Run, Finalize" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_GridCompSetServices(EARTH_GRID_COMP & !<-- The EARTH component + ,EARTH_REGISTER & !<-- User's subroutineName + ,rc=RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Create the main ESMF Clock. +!*** The Clock is needed for all calls to Init, Run, and Finalize. +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Set the start time in the Main Clock. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Year from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =YY & + ,label ='start_year:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Month from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =MM & + ,label ='start_month:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Day from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =DD & + ,label ='start_day:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Hour from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =HH & + ,label ='start_hour:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Minute from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =MNS & + ,label ='start_minute:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Starting Second from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =SEC & + ,label ='start_second:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Set the Forecast Start Time" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_TimeSet(time=STARTTIME & !<-- The start time of the forecast (ESMF) + ,yy =YY & !<-- Year from config file + ,mm =MM & !<-- Month from config file + ,dd =DD & !<-- Day from config file + ,h =HH & !<-- Hour from config file + ,m =MNS & !<-- Minute from config file + ,s =SEC & !<-- Second from config file + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Set the run duration in the Main Clock. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Extract Forecast Length from Config File" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigGetAttribute(config=CF_MAIN & + ,value =NHOURS_FCST & + ,label ='nhours_fcst:' & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + NSECONDS_FCST=nint(NHOURS_FCST*3600.) !<-- The forecast length (sec) (REAL) +! +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="MAIN: Set the Forecast Length" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_TimeIntervalSet(timeinterval=RUNDURATION & !<-- The forecast length (s) (ESMF) + ,s =NSECONDS_FCST & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Now the Main Clock can be created. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Create the Main Clock" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + +! NUOPC requires a correct timeStep to function. Here TIMESTEP was just created +! pro forma, but now is replaced with RUNDURATION to become meaningful. + + TIMESTEP = RUNDURATION + + CLOCK_MAIN=ESMF_ClockCreate(name ='CLOCK_MAIN' & !<-- The top-level ESMF Clock + ,timeStep =TIMESTEP & !<-- Timestep needed by the Clock (ESMF) + ,startTime =STARTTIME & !<-- The integration start time (ESMF) + ,runDuration=RUNDURATION & !<-- The integration duration (ESMF) + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Adjust the currTime of the main clock: CLOCK_MAIN +!*** if the fhrot is > 0 +!*** This will correctly set the EARTH clocks in case of +!*** Restart-From-History. +!----------------------------------------------------------------------- + + CALL ESMF_ConfigGetAttribute(config = CF_MAIN & + ,value = fhrot & + ,label = 'fhrot:' & + ,default = 0 & + ,rc = RC) + ESMF_ERR_ABORT(RC) + + if (fhrot > 0) then + CALL ESMF_TimeIntervalSet(restartOffset, h=fhrot, rc=RC) + ESMF_ERR_ABORT(RC) + CURRTIME = STARTTIME + restartOffset + call ESMF_ClockSet(CLOCK_MAIN, currTime=CURRTIME, rc=RC) + ESMF_ERR_ABORT(RC) + endif +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Execute the INITIALIZE step for the EARTH component. +!*** The Initialize routine that is called here as well as the +!*** Run and Finalize routines invoked below are those specified +!*** in the Register routine called in ESMF_GridCompSetServices above. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Execute the EARTH Component Initialize Step" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_GridCompInitialize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component + ,clock =CLOCK_MAIN & !<-- The ESMF clock + ,userRc =RC_USER & + ,rc =RC) + ESMF_ERR_ABORT(RC) + ESMF_ERR_ABORT(RC_USER) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Execute the RUN step for the EARTH component. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Execute the EARTH Component Run Step" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_GridCompRun(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component + ,clock =CLOCK_MAIN & !<-- The ESMF clock + ,userRc =RC_USER & + ,rc =RC) + ESMF_ERR_ABORT(RC) + ESMF_ERR_ABORT(RC_USER) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Execute the FINALIZE step for the EARTH component. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Execute the EARTH Component Finalize Step" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_GridCompFinalize(gridcomp =EARTH_GRID_COMP & !<-- The EARTH component + ,clock =CLOCK_MAIN & !<-- The Main ESMF clock + ,userRc =RC_USER & + ,rc =RC) + ESMF_ERR_ABORT(RC) + ESMF_ERR_ABORT(RC_USER) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Destroy the Main Clock. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Destroy the Main Clock" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ClockDestroy(clock=CLOCK_MAIN & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! +!----------------------------------------------------------------------- +!*** Destroy the Main Configure object. +!----------------------------------------------------------------------- +! +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK="Destroy the Main Configure Object" +! CALL ESMF_LogWrite(MESSAGE_CHECK,ESMF_LOGMSG_INFO,rc=RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_ConfigDestroy(config=CF_MAIN & + ,rc =RC) + ESMF_ERR_ABORT(RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ + MESSAGE_CHECK = "Destroy ESMF Grid Comp and Cpl Comp" +! CALL ESMF_LogWrite(MESSAGE_CHECK, ESMF_LOGMSG_INFO, rc = RC) +! ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ +! + CALL ESMF_GridCompDestroy(gridcomp=EARTH_GRID_COMP & + ,rc =RC) + ESMF_ERR_ABORT(RC) + +!----------------------------------------------------------------------- +!*** Shut down the ESMF system. +!----------------------------------------------------------------------- +! + CALL ESMF_Finalize() +! +!----------------------------------------------------------------------- +! + if (mype==0) call w3tage('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/tests/RegressionTests_cheyenne.gnu.log b/tests/RegressionTests_cheyenne.gnu.log index db00e8ce0e..953a292856 100644 --- a/tests/RegressionTests_cheyenne.gnu.log +++ b/tests/RegressionTests_cheyenne.gnu.log @@ -1,15 +1,15 @@ -Tue Dec 14 10:57:37 MST 2021 +Wed Dec 15 14:46:18 MST 2021 Start Regression test -Compile 001 elapsed time 408 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_HAFS_v0_hwrf_thompson,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 384 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 751 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 194 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 504 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 277 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 001 elapsed time 411 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_HAFS_v0_hwrf_thompson,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 379 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 745 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 189 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 503 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 266 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -56,13 +56,13 @@ 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 = 275.824226 +0:The total amount of wall time = 276.123848 Test 001 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -101,13 +101,13 @@ 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.124783 +0:The total amount of wall time = 138.143880 Test 002 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_c48 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -146,13 +146,13 @@ Checking test 003 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 816.953553 +0:The total amount of wall time = 816.246925 Test 003 control_c48 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -163,13 +163,13 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 175.840431 +0:The total amount of wall time = 177.090611 Test 004 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -180,13 +180,13 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 338.238166 +0:The total amount of wall time = 338.469372 Test 005 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -197,13 +197,13 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 391.248368 +0:The total amount of wall time = 391.621775 Test 006 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -214,13 +214,13 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 363.373888 +0:The total amount of wall time = 362.737403 Test 007 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -231,13 +231,13 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 348.136087 +0:The total amount of wall time = 349.388516 Test 008 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -248,13 +248,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 291.529130 +0:The total amount of wall time = 290.281312 Test 009 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_p7 Checking test 010 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -301,13 +301,13 @@ Checking test 010 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 286.417017 +0:The total amount of wall time = 287.481724 Test 010 control_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -372,13 +372,13 @@ Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 251.116073 +0:The total amount of wall time = 251.410389 Test 011 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -393,13 +393,13 @@ Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 459.208557 +0:The total amount of wall time = 455.907379 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_control Checking test 013 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -446,13 +446,13 @@ Checking test 013 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.829276 +0:The total amount of wall time = 689.122882 Test 013 rap_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_2threads Checking test 014 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -499,13 +499,13 @@ Checking test 014 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 1210.288212 +0:The total amount of wall time = 1207.352495 Test 014 rap_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_sfcdiff +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_sfcdiff Checking test 015 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -552,13 +552,13 @@ Checking test 015 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 689.541082 +0:The total amount of wall time = 688.194443 Test 015 rap_sfcdiff PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_sfcdiff_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_sfcdiff_restart Checking test 016 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -597,13 +597,13 @@ Checking test 016 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 = 345.044852 +0:The total amount of wall time = 344.604714 Test 016 rap_sfcdiff_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/hrrr_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/hrrr_control Checking test 017 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -650,13 +650,13 @@ Checking test 017 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 664.943413 +0:The total amount of wall time = 667.568020 Test 017 hrrr_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -703,195 +703,195 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 683.737077 +0:The total amount of wall time = 681.073225 Test 018 rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_debug Checking test 019 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 79.986505 +0:The total amount of wall time = 80.286246 Test 019 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_diag_debug Checking test 020 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 87.936087 +0:The total amount of wall time = 88.057576 Test 020 control_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/regional_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/regional_debug Checking test 021 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 131.301016 +0:The total amount of wall time = 131.316046 Test 021 regional_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_control_debug Checking test 022 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 144.827977 +0:The total amount of wall time = 145.679623 Test 022 rap_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_diag_debug Checking test 023 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.319689 +0:The total amount of wall time = 154.591064 Test 023 rap_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rap_noah_sfcdiff_cires_ugwp_debug Checking test 024 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 234.249895 +0:The total amount of wall time = 235.381624 Test 024 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/rrfs_v1beta_debug Checking test 025 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 145.803795 +0:The total amount of wall time = 145.000169 Test 025 rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_thompson_debug Checking test 026 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.650052 +0:The total amount of wall time = 94.316667 Test 026 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_thompson_no_aero_debug Checking test 027 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 91.087418 +0:The total amount of wall time = 91.194171 Test 027 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_thompson_extdiag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_thompson_extdiag_debug Checking test 028 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 101.040805 +0:The total amount of wall time = 102.472343 Test 028 control_thompson_extdiag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_rrtmgp_debug Checking test 029 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 94.679270 +0:The total amount of wall time = 93.582349 Test 029 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 83.558260 +0:The total amount of wall time = 83.304829 Test 030 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 90.785665 +0:The total amount of wall time = 92.315878 Test 031 control_stochy_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/control_debug_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/control_debug_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/control_debug_p7 Checking test 032 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 88.132214 +0:The total amount of wall time = 88.362901 Test 032 control_debug_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/fv3_HAFS_v0_hwrf_thompson_debug Checking test 033 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,13 +956,13 @@ Checking test 033 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 111.524173 +0:The total amount of wall time = 108.949693 Test 033 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -977,13 +977,13 @@ Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 215.276180 +0:The total amount of wall time = 215.066307 Test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/cpld_control_c96_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/cpld_control_c96_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/cpld_control_c96_p7 Checking test 035 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1033,13 +1033,13 @@ Checking test 035 cpld_control_c96_p7 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 = 368.729565 +0:The total amount of wall time = 368.604918 Test 035 cpld_control_c96_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/GNU/cpld_debug_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_61123/cpld_debug_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_8329/cpld_debug_p7 Checking test 036 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1089,11 +1089,11 @@ Checking test 036 cpld_debug_p7 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 = 336.751457 +0:The total amount of wall time = 335.072021 Test 036 cpld_debug_p7 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 11:27:18 MST 2021 -Elapsed time: 00h:29m:41s. Have a nice day! +Wed Dec 15 15:16:09 MST 2021 +Elapsed time: 00h:29m:51s. Have a nice day! diff --git a/tests/RegressionTests_cheyenne.intel.log b/tests/RegressionTests_cheyenne.intel.log index ef624123b5..37f723bc66 100644 --- a/tests/RegressionTests_cheyenne.intel.log +++ b/tests/RegressionTests_cheyenne.intel.log @@ -1,23 +1,23 @@ -Tue Dec 14 14:01:30 MST 2021 +Wed Dec 15 14:31:11 MST 2021 Start Regression test -Compile 001 elapsed time 948 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 394 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 735 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 692 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 830 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 574 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 372 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 353 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 284 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 001 elapsed time 965 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 396 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 737 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 699 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 821 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 576 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 373 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 356 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 290 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug Compile 010 elapsed time 707 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -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 436 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 232 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 598 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 725 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 433 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 223 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-20211214/INTEL/cpld_control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_control_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 253.310412 +0:The total amount of wall time = 249.394496 Test 001 cpld_control_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_control_p7_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -129,13 +129,13 @@ Checking test 002 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 = 358.720127 +0:The total amount of wall time = 359.966034 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_2threads_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -188,13 +188,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 481.664944 +0:The total amount of wall time = 478.436564 Test 003 cpld_2threads_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_decomp_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -247,13 +247,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 247.725442 +0:The total amount of wall time = 249.287012 Test 004 cpld_decomp_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_mpi_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_mpi_p7 Checking test 005 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,13 +306,13 @@ Checking test 005 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -0:The total amount of wall time = 218.105089 +0:The total amount of wall time = 214.298103 Test 005 cpld_mpi_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_bmark_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -357,13 +357,13 @@ 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 = 980.416321 +0:The total amount of wall time = 975.421605 Test 006 cpld_bmark_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_bmark_mpi_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_bmark_mpi_p7 Checking test 007 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -408,13 +408,13 @@ Checking test 007 cpld_bmark_mpi_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.173161 +0:The total amount of wall time = 954.675914 Test 007 cpld_bmark_mpi_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_control_c96_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_control_c96_p7 Checking test 008 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -464,13 +464,13 @@ Checking test 008 cpld_control_c96_p7 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 = 246.172324 +0:The total amount of wall time = 244.250794 Test 008 cpld_control_c96_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_restart_c96_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_restart_c96_p7 Checking test 009 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -520,13 +520,13 @@ Checking test 009 cpld_restart_c96_p7 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 = 125.837117 +0:The total amount of wall time = 127.344020 Test 009 cpld_restart_c96_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_control_c192_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_control_c192_p7 Checking test 010 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -576,13 +576,13 @@ Checking test 010 cpld_control_c192_p7 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 = 1037.750575 +0:The total amount of wall time = 1024.420647 Test 010 cpld_control_c192_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_restart_c192_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_restart_c192_p7 Checking test 011 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -632,13 +632,13 @@ Checking test 011 cpld_restart_c192_p7 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 = 621.714574 +0:The total amount of wall time = 648.687131 Test 011 cpld_restart_c192_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_control_c384_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_control_c384_p7 Checking test 012 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -681,13 +681,13 @@ Checking test 012 cpld_control_c384_p7 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 = 1065.624262 +0:The total amount of wall time = 1093.023162 Test 012 cpld_control_c384_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_restart_c384_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_restart_c384_p7 Checking test 013 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -730,13 +730,13 @@ Checking test 013 cpld_restart_c384_p7 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 = 577.284928 +0:The total amount of wall time = 581.824791 Test 013 cpld_restart_c384_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_debug_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/cpld_debug_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/cpld_debug_p7 Checking test 014 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 014 cpld_debug_p7 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 = 649.797839 +0:The total amount of wall time = 652.275798 Test 014 cpld_debug_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -839,13 +839,13 @@ 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 = 146.188031 +0:The total amount of wall time = 146.837389 Test 015 control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_decomp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -888,13 +888,13 @@ 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 = 151.363013 +0:The total amount of wall time = 152.726591 Test 016 control_decomp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -937,13 +937,13 @@ 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 = 317.994472 +0:The total amount of wall time = 318.047114 Test 017 control_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -982,13 +982,13 @@ 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 = 76.667979 +0:The total amount of wall time = 76.080646 Test 018 control_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_fhzero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1031,13 +1031,13 @@ 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 = 138.737971 +0:The total amount of wall time = 138.732918 Test 019 control_fhzero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_CubedSphereGrid +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1064,13 +1064,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -0:The total amount of wall time = 141.521911 +0:The total amount of wall time = 142.044936 Test 020 control_CubedSphereGrid PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_latlon -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_latlon +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1081,30 +1081,30 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 144.292085 +0:The total amount of wall time = 144.864019 Test 021 control_latlon PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_wrtGauss_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... - Comparing sfcf000.nc .........OK - Comparing sfcf024.nc .........OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc ............ALT CHECK......OK + Comparing atmf000.nc .........OK Comparing atmf024.nc .........OK Comparing GFSFLX.GrbF00 .........OK Comparing GFSFLX.GrbF24 .........OK Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 143.484595 +0:The total amount of wall time = 146.948975 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c48 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_c48 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1143,13 +1143,13 @@ 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 = 422.523939 +0:The total amount of wall time = 422.275263 Test 023 control_c48 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,13 +1160,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 588.529532 +0:The total amount of wall time = 588.753325 Test 024 control_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_c384 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1177,13 +1177,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 1045.142928 +0:The total amount of wall time = 1087.921527 Test 025 control_c384 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_c384gdas +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1226,13 +1226,13 @@ 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 = 901.977815 +0:The total amount of wall time = 943.223380 Test 026 control_c384gdas PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_stochy +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1243,26 +1243,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 93.286003 +0:The total amount of wall time = 95.915983 Test 027 control_stochy PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_stochy_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 50.244565 +0:The total amount of wall time = 50.256889 Test 028 control_stochy_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_lndp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1273,13 +1273,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 87.195839 +0:The total amount of wall time = 87.800200 Test 029 control_lndp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_p7 Checking test 030 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1326,13 +1326,13 @@ Checking test 030 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 161.964132 +0:The total amount of wall time = 161.898869 Test 030 control_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_p7_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 031 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 = 281.013378 +0:The total amount of wall time = 280.224003 Test 031 control_p7_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_restart_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_restart_p7 Checking test 032 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1424,13 +1424,13 @@ Checking test 032 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 87.899659 +0:The total amount of wall time = 87.714079 Test 032 control_restart_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_decomp_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_decomp_p7 Checking test 033 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,13 +1473,13 @@ Checking test 033 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 166.180226 +0:The total amount of wall time = 166.155609 Test 033 control_decomp_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_2threads_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_2threads_p7 Checking test 034 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1522,13 +1522,13 @@ Checking test 034 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 357.875333 +0:The total amount of wall time = 360.906255 Test 034 control_2threads_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1539,26 +1539,26 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 348.645745 +0:The total amount of wall time = 348.893747 Test 035 regional_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 190.680819 +0:The total amount of wall time = 194.117134 Test 036 regional_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_noquilt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_noquilt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1566,13 +1566,13 @@ 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 = 373.251092 +0:The total amount of wall time = 373.811988 Test 037 regional_noquilt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1583,13 +1583,13 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 930.535399 +0:The total amount of wall time = 931.662525 Test 038 regional_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_hafs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_hafs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_hafs Checking test 039 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1598,26 +1598,26 @@ Checking test 039 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -0:The total amount of wall time = 341.244943 +0:The total amount of wall time = 348.983809 Test 039 regional_hafs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_netcdf_parallel -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_netcdf_parallel +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_netcdf_parallel Checking test 040 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK -0:The total amount of wall time = 346.669886 +0:The total amount of wall time = 353.166924 Test 040 regional_netcdf_parallel PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_RRTMGP -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_RRTMGP +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_RRTMGP Checking test 041 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1628,13 +1628,13 @@ Checking test 041 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -0:The total amount of wall time = 608.303776 +0:The total amount of wall time = 650.189847 Test 041 regional_RRTMGP PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 042 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 407.367145 +0:The total amount of wall time = 406.387012 Test 042 rap_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_2threads +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_2threads Checking test 043 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1734,13 +1734,13 @@ Checking test 043 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 866.627125 +0:The total amount of wall time = 872.745773 Test 043 rap_2threads PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_sfcdiff +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1787,13 +1787,13 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 410.250799 +0:The total amount of wall time = 407.967440 Test 044 rap_sfcdiff PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_sfcdiff_restart +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_sfcdiff_restart Checking test 045 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 045 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 = 208.487649 +0:The total amount of wall time = 205.792866 Test 045 rap_sfcdiff_restart PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hrrr_control -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hrrr_control +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hrrr_control Checking test 046 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 046 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 391.427981 +0:The total amount of wall time = 393.498685 Test 046 hrrr_control PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rrfs_v1beta +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rrfs_v1beta Checking test 047 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1938,13 +1938,13 @@ Checking test 047 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0:The total amount of wall time = 398.724747 +0:The total amount of wall time = 402.797571 Test 047 rrfs_v1beta PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_rrtmgp +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_rrtmgp Checking test 048 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1955,13 +1955,13 @@ Checking test 048 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 293.187726 +0:The total amount of wall time = 314.213975 Test 048 control_rrtmgp PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_c192 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_rrtmgp_c192 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_rrtmgp_c192 Checking test 049 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1972,13 +1972,13 @@ Checking test 049 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -0:The total amount of wall time = 790.407137 +0:The total amount of wall time = 795.034059 Test 049 control_rrtmgp_c192 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_csawmg +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_csawmg Checking test 050 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,13 +1989,13 @@ Checking test 050 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 316.392066 +0:The total amount of wall time = 316.594179 Test 050 control_csawmg PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_csawmgt +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_csawmgt Checking test 051 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2006,13 +2006,13 @@ Checking test 051 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 399.418439 +0:The total amount of wall time = 398.243710 Test 051 control_csawmgt PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_flake -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_flake +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_flake Checking test 052 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2023,13 +2023,13 @@ Checking test 052 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 266.914044 +0:The total amount of wall time = 264.385826 Test 052 control_flake PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_ras +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_ras Checking test 053 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2040,13 +2040,13 @@ Checking test 053 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 206.769882 +0:The total amount of wall time = 205.246665 Test 053 control_ras PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_thompson Checking test 054 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,13 +2057,13 @@ Checking test 054 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 258.765557 +0:The total amount of wall time = 258.575044 Test 054 control_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_thompson_no_aero +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_thompson_no_aero Checking test 055 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,13 +2074,13 @@ Checking test 055 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -0:The total amount of wall time = 247.180504 +0:The total amount of wall time = 248.133264 Test 055 control_thompson_no_aero PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/fv3_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2145,13 +2145,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 185.713391 +0:The total amount of wall time = 200.805591 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2166,50 +2166,50 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -0:The total amount of wall time = 348.019141 +0:The total amount of wall time = 348.530177 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wam_repro -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_wam_repro +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_wam_repro Checking test 058 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -0:The total amount of wall time = 136.880580 +0:The total amount of wall time = 136.751926 Test 058 control_wam PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_debug Checking test 059 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 154.834956 +0:The total amount of wall time = 155.135090 Test 059 control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_2threads_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_2threads_debug Checking test 060 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 274.075969 +0:The total amount of wall time = 273.175381 Test 060 control_2threads_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_CubedSphereGrid_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_CubedSphereGrid_debug Checking test 061 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2236,338 +2236,338 @@ Checking test 061 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -0:The total amount of wall time = 169.906369 +0:The total amount of wall time = 168.953956 Test 061 control_CubedSphereGrid_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_wrtGauss_netcdf_parallel_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_wrtGauss_netcdf_parallel_debug Checking test 062 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf001.nc ............ALT CHECK......OK + Comparing sfcf000.nc .........OK + Comparing sfcf001.nc .........OK Comparing atmf000.nc ............ALT CHECK......OK - Comparing atmf001.nc .........OK + Comparing atmf001.nc ............ALT CHECK......OK -0:The total amount of wall time = 159.830899 +0:The total amount of wall time = 160.068641 Test 062 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_stochy_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_stochy_debug Checking test 063 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 177.751214 +0:The total amount of wall time = 177.341338 Test 063 control_stochy_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_lndp_debug Checking test 064 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.325802 +0:The total amount of wall time = 159.921678 Test 064 control_lndp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_rrtmgp_debug Checking test 065 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 188.113148 +0:The total amount of wall time = 186.688034 Test 065 control_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_csawmg_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_csawmg_debug Checking test 066 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 212.466032 +0:The total amount of wall time = 215.759398 Test 066 control_csawmg_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_csawmgt_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_csawmgt_debug Checking test 067 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 247.691413 +0:The total amount of wall time = 246.879896 Test 067 control_csawmgt_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_ras_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_ras_debug Checking test 068 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 161.621838 +0:The total amount of wall time = 161.592520 Test 068 control_ras_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_diag_debug Checking test 069 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 164.161948 +0:The total amount of wall time = 166.678578 Test 069 control_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug_p7 -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_debug_p7 +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_debug_p7 Checking test 070 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 169.014729 +0:The total amount of wall time = 168.935025 Test 070 control_debug_p7 PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_thompson_debug Checking test 071 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 183.420742 +0:The total amount of wall time = 182.102316 Test 071 control_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_thompson_no_aero_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_thompson_no_aero_debug Checking test 072 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 175.387565 +0:The total amount of wall time = 175.187138 Test 072 control_thompson_no_aero_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug_extdiag -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_thompson_extdiag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_thompson_extdiag_debug Checking test 073 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 194.775733 +0:The total amount of wall time = 192.002119 Test 073 control_thompson_extdiag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/regional_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/regional_debug Checking test 074 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -0:The total amount of wall time = 260.436368 +0:The total amount of wall time = 260.001459 Test 074 regional_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_control_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_control_debug Checking test 075 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 284.189821 +0:The total amount of wall time = 286.115699 Test 075 rap_control_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_unified_drag_suite_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_unified_drag_suite_debug Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 285.028341 +0:The total amount of wall time = 282.645817 Test 076 rap_unified_drag_suite_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_diag_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_diag_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_diag_debug Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 298.830755 +0:The total amount of wall time = 297.733585 Test 077 rap_diag_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_cires_ugwp_debug Checking test 078 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 289.943246 +0:The total amount of wall time = 289.065294 Test 078 rap_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_unified_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_unified_ugwp_debug Checking test 079 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 290.584615 +0:The total amount of wall time = 288.503816 Test 079 rap_unified_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_noah_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_noah_debug Checking test 080 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 279.356135 +0:The total amount of wall time = 279.677928 Test 080 rap_noah_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_rrtmgp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_rrtmgp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_rrtmgp_debug Checking test 081 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 497.188935 +0:The total amount of wall time = 492.409591 Test 081 rap_rrtmgp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_lndp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_lndp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_lndp_debug Checking test 082 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 287.255169 +0:The total amount of wall time = 285.698356 Test 082 rap_lndp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_sfcdiff_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_sfcdiff_debug Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.401883 +0:The total amount of wall time = 282.730933 Test 083 rap_sfcdiff_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_flake_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_flake_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 282.854949 +0:The total amount of wall time = 282.758889 Test 084 rap_flake_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rap_noah_sfcdiff_cires_ugwp_debug Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 470.863277 +0:The total amount of wall time = 475.175042 Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/rrfs_v1beta_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/rrfs_v1beta_debug Checking test 086 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -0:The total amount of wall time = 283.014828 +0:The total amount of wall time = 285.151136 Test 086 rrfs_v1beta_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/fv3_HAFS_v0_hwrf_thompson_debug Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2632,24 +2632,24 @@ Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -0:The total amount of wall time = 218.958747 +0:The total amount of wall time = 219.157602 Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_atm Checking test 088 hafs_regional_atm results .... Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing sfcf006.nc .........OK -0:The total amount of wall time = 504.719134 +0:The total amount of wall time = 504.922917 Test 088 hafs_regional_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_atm_ocn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_atm_ocn Checking test 089 hafs_regional_atm_ocn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2658,26 +2658,26 @@ Checking test 089 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 = 413.090133 +0:The total amount of wall time = 411.299686 Test 089 hafs_regional_atm_ocn PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_atm_wav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_atm_wav Checking test 090 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 983.475985 +0:The total amount of wall time = 970.016897 Test 090 hafs_regional_atm_wav PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn_wav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_atm_ocn_wav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_atm_ocn_wav Checking test 091 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2686,57 +2686,57 @@ Checking test 091 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -0:The total amount of wall time = 1044.221232 +0:The total amount of wall time = 1048.167638 Test 091 hafs_regional_atm_ocn_wav PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_1nest_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_1nest_atm Checking test 092 hafs_regional_1nest_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK -0:The total amount of wall time = 1005.097226 +0:The total amount of wall time = 994.135675 Test 092 hafs_regional_1nest_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_telescopic_2nests_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_telescopic_2nests_atm Checking test 093 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 = 1038.135420 +0:The total amount of wall time = 1056.363609 Test 093 hafs_regional_telescopic_2nests_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_1nest_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_global_1nest_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_global_1nest_atm Checking test 094 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc ............ALT CHECK......OK -0:The total amount of wall time = 671.179970 +0:The total amount of wall time = 664.992232 Test 094 hafs_global_1nest_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_multiple_4nests_atm -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_global_multiple_4nests_atm +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_global_multiple_4nests_atm Checking test 095 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 = 1115.410775 +0:The total amount of wall time = 1114.805329 Test 095 hafs_global_multiple_4nests_atm PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_docn +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_docn Checking test 096 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2744,13 +2744,13 @@ Checking test 096 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 = 356.643766 +0:The total amount of wall time = 357.785169 Test 096 hafs_regional_docn PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn_oisst -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_docn_oisst +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_docn_oisst Checking test 097 hafs_regional_docn_oisst results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2758,97 +2758,97 @@ Checking test 097 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 = 356.891437 +0:The total amount of wall time = 357.024561 Test 097 hafs_regional_docn_oisst PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_datm_cdeps -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/hafs_regional_datm_cdeps +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/hafs_regional_datm_cdeps Checking test 098 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 = 1296.895585 +0:The total amount of wall time = 1295.872081 Test 098 hafs_regional_datm_cdeps PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_control_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_control_cfsr Checking test 099 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.535655 +0:The total amount of wall time = 161.974125 Test 099 datm_cdeps_control_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_restart_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_restart_cfsr Checking test 100 datm_cdeps_restart_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 98.788578 +0:The total amount of wall time = 99.505052 Test 100 datm_cdeps_restart_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_control_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_control_gefs Checking test 101 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 = 155.408173 +0:The total amount of wall time = 154.426103 Test 101 datm_cdeps_control_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_stochy_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_stochy_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_stochy_gefs Checking test 102 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 = 156.545311 +0:The total amount of wall time = 156.554998 Test 102 datm_cdeps_stochy_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_bulk_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_bulk_cfsr Checking test 103 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.194723 +0:The total amount of wall time = 162.173243 Test 103 datm_cdeps_bulk_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_bulk_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_bulk_gefs Checking test 104 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.369771 +0:The total amount of wall time = 154.802084 Test 104 datm_cdeps_bulk_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_mx025_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_mx025_cfsr Checking test 105 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2857,13 +2857,13 @@ Checking test 105 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 = 342.884771 +0:The total amount of wall time = 342.227839 Test 105 datm_cdeps_mx025_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_gefs -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_mx025_gefs +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_mx025_gefs Checking test 106 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2872,35 +2872,35 @@ Checking test 106 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.413354 +0:The total amount of wall time = 340.814141 Test 106 datm_cdeps_mx025_gefs PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_multiple_files_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_multiple_files_cfsr Checking test 107 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK -0:The total amount of wall time = 161.157537 +0:The total amount of wall time = 160.967589 Test 107 datm_cdeps_multiple_files_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_debug_cfsr -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/datm_cdeps_debug_cfsr +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/datm_cdeps_debug_cfsr Checking test 108 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -0:The total amount of wall time = 451.714068 +0:The total amount of wall time = 450.312123 Test 108 datm_cdeps_debug_cfsr PASS baseline dir = /glade/p/ral/jntp/GMTB/ufs-weather-model/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atmwav -working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_27178/control_atmwav +working dir = /glade/scratch/dtcufsrt/FV3_RT/rt_44551/control_atmwav Checking test 109 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2944,11 +2944,11 @@ Checking test 109 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -0:The total amount of wall time = 133.414325 +0:The total amount of wall time = 134.235946 Test 109 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 15:08:10 MST 2021 -Elapsed time: 01h:06m:41s. Have a nice day! +Wed Dec 15 15:37:13 MST 2021 +Elapsed time: 01h:06m:03s. Have a nice day! diff --git a/tests/RegressionTests_gaea.intel.log b/tests/RegressionTests_gaea.intel.log index b781094bb9..f7762f4b80 100644 --- a/tests/RegressionTests_gaea.intel.log +++ b/tests/RegressionTests_gaea.intel.log @@ -1,25 +1,23 @@ -Tue Dec 14 14:32:26 EST 2021 +Wed Dec 15 18:33:34 EST 2021 Start Regression test -Test 008 compile FAIL - -Compile 001 elapsed time 588 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 239 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 495 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 481 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 511 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 485 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 456 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 231 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 487 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 486 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 303 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 155 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 439 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 601 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 285 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 479 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 503 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 499 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 497 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 237 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 226 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 219 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 475 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 483 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 291 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 149 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 444 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -72,13 +70,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 269.021161 + 0: The total amount of wall time = 283.532846 Test 001 cpld_control_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_control_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -131,13 +129,13 @@ Checking test 002 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 = 366.859537 + 0: The total amount of wall time = 356.423185 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_2threads_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -190,13 +188,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 291.806927 + 0: The total amount of wall time = 314.427697 Test 003 cpld_2threads_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_decomp_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -249,13 +247,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 233.166048 + 0: The total amount of wall time = 251.268832 Test 004 cpld_decomp_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_mpi_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_mpi_p7 Checking test 005 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -308,13 +306,13 @@ Checking test 005 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 233.202252 + 0: The total amount of wall time = 214.221124 Test 005 cpld_mpi_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_bmark_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -359,13 +357,13 @@ 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 = 987.901130 + 0: The total amount of wall time = 1001.535505 Test 006 cpld_bmark_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_bmark_mpi_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_bmark_mpi_p7 Checking test 007 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -410,13 +408,13 @@ Checking test 007 cpld_bmark_mpi_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 = 959.559791 + 0: The total amount of wall time = 949.291741 Test 007 cpld_bmark_mpi_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_control_c96_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_control_c96_p7 Checking test 008 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -466,13 +464,13 @@ Checking test 008 cpld_control_c96_p7 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 = 228.191820 + 0: The total amount of wall time = 262.752041 Test 008 cpld_control_c96_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_restart_c96_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_restart_c96_p7 Checking test 009 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -522,13 +520,13 @@ Checking test 009 cpld_restart_c96_p7 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 = 139.218938 + 0: The total amount of wall time = 175.155494 Test 009 cpld_restart_c96_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_control_c192_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_control_c192_p7 Checking test 010 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -578,13 +576,13 @@ Checking test 010 cpld_control_c192_p7 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 = 982.039692 + 0: The total amount of wall time = 994.416958 Test 010 cpld_control_c192_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_restart_c192_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_restart_c192_p7 Checking test 011 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -634,13 +632,13 @@ Checking test 011 cpld_restart_c192_p7 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.226627 + 0: The total amount of wall time = 619.606106 Test 011 cpld_restart_c192_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_control_c384_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_control_c384_p7 Checking test 012 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -683,13 +681,13 @@ Checking test 012 cpld_control_c384_p7 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 = 1076.006001 + 0: The total amount of wall time = 1124.196423 Test 012 cpld_control_c384_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_restart_c384_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_restart_c384_p7 Checking test 013 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -732,13 +730,13 @@ Checking test 013 cpld_restart_c384_p7 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 = 623.354391 + 0: The total amount of wall time = 626.516272 Test 013 cpld_restart_c384_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_debug_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/cpld_debug_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/cpld_debug_p7 Checking test 014 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -788,13 +786,13 @@ Checking test 014 cpld_debug_p7 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 = 623.675444 + 0: The total amount of wall time = 676.499031 Test 014 cpld_debug_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -841,13 +839,13 @@ 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 = 140.585113 + 0: The total amount of wall time = 134.478205 Test 015 control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_decomp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -890,13 +888,13 @@ 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 = 136.833874 + 0: The total amount of wall time = 165.866773 Test 016 control_decomp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -939,13 +937,13 @@ 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 = 168.637201 + 0: The total amount of wall time = 172.945162 Test 017 control_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -984,13 +982,13 @@ 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 = 97.091854 + 0: The total amount of wall time = 71.422430 Test 018 control_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_fhzero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1033,13 +1031,13 @@ 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 = 122.915189 + 0: The total amount of wall time = 151.772315 Test 019 control_fhzero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_CubedSphereGrid +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1066,13 +1064,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 129.987516 + 0: The total amount of wall time = 154.122960 Test 020 control_CubedSphereGrid PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_latlon -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_latlon +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1083,13 +1081,13 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 128.554605 + 0: The total amount of wall time = 159.063122 Test 021 control_latlon PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_wrtGauss_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc .........OK @@ -1100,13 +1098,13 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 149.617343 + 0: The total amount of wall time = 134.644078 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c48 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_c48 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1145,13 +1143,13 @@ 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 = 351.870285 +0: The total amount of wall time = 353.332829 Test 023 control_c48 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1162,13 +1160,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 536.982838 + 0: The total amount of wall time = 538.681626 Test 024 control_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_c384 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1179,13 +1177,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 912.106086 + 0: The total amount of wall time = 918.442834 Test 025 control_c384 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_c384gdas +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1228,13 +1226,13 @@ 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 = 836.864866 + 0: The total amount of wall time = 857.101271 Test 026 control_c384gdas PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_stochy +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1245,26 +1243,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 85.668085 + 0: The total amount of wall time = 91.105421 Test 027 control_stochy PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_stochy_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 77.057049 + 0: The total amount of wall time = 48.793313 Test 028 control_stochy_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_lndp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1275,13 +1273,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 79.604327 + 0: The total amount of wall time = 79.803750 Test 029 control_lndp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_p7 Checking test 030 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1328,13 +1326,13 @@ Checking test 030 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 185.812559 + 0: The total amount of wall time = 151.532156 Test 030 control_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_p7_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1381,13 +1379,13 @@ Checking test 031 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 = 238.837837 + 0: The total amount of wall time = 243.081818 Test 031 control_p7_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_restart_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_restart_p7 Checking test 032 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1426,13 +1424,13 @@ Checking test 032 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 106.642338 + 0: The total amount of wall time = 95.994563 Test 032 control_restart_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_decomp_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_decomp_p7 Checking test 033 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1475,13 +1473,13 @@ Checking test 033 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 170.328009 + 0: The total amount of wall time = 153.215505 Test 033 control_decomp_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_2threads_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_2threads_p7 Checking test 034 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1524,13 +1522,13 @@ Checking test 034 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 191.048660 + 0: The total amount of wall time = 192.831861 Test 034 control_2threads_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1541,26 +1539,26 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 340.498606 + 0: The total amount of wall time = 333.798220 Test 035 regional_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 186.542472 + 0: The total amount of wall time = 194.957030 Test 036 regional_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_noquilt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_noquilt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1568,13 +1566,13 @@ 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 = 351.062264 + 0: The total amount of wall time = 353.055614 Test 037 regional_noquilt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1585,13 +1583,13 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 295.107096 + 0: The total amount of wall time = 266.190063 Test 038 regional_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_hafs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_hafs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_hafs Checking test 039 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1600,26 +1598,26 @@ Checking test 039 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 333.264731 + 0: The total amount of wall time = 335.675468 Test 039 regional_hafs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_netcdf_parallel -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_netcdf_parallel +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_netcdf_parallel Checking test 040 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK - 0: The total amount of wall time = 351.408988 + 0: The total amount of wall time = 337.365164 Test 040 regional_netcdf_parallel PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_RRTMGP -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_RRTMGP +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_RRTMGP Checking test 041 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1630,13 +1628,13 @@ Checking test 041 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 591.828441 + 0: The total amount of wall time = 588.049119 Test 041 regional_RRTMGP PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1683,13 +1681,13 @@ Checking test 042 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.341280 + 0: The total amount of wall time = 376.621932 Test 042 rap_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_2threads +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_2threads Checking test 043 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1736,13 +1734,13 @@ Checking test 043 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 503.846060 + 0: The total amount of wall time = 498.625146 Test 043 rap_2threads PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_sfcdiff +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1789,13 +1787,13 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 400.791357 + 0: The total amount of wall time = 400.718310 Test 044 rap_sfcdiff PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_sfcdiff_restart +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_sfcdiff_restart Checking test 045 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1834,13 +1832,13 @@ Checking test 045 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 = 227.385534 + 0: The total amount of wall time = 220.210351 Test 045 rap_sfcdiff_restart PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hrrr_control -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hrrr_control +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hrrr_control Checking test 046 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1887,13 +1885,13 @@ Checking test 046 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 387.601483 + 0: The total amount of wall time = 386.426348 Test 046 hrrr_control PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rrfs_v1beta +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rrfs_v1beta Checking test 047 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1940,13 +1938,13 @@ Checking test 047 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 373.154694 + 0: The total amount of wall time = 447.859297 Test 047 rrfs_v1beta PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_rrtmgp +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_rrtmgp Checking test 048 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1957,13 +1955,13 @@ Checking test 048 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 260.309280 + 0: The total amount of wall time = 264.599204 Test 048 control_rrtmgp PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_c192 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_rrtmgp_c192 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_rrtmgp_c192 Checking test 049 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1974,13 +1972,13 @@ Checking test 049 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 692.230408 + 0: The total amount of wall time = 688.402350 Test 049 control_rrtmgp_c192 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_csawmgt +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_csawmgt Checking test 050 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1991,13 +1989,13 @@ Checking test 050 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 374.030193 + 0: The total amount of wall time = 368.809808 Test 050 control_csawmgt PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_flake -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_flake +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_flake Checking test 051 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2008,13 +2006,13 @@ Checking test 051 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 246.947209 + 0: The total amount of wall time = 267.788885 Test 051 control_flake PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_ras +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_ras Checking test 052 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2025,13 +2023,13 @@ Checking test 052 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 210.546605 + 0: The total amount of wall time = 212.001801 Test 052 control_ras PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_thompson Checking test 053 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2042,13 +2040,13 @@ Checking test 053 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 257.700943 + 0: The total amount of wall time = 255.812370 Test 053 control_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_thompson_no_aero +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_thompson_no_aero Checking test 054 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2059,13 +2057,13 @@ Checking test 054 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.846158 + 0: The total amount of wall time = 230.197711 Test 054 control_thompson_no_aero PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/fv3_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/fv3_HAFS_v0_hwrf_thompson Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2130,13 +2128,13 @@ Checking test 055 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 167.533054 + 0: The total amount of wall time = 169.770076 Test 055 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/fv3_esg_HAFS_v0_hwrf_thompson Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2151,50 +2149,50 @@ Checking test 056 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 327.343393 + 0: The total amount of wall time = 314.896300 Test 056 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wam_repro -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_wam_repro +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_wam_repro Checking test 057 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 116.408758 + 0: The total amount of wall time = 117.317429 Test 057 control_wam PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_debug Checking test 058 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 145.821298 + 0: The total amount of wall time = 149.744329 Test 058 control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_2threads_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_2threads_debug Checking test 059 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 256.573284 + 0: The total amount of wall time = 257.551642 Test 059 control_2threads_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_CubedSphereGrid_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_CubedSphereGrid_debug Checking test 060 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2221,338 +2219,338 @@ Checking test 060 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.684669 + 0: The total amount of wall time = 159.839346 Test 060 control_CubedSphereGrid_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_wrtGauss_netcdf_parallel_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_wrtGauss_netcdf_parallel_debug Checking test 061 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.529465 + 0: The total amount of wall time = 157.909829 Test 061 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_stochy_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_stochy_debug Checking test 062 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 168.008096 + 0: The total amount of wall time = 171.225927 Test 062 control_stochy_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_lndp_debug Checking test 063 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 149.883023 + 0: The total amount of wall time = 154.265186 Test 063 control_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_rrtmgp_debug Checking test 064 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.383093 + 0: The total amount of wall time = 180.457814 Test 064 control_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_csawmg_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_csawmg_debug Checking test 065 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 203.212401 + 0: The total amount of wall time = 216.963452 Test 065 control_csawmg_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_csawmgt_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_csawmgt_debug Checking test 066 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 236.694476 + 0: The total amount of wall time = 250.212226 Test 066 control_csawmgt_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_ras_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_ras_debug Checking test 067 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.782598 + 0: The total amount of wall time = 155.888829 Test 067 control_ras_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_diag_debug Checking test 068 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 154.209627 + 0: The total amount of wall time = 157.249357 Test 068 control_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug_p7 -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_debug_p7 +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_debug_p7 Checking test 069 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.690582 + 0: The total amount of wall time = 169.478455 Test 069 control_debug_p7 PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_thompson_debug Checking test 070 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 173.203540 + 0: The total amount of wall time = 181.779355 Test 070 control_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_thompson_no_aero_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_thompson_no_aero_debug Checking test 071 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.207196 + 0: The total amount of wall time = 172.635375 Test 071 control_thompson_no_aero_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug_extdiag -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_thompson_extdiag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_thompson_extdiag_debug Checking test 072 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 180.923090 + 0: The total amount of wall time = 185.661979 Test 072 control_thompson_extdiag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/regional_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/regional_debug Checking test 073 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 257.710737 + 0: The total amount of wall time = 263.236203 Test 073 regional_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_control_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_control_debug Checking test 074 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 409.062371 + 0: The total amount of wall time = 281.414871 Test 074 rap_control_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_unified_drag_suite_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_unified_drag_suite_debug Checking test 075 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.543782 + 0: The total amount of wall time = 280.111919 Test 075 rap_unified_drag_suite_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_diag_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_diag_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_diag_debug Checking test 076 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 302.547631 + 0: The total amount of wall time = 292.540585 Test 076 rap_diag_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_cires_ugwp_debug Checking test 077 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 293.109459 + 0: The total amount of wall time = 283.968556 Test 077 rap_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_unified_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_unified_ugwp_debug Checking test 078 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.752251 + 0: The total amount of wall time = 284.535946 Test 078 rap_unified_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_noah_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_noah_debug Checking test 079 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 285.028022 + 0: The total amount of wall time = 278.861924 Test 079 rap_noah_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_rrtmgp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_rrtmgp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_rrtmgp_debug Checking test 080 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 486.404278 + 0: The total amount of wall time = 491.251236 Test 080 rap_rrtmgp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_lndp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_lndp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_lndp_debug Checking test 081 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 279.837360 + 0: The total amount of wall time = 281.135789 Test 081 rap_lndp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_sfcdiff_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_sfcdiff_debug Checking test 082 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 274.868176 + 0: The total amount of wall time = 277.802194 Test 082 rap_sfcdiff_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_flake_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_flake_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_flake_debug Checking test 083 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 272.793739 + 0: The total amount of wall time = 281.641765 Test 083 rap_flake_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rap_noah_sfcdiff_cires_ugwp_debug Checking test 084 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 458.896828 + 0: The total amount of wall time = 468.374227 Test 084 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/rrfs_v1beta_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/rrfs_v1beta_debug Checking test 085 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.320298 + 0: The total amount of wall time = 279.255998 Test 085 rrfs_v1beta_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/fv3_HAFS_v0_hwrf_thompson_debug Checking test 086 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2617,13 +2615,13 @@ Checking test 086 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 229.138849 + 0: The total amount of wall time = 212.473373 Test 086 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 087 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2638,52 +2636,52 @@ Checking test 087 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 382.717961 + 0: The total amount of wall time = 386.336711 Test 087 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_atm Checking test 088 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 736.478116 + 0: The total amount of wall time = 309.115040 Test 088 hafs_regional_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_atm_ocn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_atm_ocn Checking test 089 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK + Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 973.303129 + 0: The total amount of wall time = 428.678982 Test 089 hafs_regional_atm_ocn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_atm_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_atm_wav Checking test 090 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1084.135493 + 0: The total amount of wall time = 869.291798 Test 090 hafs_regional_atm_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_atm_ocn_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_atm_ocn_wav Checking test 091 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2692,71 +2690,71 @@ Checking test 091 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 962.164946 + 0: The total amount of wall time = 980.980720 Test 091 hafs_regional_atm_ocn_wav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_1nest_atm Checking test 092 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 616.174553 + 0: The total amount of wall time = 513.709845 Test 092 hafs_regional_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_telescopic_2nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_telescopic_2nests_atm Checking test 093 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 681.293666 + 0: The total amount of wall time = 537.705278 Test 093 hafs_regional_telescopic_2nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_1nest_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_global_1nest_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_global_1nest_atm Checking test 094 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 676.543736 + 0: The total amount of wall time = 258.778537 Test 094 hafs_global_1nest_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_multiple_4nests_atm -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_global_multiple_4nests_atm +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_global_multiple_4nests_atm Checking test 095 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 657.865251 + 0: The total amount of wall time = 546.150773 Test 095 hafs_global_multiple_4nests_atm PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_docn +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_docn Checking test 096 hafs_regional_docn results .... Comparing atmf006.nc .........OK - Comparing sfcf006.nc .........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 = 948.633194 + 0: The total amount of wall time = 383.346769 Test 096 hafs_regional_docn PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn_oisst -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_docn_oisst +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_docn_oisst Checking test 097 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2764,97 +2762,97 @@ Checking test 097 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 = 496.335147 + 0: The total amount of wall time = 346.807448 Test 097 hafs_regional_docn_oisst PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_datm_cdeps -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/hafs_regional_datm_cdeps +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/hafs_regional_datm_cdeps Checking test 098 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 = 1041.135627 + 0: The total amount of wall time = 1084.860255 Test 098 hafs_regional_datm_cdeps PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_control_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_control_cfsr Checking test 099 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.087732 + 0: The total amount of wall time = 150.305457 Test 099 datm_cdeps_control_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_restart_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_restart_cfsr Checking test 100 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 = 84.220576 + 0: The total amount of wall time = 90.359855 Test 100 datm_cdeps_restart_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_control_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_control_gefs Checking test 101 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 146.428907 + 0: The total amount of wall time = 144.600982 Test 101 datm_cdeps_control_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_stochy_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_stochy_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_stochy_gefs Checking test 102 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 = 141.894176 + 0: The total amount of wall time = 145.051510 Test 102 datm_cdeps_stochy_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_bulk_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_bulk_cfsr Checking test 103 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.976427 + 0: The total amount of wall time = 144.472175 Test 103 datm_cdeps_bulk_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_bulk_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_bulk_gefs Checking test 104 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 = 140.873778 + 0: The total amount of wall time = 144.318153 Test 104 datm_cdeps_bulk_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_mx025_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_mx025_cfsr Checking test 105 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2863,13 +2861,13 @@ Checking test 105 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 = 334.983215 + 0: The total amount of wall time = 371.307650 Test 105 datm_cdeps_mx025_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_gefs -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_mx025_gefs +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_mx025_gefs Checking test 106 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2878,35 +2876,35 @@ Checking test 106 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 = 324.870370 + 0: The total amount of wall time = 370.788543 Test 106 datm_cdeps_mx025_gefs PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_multiple_files_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_multiple_files_cfsr Checking test 107 datm_cdeps_multiple_files_cfsr results .... Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 150.102863 + 0: The total amount of wall time = 180.582604 Test 107 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_debug_cfsr -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/datm_cdeps_debug_cfsr +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/datm_cdeps_debug_cfsr Checking test 108 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 361.775814 + 0: The total amount of wall time = 360.044133 Test 108 datm_cdeps_debug_cfsr PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atmwav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_atmwav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_atmwav Checking test 109 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2950,13 +2948,13 @@ Checking test 109 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 119.609329 + 0: The total amount of wall time = 101.064458 Test 109 control_atmwav PASS baseline dir = /lustre/f2/pdata/ncep_shared/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas_wav -working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_47835/control_c384gdas_wav +working dir = /lustre/f2/scratch/emc.nemspara/FV3_RT/rt_43862/control_c384gdas_wav Checking test 110 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3002,11 +3000,11 @@ Checking test 110 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 = 1531.633913 + 0: The total amount of wall time = 1586.445524 Test 110 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 16:01:16 EST 2021 -Elapsed time: 01h:28m:51s. Have a nice day! +Wed Dec 15 20:08:01 EST 2021 +Elapsed time: 01h:34m:27s. Have a nice day! diff --git a/tests/RegressionTests_hera.gnu.log b/tests/RegressionTests_hera.gnu.log index 40b60058a2..21989bca47 100644 --- a/tests/RegressionTests_hera.gnu.log +++ b/tests/RegressionTests_hera.gnu.log @@ -1,15 +1,15 @@ -Tue Dec 14 15:14:58 UTC 2021 +Wed Dec 15 21:18:30 UTC 2021 Start Regression test -Compile 001 elapsed time 195 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_HAFS_v0_hwrf_thompson,FV3_GFS_v16_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 188 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 275 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 004 elapsed time 94 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 005 elapsed time 217 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 006 elapsed time 113 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +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_HAFS_v0_hwrf_thompson,FV3_GFS_v16_nsstNoahmpUGWPv1 -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 280 seconds. -DAPP=ATM -D32BIT=ON -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 004 elapsed time 97 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 005 elapsed time 221 seconds. -DAPP=S2S -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 006 elapsed time 117 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -56,13 +56,13 @@ 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 = 776.410678 + 0: The total amount of wall time = 797.162018 Test 001 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_restart Checking test 002 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -101,13 +101,13 @@ 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 = 389.804489 + 0: The total amount of wall time = 398.084476 Test 002 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_c48 Checking test 003 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -146,13 +146,13 @@ 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 = 671.610099 +0: The total amount of wall time = 678.312800 Test 003 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_stochy Checking test 004 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -163,13 +163,13 @@ Checking test 004 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 604.518059 + 0: The total amount of wall time = 620.620724 Test 004 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_flake Checking test 005 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -180,13 +180,13 @@ Checking test 005 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 1361.257515 + 0: The total amount of wall time = 1387.045887 Test 005 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_rrtmgp Checking test 006 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -197,13 +197,13 @@ Checking test 006 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 874.281755 + 0: The total amount of wall time = 869.783180 Test 006 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_thompson Checking test 007 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -214,13 +214,13 @@ Checking test 007 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 992.491938 + 0: The total amount of wall time = 986.700666 Test 007 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_thompson_no_aero Checking test 008 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -231,13 +231,13 @@ Checking test 008 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 943.209075 + 0: The total amount of wall time = 943.972631 Test 008 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_ras Checking test 009 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -248,13 +248,13 @@ Checking test 009 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 800.374232 + 0: The total amount of wall time = 815.508916 Test 009 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_p7 Checking test 010 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -301,13 +301,13 @@ Checking test 010 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 827.645866 + 0: The total amount of wall time = 828.912998 Test 010 control_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/fv3_HAFS_v0_hwrf_thompson Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -372,13 +372,13 @@ Checking test 011 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 608.901319 + 0: The total amount of wall time = 639.369974 Test 011 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/fv3_esg_HAFS_v0_hwrf_thompson Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -393,13 +393,13 @@ Checking test 012 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 451.333876 + 0: The total amount of wall time = 450.701155 Test 012 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_control Checking test 013 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -446,13 +446,13 @@ Checking test 013 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1378.712686 + 0: The total amount of wall time = 1369.848893 Test 013 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_2threads Checking test 014 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -499,13 +499,13 @@ Checking test 014 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1375.019804 + 0: The total amount of wall time = 1416.277522 Test 014 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_sfcdiff Checking test 015 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -552,13 +552,13 @@ Checking test 015 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1380.279673 + 0: The total amount of wall time = 1410.616184 Test 015 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_sfcdiff_restart Checking test 016 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -597,13 +597,13 @@ Checking test 016 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 = 674.005623 + 0: The total amount of wall time = 687.435723 Test 016 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/hrrr_control Checking test 017 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -650,13 +650,13 @@ Checking test 017 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1344.708498 + 0: The total amount of wall time = 1352.837799 Test 017 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rrfs_v1beta Checking test 018 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -703,195 +703,195 @@ Checking test 018 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 1373.527198 + 0: The total amount of wall time = 1366.014781 Test 018 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_debug Checking test 019 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.343608 + 0: The total amount of wall time = 98.895687 Test 019 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_diag_debug Checking test 020 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 124.566519 + 0: The total amount of wall time = 125.395272 Test 020 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/regional_debug Checking test 021 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 125.800972 + 0: The total amount of wall time = 129.263148 Test 021 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_control_debug Checking test 022 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 167.070473 + 0: The total amount of wall time = 162.518277 Test 022 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_diag_debug Checking test 023 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 208.189627 + 0: The total amount of wall time = 212.208960 Test 023 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rap_noah_sfcdiff_cires_ugwp_debug Checking test 024 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.546279 + 0: The total amount of wall time = 264.020821 Test 024 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/rrfs_v1beta_debug Checking test 025 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.916238 + 0: The total amount of wall time = 166.634919 Test 025 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_thompson_debug Checking test 026 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 113.030823 + 0: The total amount of wall time = 111.331664 Test 026 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_thompson_no_aero_debug Checking test 027 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 112.451782 + 0: The total amount of wall time = 111.893767 Test 027 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_thompson_extdiag_debug Checking test 028 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 134.287134 + 0: The total amount of wall time = 133.081533 Test 028 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_rrtmgp_debug Checking test 029 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 110.673512 + 0: The total amount of wall time = 111.419645 Test 029 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_ras_debug Checking test 030 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 100.698987 + 0: The total amount of wall time = 102.105259 Test 030 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_stochy_debug Checking test 031 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 114.886201 + 0: The total amount of wall time = 113.948185 Test 031 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/control_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/control_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/control_debug_p7 Checking test 032 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 105.678832 + 0: The total amount of wall time = 108.731544 Test 032 control_debug_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/fv3_HAFS_v0_hwrf_thompson_debug Checking test 033 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -956,13 +956,13 @@ Checking test 033 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 130.312059 + 0: The total amount of wall time = 134.343678 Test 033 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -977,13 +977,13 @@ Checking test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 237.966337 + 0: The total amount of wall time = 234.134235 Test 034 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/cpld_control_c96_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/cpld_control_c96_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/cpld_control_c96_p7 Checking test 035 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -1033,13 +1033,13 @@ Checking test 035 cpld_control_c96_p7 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 = 1102.563311 + 0: The total amount of wall time = 1123.885469 Test 035 cpld_control_c96_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/GNU/cpld_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_23035/cpld_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_16613/cpld_debug_p7 Checking test 036 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -1089,11 +1089,11 @@ Checking test 036 cpld_debug_p7 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 = 559.421548 + 0: The total amount of wall time = 562.248012 Test 036 cpld_debug_p7 PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 16:01:17 UTC 2021 -Elapsed time: 00h:46m:20s. Have a nice day! +Wed Dec 15 22:03:50 UTC 2021 +Elapsed time: 00h:45m:20s. Have a nice day! diff --git a/tests/RegressionTests_hera.intel.log b/tests/RegressionTests_hera.intel.log index e0d6211aa5..ca822bd834 100644 --- a/tests/RegressionTests_hera.intel.log +++ b/tests/RegressionTests_hera.intel.log @@ -1,24 +1,24 @@ -Tue Dec 14 16:04:42 UTC 2021 +Wed Dec 15 21:02:39 UTC 2021 Start Regression test -Compile 001 elapsed time 504 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 171 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 715 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 619 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 741 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 602 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 229 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 344 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 624 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 432 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 394 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 267 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 91 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 415 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 015 elapsed time 379 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 511 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 411 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 601 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 533 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 504 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 725 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 238 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 233 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 381 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 374 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 386 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 238 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 97 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 347 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 015 elapsed time 371 seconds. -DAPP=ATMAERO -DCCPP_SUITES=FV3_GFS_v16 -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -71,13 +71,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 206.166875 + 0: The total amount of wall time = 207.333875 Test 001 cpld_control_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -130,13 +130,13 @@ Checking test 002 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 = 278.023699 + 0: The total amount of wall time = 278.845484 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_2threads_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -189,13 +189,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 240.508228 + 0: The total amount of wall time = 241.998953 Test 003 cpld_2threads_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_decomp_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -248,13 +248,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 207.431740 + 0: The total amount of wall time = 208.498756 Test 004 cpld_decomp_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_mpi_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_mpi_p7 Checking test 005 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -307,13 +307,13 @@ Checking test 005 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 173.869799 + 0: The total amount of wall time = 175.709455 Test 005 cpld_mpi_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_bmark_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -358,13 +358,13 @@ 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 = 877.101692 + 0: The total amount of wall time = 905.008215 Test 006 cpld_bmark_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_bmark_mpi_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_bmark_mpi_p7 Checking test 007 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -409,13 +409,13 @@ Checking test 007 cpld_bmark_mpi_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 = 850.847883 + 0: The total amount of wall time = 848.689016 -Test 007 cpld_bmark_mpi_p7 PASS Tries: 2 +Test 007 cpld_bmark_mpi_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_control_c96_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_control_c96_p7 Checking test 008 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -465,13 +465,13 @@ Checking test 008 cpld_control_c96_p7 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 = 201.598545 + 0: The total amount of wall time = 198.956031 Test 008 cpld_control_c96_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_restart_c96_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_restart_c96_p7 Checking test 009 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -521,13 +521,13 @@ Checking test 009 cpld_restart_c96_p7 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 = 109.681323 + 0: The total amount of wall time = 108.426434 Test 009 cpld_restart_c96_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_control_c192_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_control_c192_p7 Checking test 010 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -577,13 +577,13 @@ Checking test 010 cpld_control_c192_p7 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 = 836.037925 + 0: The total amount of wall time = 837.868614 Test 010 cpld_control_c192_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_restart_c192_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_restart_c192_p7 Checking test 011 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -633,13 +633,13 @@ Checking test 011 cpld_restart_c192_p7 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 = 549.320971 + 0: The total amount of wall time = 559.643022 Test 011 cpld_restart_c192_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_control_c384_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_control_c384_p7 Checking test 012 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -682,13 +682,13 @@ Checking test 012 cpld_control_c384_p7 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 = 1014.764612 + 0: The total amount of wall time = 994.432439 Test 012 cpld_control_c384_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_restart_c384_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_restart_c384_p7 Checking test 013 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -731,13 +731,13 @@ Checking test 013 cpld_restart_c384_p7 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 = 561.615504 + 0: The total amount of wall time = 564.177851 Test 013 cpld_restart_c384_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/cpld_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/cpld_debug_p7 Checking test 014 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -787,13 +787,13 @@ Checking test 014 cpld_debug_p7 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 = 620.471341 + 0: The total amount of wall time = 603.891399 Test 014 cpld_debug_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -840,13 +840,13 @@ 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 = 120.167420 + 0: The total amount of wall time = 120.668332 Test 015 control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_decomp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -889,13 +889,13 @@ 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 = 125.943347 + 0: The total amount of wall time = 125.720264 Test 016 control_decomp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -938,13 +938,13 @@ 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 = 146.411548 + 0: The total amount of wall time = 144.234245 Test 017 control_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -983,13 +983,13 @@ 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 = 63.197607 + 0: The total amount of wall time = 62.837307 Test 018 control_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_fhzero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1032,13 +1032,13 @@ 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 = 112.133139 + 0: The total amount of wall time = 113.148601 Test 019 control_fhzero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_CubedSphereGrid +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1065,13 +1065,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 114.308662 + 0: The total amount of wall time = 114.915146 Test 020 control_CubedSphereGrid PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_latlon -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_latlon +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1082,13 +1082,13 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 117.135335 + 0: The total amount of wall time = 117.488551 Test 021 control_latlon PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_wrtGauss_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1099,13 +1099,13 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 119.705007 + 0: The total amount of wall time = 120.391703 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c48 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_c48 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1144,13 +1144,13 @@ 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 = 313.491307 +0: The total amount of wall time = 313.856585 Test 023 control_c48 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1161,13 +1161,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 454.704447 + 0: The total amount of wall time = 455.011103 Test 024 control_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_c384 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1178,13 +1178,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 766.709275 + 0: The total amount of wall time = 777.718211 Test 025 control_c384 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_c384gdas +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1227,13 +1227,13 @@ 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 = 674.734424 + 0: The total amount of wall time = 669.248698 Test 026 control_c384gdas PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_stochy +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1244,26 +1244,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 78.196642 + 0: The total amount of wall time = 78.880772 Test 027 control_stochy PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_stochy_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 42.548256 + 0: The total amount of wall time = 42.699059 Test 028 control_stochy_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_lndp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1274,13 +1274,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 72.076847 + 0: The total amount of wall time = 72.522961 Test 029 control_lndp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_p7 Checking test 030 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1327,13 +1327,13 @@ Checking test 030 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 134.530907 + 0: The total amount of wall time = 134.702339 Test 030 control_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_p7_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1380,13 +1380,13 @@ Checking test 031 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 = 206.217655 + 0: The total amount of wall time = 209.146268 Test 031 control_p7_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_restart_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_restart_p7 Checking test 032 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1425,13 +1425,13 @@ Checking test 032 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 71.836660 + 0: The total amount of wall time = 72.176459 Test 032 control_restart_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_decomp_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_decomp_p7 Checking test 033 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1474,13 +1474,13 @@ Checking test 033 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 139.442705 + 0: The total amount of wall time = 140.262457 Test 033 control_decomp_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_2threads_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_2threads_p7 Checking test 034 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1523,13 +1523,13 @@ Checking test 034 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.635140 + 0: The total amount of wall time = 166.880370 Test 034 control_2threads_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1540,26 +1540,26 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 296.209108 + 0: The total amount of wall time = 295.308834 Test 035 regional_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 167.552827 + 0: The total amount of wall time = 168.711498 Test 036 regional_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_noquilt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_noquilt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1567,13 +1567,13 @@ 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 = 307.344407 + 0: The total amount of wall time = 307.624346 Test 037 regional_noquilt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1584,13 +1584,13 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 215.699334 + 0: The total amount of wall time = 217.137878 Test 038 regional_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_hafs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_hafs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_hafs Checking test 039 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1599,26 +1599,26 @@ Checking test 039 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 291.865493 + 0: The total amount of wall time = 292.651761 Test 039 regional_hafs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_netcdf_parallel -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_netcdf_parallel +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_netcdf_parallel Checking test 040 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 292.444333 + 0: The total amount of wall time = 291.543889 Test 040 regional_netcdf_parallel PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_RRTMGP -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_RRTMGP +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_RRTMGP Checking test 041 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1629,13 +1629,13 @@ Checking test 041 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 466.078307 + 0: The total amount of wall time = 466.963986 Test 041 regional_RRTMGP PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1682,13 +1682,13 @@ Checking test 042 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 339.571154 + 0: The total amount of wall time = 343.316809 Test 042 rap_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_2threads +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_2threads Checking test 043 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1735,13 +1735,13 @@ Checking test 043 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 427.641529 + 0: The total amount of wall time = 430.237529 Test 043 rap_2threads PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_sfcdiff +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1788,13 +1788,13 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 340.014349 + 0: The total amount of wall time = 340.605097 Test 044 rap_sfcdiff PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_sfcdiff_restart +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_sfcdiff_restart Checking test 045 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1833,13 +1833,13 @@ Checking test 045 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 = 172.844730 + 0: The total amount of wall time = 172.835656 Test 045 rap_sfcdiff_restart PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hrrr_control -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hrrr_control +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hrrr_control Checking test 046 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1886,13 +1886,13 @@ Checking test 046 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 327.953936 + 0: The total amount of wall time = 328.995294 Test 046 hrrr_control PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rrfs_v1beta +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rrfs_v1beta Checking test 047 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1939,13 +1939,13 @@ Checking test 047 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 334.031854 + 0: The total amount of wall time = 336.547139 Test 047 rrfs_v1beta PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_rrtmgp +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_rrtmgp Checking test 048 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1956,13 +1956,13 @@ Checking test 048 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.715051 + 0: The total amount of wall time = 223.424239 Test 048 control_rrtmgp PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_c192 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_rrtmgp_c192 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_rrtmgp_c192 Checking test 049 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1973,13 +1973,13 @@ Checking test 049 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 578.690229 + 0: The total amount of wall time = 589.837435 Test 049 control_rrtmgp_c192 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_csawmg +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_csawmg Checking test 050 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1990,13 +1990,13 @@ Checking test 050 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 241.896395 + 0: The total amount of wall time = 240.942267 Test 050 control_csawmg PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_csawmgt +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_csawmgt Checking test 051 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2007,13 +2007,13 @@ Checking test 051 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 299.061183 + 0: The total amount of wall time = 300.097932 Test 051 control_csawmgt PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_flake -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_flake +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_flake Checking test 052 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2024,13 +2024,13 @@ Checking test 052 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 212.575338 + 0: The total amount of wall time = 212.057166 Test 052 control_flake PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_ras +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_ras Checking test 053 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2041,13 +2041,13 @@ Checking test 053 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 162.706338 + 0: The total amount of wall time = 163.789950 Test 053 control_ras PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_thompson Checking test 054 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2058,13 +2058,13 @@ Checking test 054 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 202.285763 + 0: The total amount of wall time = 204.566666 Test 054 control_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_thompson_no_aero +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_thompson_no_aero Checking test 055 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2075,13 +2075,13 @@ Checking test 055 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 194.299779 + 0: The total amount of wall time = 195.159712 Test 055 control_thompson_no_aero PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/fv3_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2146,13 +2146,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 146.935423 + 0: The total amount of wall time = 145.998272 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2167,50 +2167,50 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 295.756903 + 0: The total amount of wall time = 290.969706 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wam_repro -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_wam_repro +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_wam_repro Checking test 058 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 109.628450 + 0: The total amount of wall time = 108.780258 Test 058 control_wam PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_debug Checking test 059 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 142.731654 + 0: The total amount of wall time = 144.745161 Test 059 control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_2threads_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_2threads_debug Checking test 060 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 209.917385 + 0: The total amount of wall time = 212.278175 Test 060 control_2threads_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_CubedSphereGrid_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_CubedSphereGrid_debug Checking test 061 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2237,338 +2237,338 @@ Checking test 061 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 155.089985 + 0: The total amount of wall time = 155.777338 Test 061 control_CubedSphereGrid_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_wrtGauss_netcdf_parallel_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_wrtGauss_netcdf_parallel_debug Checking test 062 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 146.921581 + 0: The total amount of wall time = 148.688324 Test 062 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_stochy_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_stochy_debug Checking test 063 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 163.304337 + 0: The total amount of wall time = 164.241429 Test 063 control_stochy_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_lndp_debug Checking test 064 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 146.847472 + 0: The total amount of wall time = 153.448375 Test 064 control_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_rrtmgp_debug Checking test 065 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 175.080164 + 0: The total amount of wall time = 176.248692 Test 065 control_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_csawmg_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_csawmg_debug Checking test 066 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 189.405724 + 0: The total amount of wall time = 194.984048 Test 066 control_csawmg_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_csawmgt_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_csawmgt_debug Checking test 067 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.703345 + 0: The total amount of wall time = 224.725582 Test 067 control_csawmgt_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_ras_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_ras_debug Checking test 068 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 148.913425 + 0: The total amount of wall time = 147.285399 Test 068 control_ras_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_diag_debug Checking test 069 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 153.099555 + 0: The total amount of wall time = 156.929286 Test 069 control_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug_p7 -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_debug_p7 +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_debug_p7 Checking test 070 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.534489 + 0: The total amount of wall time = 153.886009 Test 070 control_debug_p7 PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_thompson_debug Checking test 071 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 170.061606 + 0: The total amount of wall time = 170.838472 Test 071 control_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_thompson_no_aero_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_thompson_no_aero_debug Checking test 072 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.544643 + 0: The total amount of wall time = 162.585339 Test 072 control_thompson_no_aero_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug_extdiag -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_thompson_extdiag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_thompson_extdiag_debug Checking test 073 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 176.672985 + 0: The total amount of wall time = 178.882009 Test 073 control_thompson_extdiag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/regional_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/regional_debug Checking test 074 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 238.505292 + 0: The total amount of wall time = 240.647365 Test 074 regional_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_control_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_control_debug Checking test 075 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.533071 + 0: The total amount of wall time = 265.147045 Test 075 rap_control_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_unified_drag_suite_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_unified_drag_suite_debug Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 261.995306 + 0: The total amount of wall time = 256.762310 Test 076 rap_unified_drag_suite_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_diag_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_diag_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_diag_debug Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 282.104627 + 0: The total amount of wall time = 283.258305 Test 077 rap_diag_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_cires_ugwp_debug Checking test 078 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.764325 + 0: The total amount of wall time = 272.909465 Test 078 rap_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_unified_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_unified_ugwp_debug Checking test 079 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.310405 + 0: The total amount of wall time = 265.860531 Test 079 rap_unified_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_noah_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_noah_debug Checking test 080 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.368546 + 0: The total amount of wall time = 259.153279 Test 080 rap_noah_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_rrtmgp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_rrtmgp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_rrtmgp_debug Checking test 081 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 464.103409 + 0: The total amount of wall time = 448.398470 Test 081 rap_rrtmgp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_lndp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_lndp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_lndp_debug Checking test 082 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 267.538727 + 0: The total amount of wall time = 260.725820 Test 082 rap_lndp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_sfcdiff_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_sfcdiff_debug Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 264.149764 + 0: The total amount of wall time = 258.658292 Test 083 rap_sfcdiff_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_flake_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_flake_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 260.581151 + 0: The total amount of wall time = 262.300587 Test 084 rap_flake_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rap_noah_sfcdiff_cires_ugwp_debug Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 439.637438 + 0: The total amount of wall time = 438.472058 Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/rrfs_v1beta_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/rrfs_v1beta_debug Checking test 086 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 257.180902 + 0: The total amount of wall time = 263.530561 Test 086 rrfs_v1beta_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/fv3_HAFS_v0_hwrf_thompson_debug Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2633,13 +2633,13 @@ Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 199.369101 + 0: The total amount of wall time = 201.205393 Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2654,125 +2654,125 @@ Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 389.329028 + 0: The total amount of wall time = 390.441756 Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/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 = 262.711011 + 0: The total amount of wall time = 263.287962 Test 089 hafs_regional_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_atm_ocn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_atm_ocn Checking test 090 hafs_regional_atm_ocn results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 369.343234 + 0: The total amount of wall time = 360.972101 Test 090 hafs_regional_atm_ocn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_atm_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_atm_wav Checking test 091 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 716.969687 + 0: The total amount of wall time = 723.763045 Test 091 hafs_regional_atm_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_atm_ocn_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_atm_ocn_wav Checking test 092 hafs_regional_atm_ocn_wav results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing archv.2019_241_06.a .........OK Comparing archs.2019_241_06.a .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 820.546939 + 0: The total amount of wall time = 817.675316 Test 092 hafs_regional_atm_ocn_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_1nest_atm Checking test 093 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 393.724688 + 0: The total amount of wall time = 395.955583 Test 093 hafs_regional_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_telescopic_2nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_telescopic_2nests_atm Checking test 094 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 419.801008 + 0: The total amount of wall time = 423.061565 Test 094 hafs_regional_telescopic_2nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_1nest_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_global_1nest_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_global_1nest_atm Checking test 095 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 192.354099 + 0: The total amount of wall time = 194.243135 Test 095 hafs_global_1nest_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_multiple_4nests_atm -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_global_multiple_4nests_atm +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_global_multiple_4nests_atm Checking test 096 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 428.451285 + 0: The total amount of wall time = 432.281992 Test 096 hafs_global_multiple_4nests_atm PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_docn +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_docn Checking test 097 hafs_regional_docn results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 338.663186 + 0: The total amount of wall time = 345.805969 Test 097 hafs_regional_docn PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn_oisst -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_docn_oisst +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_docn_oisst Checking test 098 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2780,97 +2780,97 @@ Checking test 098 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 = 342.437270 + 0: The total amount of wall time = 339.853385 Test 098 hafs_regional_docn_oisst PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_datm_cdeps -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/hafs_regional_datm_cdeps +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/hafs_regional_datm_cdeps Checking test 099 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 = 939.190282 + 0: The total amount of wall time = 938.700369 Test 099 hafs_regional_datm_cdeps PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_control_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_control_cfsr Checking test 100 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 = 141.026928 + 0: The total amount of wall time = 141.784116 Test 100 datm_cdeps_control_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_restart_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_restart_cfsr Checking test 101 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 = 89.111313 + 0: The total amount of wall time = 90.678918 Test 101 datm_cdeps_restart_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_control_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_control_gefs Checking test 102 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 = 136.829184 + 0: The total amount of wall time = 138.397414 Test 102 datm_cdeps_control_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_stochy_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_stochy_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_stochy_gefs Checking test 103 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.831875 + 0: The total amount of wall time = 140.243749 Test 103 datm_cdeps_stochy_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_bulk_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_bulk_cfsr Checking test 104 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 144.386647 + 0: The total amount of wall time = 142.206137 Test 104 datm_cdeps_bulk_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_bulk_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_bulk_gefs Checking test 105 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.516523 + 0: The total amount of wall time = 136.896627 Test 105 datm_cdeps_bulk_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_mx025_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_mx025_cfsr Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2879,13 +2879,13 @@ Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 305.417683 + 0: The total amount of wall time = 313.317711 Test 106 datm_cdeps_mx025_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_gefs -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_mx025_gefs +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_mx025_gefs Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2894,35 +2894,35 @@ Checking test 107 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.023152 + 0: The total amount of wall time = 301.687019 Test 107 datm_cdeps_mx025_gefs PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_multiple_files_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_multiple_files_cfsr Checking test 108 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 = 141.028651 + 0: The total amount of wall time = 141.786369 Test 108 datm_cdeps_multiple_files_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_debug_cfsr -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/datm_cdeps_debug_cfsr +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/datm_cdeps_debug_cfsr Checking test 109 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 440.472507 + 0: The total amount of wall time = 441.715839 Test 109 datm_cdeps_debug_cfsr PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atmwav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_atmwav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_atmwav Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2966,13 +2966,13 @@ Checking test 110 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 77.464320 + 0: The total amount of wall time = 77.880494 Test 110 control_atmwav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas_wav -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_c384gdas_wav +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_c384gdas_wav Checking test 111 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3018,13 +3018,13 @@ Checking test 111 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 = 677.289980 + 0: The total amount of wall time = 679.018637 Test 111 control_c384gdas_wav PASS baseline dir = /scratch1/NCEPDEV/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atm_aerosols -working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_15137/control_atm_aerosols +working dir = /scratch1/NCEPDEV/stmp2/emc.nemspara/FV3_RT/rt_11218/control_atm_aerosols Checking test 112 control_atm_aerosols results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -3071,11 +3071,11 @@ Checking test 112 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 = 273.771988 + 0: The total amount of wall time = 273.543598 Test 112 control_atm_aerosols PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 17:07:50 UTC 2021 -Elapsed time: 01h:03m:09s. Have a nice day! +Wed Dec 15 21:55:47 UTC 2021 +Elapsed time: 00h:53m:08s. Have a nice day! diff --git a/tests/RegressionTests_jet.intel.log b/tests/RegressionTests_jet.intel.log index a1dd48430e..e313aeaf4f 100644 --- a/tests/RegressionTests_jet.intel.log +++ b/tests/RegressionTests_jet.intel.log @@ -1,23 +1,23 @@ -Wed Dec 15 07:14:41 GMT 2021 +Wed Dec 15 23:46:37 GMT 2021 Start Regression test -Compile 001 elapsed time 1635 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 002 elapsed time 245 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1433 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 004 elapsed time 1424 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 1536 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 006 elapsed time 834 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 233 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 220 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_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1446 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -Compile 011 elapsed time 1463 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 278 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON -Compile 013 elapsed time 132 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 1408 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 001 elapsed time 1608 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 002 elapsed time 234 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -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_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 004 elapsed time 1414 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 1518 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 006 elapsed time 827 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 234 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 227 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 214 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 1453 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON +Compile 011 elapsed time 1462 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 282 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DSIMDMULTIARCH=ON -DMOM6SOLO=ON +Compile 013 elapsed time 128 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 1403 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-20211214/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 301.817834 + 0: The total amount of wall time = 295.146502 Test 001 cpld_control_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -129,13 +129,13 @@ Checking test 002 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 = 382.186750 + 0: The total amount of wall time = 384.096017 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_2threads_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -188,13 +188,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 997.279039 + 0: The total amount of wall time = 984.886958 Test 003 cpld_2threads_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_mpi_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_mpi_p7 Checking test 004 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -247,13 +247,13 @@ Checking test 004 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 285.406698 + 0: The total amount of wall time = 254.828600 Test 004 cpld_mpi_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_bmark_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_bmark_p7 Checking test 005 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -298,13 +298,13 @@ 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 = 1209.165095 + 0: The total amount of wall time = 1184.860931 Test 005 cpld_bmark_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_bmark_mpi_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_bmark_mpi_p7 Checking test 006 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -349,13 +349,13 @@ Checking test 006 cpld_bmark_mpi_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 = 1192.801274 + 0: The total amount of wall time = 1201.034565 Test 006 cpld_bmark_mpi_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_control_c96_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_control_c96_p7 Checking test 007 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -405,13 +405,13 @@ Checking test 007 cpld_control_c96_p7 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 = 294.070170 + 0: The total amount of wall time = 301.915232 Test 007 cpld_control_c96_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_restart_c96_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_restart_c96_p7 Checking test 008 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -461,13 +461,13 @@ Checking test 008 cpld_restart_c96_p7 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 = 157.489996 + 0: The total amount of wall time = 160.313389 Test 008 cpld_restart_c96_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_control_c192_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_control_c192_p7 Checking test 009 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -517,13 +517,13 @@ Checking test 009 cpld_control_c192_p7 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 = 1219.112758 + 0: The total amount of wall time = 1202.139740 Test 009 cpld_control_c192_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_restart_c192_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_restart_c192_p7 Checking test 010 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -573,13 +573,13 @@ Checking test 010 cpld_restart_c192_p7 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 = 786.544885 + 0: The total amount of wall time = 784.476409 Test 010 cpld_restart_c192_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_control_c384_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_control_c384_p7 Checking test 011 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -622,13 +622,13 @@ Checking test 011 cpld_control_c384_p7 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 = 1374.208293 + 0: The total amount of wall time = 1353.121799 Test 011 cpld_control_c384_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_restart_c384_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_restart_c384_p7 Checking test 012 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -671,13 +671,13 @@ Checking test 012 cpld_restart_c384_p7 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 = 749.667718 + 0: The total amount of wall time = 733.359460 Test 012 cpld_restart_c384_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_debug_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/cpld_debug_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/cpld_debug_p7 Checking test 013 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -727,13 +727,13 @@ Checking test 013 cpld_debug_p7 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 = 806.923134 + 0: The total amount of wall time = 800.720098 Test 013 cpld_debug_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control Checking test 014 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -780,13 +780,13 @@ Checking test 014 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 171.124226 + 0: The total amount of wall time = 170.867766 Test 014 control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_decomp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_decomp Checking test 015 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -829,13 +829,13 @@ Checking test 015 control_decomp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 180.267853 + 0: The total amount of wall time = 185.330396 Test 015 control_decomp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_2threads +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_2threads Checking test 016 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -878,13 +878,13 @@ Checking test 016 control_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 812.762192 + 0: The total amount of wall time = 821.470198 Test 016 control_2threads PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_restart Checking test 017 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -923,13 +923,13 @@ Checking test 017 control_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.666977 + 0: The total amount of wall time = 92.162556 Test 017 control_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_fhzero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_fhzero Checking test 018 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -972,13 +972,13 @@ Checking test 018 control_fhzero results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 164.943584 + 0: The total amount of wall time = 160.243316 Test 018 control_fhzero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_CubedSphereGrid +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_CubedSphereGrid Checking test 019 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1005,13 +1005,13 @@ Checking test 019 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 166.177639 + 0: The total amount of wall time = 160.458473 Test 019 control_CubedSphereGrid PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_latlon -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_latlon +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_latlon Checking test 020 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1022,13 +1022,13 @@ Checking test 020 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.488642 + 0: The total amount of wall time = 172.948770 Test 020 control_latlon PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_wrtGauss_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_wrtGauss_netcdf_parallel Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1039,13 +1039,13 @@ Checking test 021 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 172.611072 + 0: The total amount of wall time = 169.569929 Test 021 control_wrtGauss_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c48 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_c48 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_c48 Checking test 022 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1084,13 +1084,13 @@ Checking test 022 control_c48 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -0: The total amount of wall time = 537.550337 +0: The total amount of wall time = 538.833976 Test 022 control_c48 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_c192 Checking test 023 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1101,13 +1101,13 @@ Checking test 023 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 673.035109 + 0: The total amount of wall time = 652.789675 Test 023 control_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_c384 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_c384 Checking test 024 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1118,13 +1118,13 @@ Checking test 024 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 806.014711 + 0: The total amount of wall time = 817.568932 Test 024 control_c384 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_c384gdas +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_c384gdas Checking test 025 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1167,13 +1167,13 @@ Checking test 025 control_c384gdas results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 761.678062 + 0: The total amount of wall time = 758.064818 Test 025 control_c384gdas PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_stochy +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_stochy Checking test 026 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1184,26 +1184,26 @@ Checking test 026 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 111.981276 + 0: The total amount of wall time = 115.957995 Test 026 control_stochy PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_stochy_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_stochy_restart Checking test 027 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 63.229896 + 0: The total amount of wall time = 62.544461 Test 027 control_stochy_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_lndp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_lndp Checking test 028 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1214,13 +1214,13 @@ Checking test 028 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 102.195813 + 0: The total amount of wall time = 101.541153 Test 028 control_lndp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_p7 Checking test 029 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1267,13 +1267,13 @@ Checking test 029 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 192.632454 + 0: The total amount of wall time = 190.279607 Test 029 control_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_p7_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_p7_rrtmgp Checking test 030 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1320,13 +1320,13 @@ Checking test 030 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 = 289.376334 + 0: The total amount of wall time = 288.056278 Test 030 control_p7_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_restart_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_restart_p7 Checking test 031 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1365,13 +1365,13 @@ Checking test 031 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 109.721075 + 0: The total amount of wall time = 111.077154 Test 031 control_restart_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_decomp_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_decomp_p7 Checking test 032 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1414,13 +1414,13 @@ Checking test 032 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 199.246177 + 0: The total amount of wall time = 196.718416 Test 032 control_decomp_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_2threads_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_2threads_p7 Checking test 033 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1463,13 +1463,13 @@ Checking test 033 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 849.511484 + 0: The total amount of wall time = 757.982144 Test 033 control_2threads_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_control Checking test 034 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1480,26 +1480,26 @@ Checking test 034 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 421.000411 + 0: The total amount of wall time = 420.377501 Test 034 regional_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_restart Checking test 035 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 236.858566 + 0: The total amount of wall time = 237.613620 Test 035 regional_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_noquilt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_noquilt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_noquilt Checking test 036 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1507,13 +1507,13 @@ Checking test 036 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 = 443.461345 + 0: The total amount of wall time = 445.453209 Test 036 regional_noquilt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_hafs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_hafs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_hafs Checking test 037 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1522,26 +1522,26 @@ Checking test 037 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 420.859911 + 0: The total amount of wall time = 413.285265 Test 037 regional_hafs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_netcdf_parallel -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_netcdf_parallel +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_netcdf_parallel Checking test 038 regional_netcdf_parallel results .... - Comparing dynf000.nc ............ALT CHECK......OK + Comparing dynf000.nc .........OK Comparing dynf024.nc ............ALT CHECK......OK Comparing phyf000.nc ............ALT CHECK......OK Comparing phyf024.nc ............ALT CHECK......OK - 0: The total amount of wall time = 417.647110 + 0: The total amount of wall time = 420.971507 Test 038 regional_netcdf_parallel PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_RRTMGP -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_RRTMGP +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_RRTMGP Checking test 039 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1552,13 +1552,13 @@ Checking test 039 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 676.611653 + 0: The total amount of wall time = 676.655974 Test 039 regional_RRTMGP PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_control Checking test 040 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1605,13 +1605,13 @@ Checking test 040 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 469.154517 + 0: The total amount of wall time = 469.670053 Test 040 rap_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_sfcdiff +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_sfcdiff Checking test 041 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1658,13 +1658,13 @@ Checking test 041 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 467.294497 + 0: The total amount of wall time = 473.588806 Test 041 rap_sfcdiff PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_sfcdiff_restart +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_sfcdiff_restart Checking test 042 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1703,13 +1703,13 @@ Checking test 042 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 = 244.330712 + 0: The total amount of wall time = 247.977012 Test 042 rap_sfcdiff_restart PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hrrr_control -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hrrr_control +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hrrr_control Checking test 043 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1756,13 +1756,13 @@ Checking test 043 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 451.162223 + 0: The total amount of wall time = 456.336734 Test 043 hrrr_control PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rrfs_v1beta +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rrfs_v1beta Checking test 044 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1809,13 +1809,13 @@ Checking test 044 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 458.509781 + 0: The total amount of wall time = 463.968026 Test 044 rrfs_v1beta PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_rrtmgp +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_rrtmgp Checking test 045 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1826,13 +1826,13 @@ Checking test 045 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 307.272836 + 0: The total amount of wall time = 303.093477 Test 045 control_rrtmgp PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_c192 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_rrtmgp_c192 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_rrtmgp_c192 Checking test 046 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1843,13 +1843,13 @@ Checking test 046 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 798.078064 + 0: The total amount of wall time = 801.199251 Test 046 control_rrtmgp_c192 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_csawmg +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_csawmg Checking test 047 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1860,13 +1860,13 @@ Checking test 047 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 350.628699 + 0: The total amount of wall time = 341.703890 Test 047 control_csawmg PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_csawmgt +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_csawmgt Checking test 048 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1877,13 +1877,13 @@ Checking test 048 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 418.266357 + 0: The total amount of wall time = 423.323615 Test 048 control_csawmgt PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_flake -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_flake +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_flake Checking test 049 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1894,13 +1894,13 @@ Checking test 049 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 281.500675 + 0: The total amount of wall time = 279.864541 Test 049 control_flake PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_ras +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_ras Checking test 050 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1911,13 +1911,13 @@ Checking test 050 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 228.342332 + 0: The total amount of wall time = 234.655148 Test 050 control_ras PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_thompson Checking test 051 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1928,13 +1928,13 @@ Checking test 051 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 286.113111 + 0: The total amount of wall time = 285.896121 Test 051 control_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_thompson_no_aero +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_thompson_no_aero Checking test 052 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1945,13 +1945,13 @@ Checking test 052 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 274.750821 + 0: The total amount of wall time = 318.245439 Test 052 control_thompson_no_aero PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/fv3_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/fv3_HAFS_v0_hwrf_thompson Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2016,13 +2016,13 @@ Checking test 053 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 200.649259 + 0: The total amount of wall time = 208.363520 Test 053 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/fv3_esg_HAFS_v0_hwrf_thompson Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2037,50 +2037,50 @@ Checking test 054 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 373.059223 + 0: The total amount of wall time = 372.139597 Test 054 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wam_repro -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_wam_repro +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_wam_repro Checking test 055 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 150.417463 + 0: The total amount of wall time = 152.962762 Test 055 control_wam PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_debug Checking test 056 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 192.924620 + 0: The total amount of wall time = 190.020137 Test 056 control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_2threads_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_2threads_debug Checking test 057 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 364.412241 + 0: The total amount of wall time = 368.030322 Test 057 control_2threads_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_CubedSphereGrid_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_CubedSphereGrid_debug Checking test 058 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2107,338 +2107,338 @@ Checking test 058 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 209.103232 + 0: The total amount of wall time = 206.086920 Test 058 control_CubedSphereGrid_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_wrtGauss_netcdf_parallel_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_wrtGauss_netcdf_parallel_debug Checking test 059 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc ............ALT CHECK......OK - 0: The total amount of wall time = 193.229408 + 0: The total amount of wall time = 193.684154 Test 059 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_stochy_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_stochy_debug Checking test 060 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 220.291958 + 0: The total amount of wall time = 219.591897 Test 060 control_stochy_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_lndp_debug Checking test 061 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 193.182334 + 0: The total amount of wall time = 195.378534 Test 061 control_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_rrtmgp_debug Checking test 062 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 224.499396 + 0: The total amount of wall time = 227.756853 Test 062 control_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_csawmg_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_csawmg_debug Checking test 063 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 258.373693 + 0: The total amount of wall time = 262.862526 Test 063 control_csawmg_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_csawmgt_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_csawmgt_debug Checking test 064 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 301.666375 + 0: The total amount of wall time = 303.426300 Test 064 control_csawmgt_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_ras_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_ras_debug Checking test 065 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 198.987365 + 0: The total amount of wall time = 202.876644 Test 065 control_ras_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_diag_debug Checking test 066 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 202.470264 + 0: The total amount of wall time = 204.816777 Test 066 control_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug_p7 -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_debug_p7 +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_debug_p7 Checking test 067 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 207.314300 + 0: The total amount of wall time = 211.405596 Test 067 control_debug_p7 PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_thompson_debug Checking test 068 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 222.002588 + 0: The total amount of wall time = 227.326102 Test 068 control_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_thompson_no_aero_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_thompson_no_aero_debug Checking test 069 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 215.274124 + 0: The total amount of wall time = 219.934330 Test 069 control_thompson_no_aero_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug_extdiag -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_thompson_extdiag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_thompson_extdiag_debug Checking test 070 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 235.206556 + 0: The total amount of wall time = 238.390857 Test 070 control_thompson_extdiag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/regional_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/regional_debug Checking test 071 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 324.841652 + 0: The total amount of wall time = 324.055008 Test 071 regional_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_control_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_control_debug Checking test 072 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.438520 + 0: The total amount of wall time = 352.065729 Test 072 rap_control_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_unified_drag_suite_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_unified_drag_suite_debug Checking test 073 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 344.947715 + 0: The total amount of wall time = 354.851889 Test 073 rap_unified_drag_suite_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_diag_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_diag_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_diag_debug Checking test 074 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 365.927205 + 0: The total amount of wall time = 369.082396 Test 074 rap_diag_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_cires_ugwp_debug Checking test 075 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 351.710889 + 0: The total amount of wall time = 351.994751 Test 075 rap_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_unified_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_unified_ugwp_debug Checking test 076 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 353.139889 + 0: The total amount of wall time = 354.374274 Test 076 rap_unified_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_noah_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_noah_debug Checking test 077 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 340.054234 + 0: The total amount of wall time = 342.908273 Test 077 rap_noah_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_rrtmgp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_rrtmgp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_rrtmgp_debug Checking test 078 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 603.598571 + 0: The total amount of wall time = 603.218795 Test 078 rap_rrtmgp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_lndp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_lndp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_lndp_debug Checking test 079 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 348.980386 + 0: The total amount of wall time = 348.860484 Test 079 rap_lndp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_sfcdiff_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_sfcdiff_debug Checking test 080 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 346.743962 + 0: The total amount of wall time = 345.484847 Test 080 rap_sfcdiff_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_flake_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_flake_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_flake_debug Checking test 081 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.779511 + 0: The total amount of wall time = 347.229247 Test 081 rap_flake_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rap_noah_sfcdiff_cires_ugwp_debug Checking test 082 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 576.664767 + 0: The total amount of wall time = 572.679547 Test 082 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/rrfs_v1beta_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/rrfs_v1beta_debug Checking test 083 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 345.382206 + 0: The total amount of wall time = 342.486066 Test 083 rrfs_v1beta_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/fv3_HAFS_v0_hwrf_thompson_debug Checking test 084 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2503,13 +2503,13 @@ Checking test 084 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 267.789733 + 0: The total amount of wall time = 267.022972 Test 084 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 085 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2524,24 +2524,24 @@ Checking test 085 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 508.766980 + 0: The total amount of wall time = 511.818192 Test 085 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_atm +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_atm Checking test 086 hafs_regional_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 1117.872563 + 0: The total amount of wall time = 1134.375160 Test 086 hafs_regional_atm PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_atm_ocn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_atm_ocn Checking test 087 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2550,26 +2550,26 @@ Checking test 087 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 455.060199 + 0: The total amount of wall time = 452.811659 Test 087 hafs_regional_atm_ocn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_atm_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_atm_wav Checking test 088 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 918.642600 + 0: The total amount of wall time = 921.264630 Test 088 hafs_regional_atm_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn_wav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_atm_ocn_wav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_atm_ocn_wav Checking test 089 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2578,13 +2578,13 @@ Checking test 089 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 1015.223069 + 0: The total amount of wall time = 1029.715591 Test 089 hafs_regional_atm_ocn_wav PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_docn +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_docn Checking test 090 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2592,13 +2592,13 @@ Checking test 090 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 = 448.192245 + 0: The total amount of wall time = 443.959440 Test 090 hafs_regional_docn PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn_oisst -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_docn_oisst +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_docn_oisst Checking test 091 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2606,97 +2606,97 @@ Checking test 091 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 = 446.638983 + 0: The total amount of wall time = 438.566016 Test 091 hafs_regional_docn_oisst PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_datm_cdeps -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/hafs_regional_datm_cdeps +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/hafs_regional_datm_cdeps Checking test 092 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 = 1216.923910 + 0: The total amount of wall time = 1218.556365 Test 092 hafs_regional_datm_cdeps PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_control_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_control_cfsr Checking test 093 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 = 190.444859 + 0: The total amount of wall time = 189.992637 Test 093 datm_cdeps_control_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_restart_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_restart_cfsr Checking test 094 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.267297 + 0: The total amount of wall time = 116.401233 Test 094 datm_cdeps_restart_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_control_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_control_gefs Checking test 095 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 = 185.794437 + 0: The total amount of wall time = 184.951507 Test 095 datm_cdeps_control_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_stochy_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_stochy_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_stochy_gefs Checking test 096 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 = 189.039944 + 0: The total amount of wall time = 188.032965 Test 096 datm_cdeps_stochy_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_bulk_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_bulk_cfsr Checking test 097 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 = 190.982174 + 0: The total amount of wall time = 189.580933 Test 097 datm_cdeps_bulk_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_bulk_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_bulk_gefs Checking test 098 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.368133 + 0: The total amount of wall time = 186.139267 Test 098 datm_cdeps_bulk_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_mx025_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_mx025_cfsr Checking test 099 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2705,13 +2705,13 @@ Checking test 099 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 = 424.075135 + 0: The total amount of wall time = 410.418278 Test 099 datm_cdeps_mx025_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_gefs -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_mx025_gefs +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_mx025_gefs Checking test 100 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2720,35 +2720,35 @@ Checking test 100 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 = 408.353200 + 0: The total amount of wall time = 409.309238 Test 100 datm_cdeps_mx025_gefs PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_multiple_files_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_multiple_files_cfsr Checking test 101 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 = 190.654487 + 0: The total amount of wall time = 189.306977 Test 101 datm_cdeps_multiple_files_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_debug_cfsr -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/datm_cdeps_debug_cfsr +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/datm_cdeps_debug_cfsr Checking test 102 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 = 566.681480 + 0: The total amount of wall time = 569.084156 Test 102 datm_cdeps_debug_cfsr PASS baseline dir = /lfs4/HFIP/h-nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atmwav -working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_196916/control_atmwav +working dir = /lfs4/HFIP/h-nems/emc.nemspara/RT_RUNDIRS/emc.nemspara/FV3_RT/rt_19476/control_atmwav Checking test 103 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2792,11 +2792,11 @@ Checking test 103 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.555997 + 0: The total amount of wall time = 115.079469 Test 103 control_atmwav PASS REGRESSION TEST WAS SUCCESSFUL -Wed Dec 15 09:14:42 GMT 2021 -Elapsed time: 02h:00m:01s. Have a nice day! +Thu Dec 16 02:14:42 GMT 2021 +Elapsed time: 02h:28m:06s. Have a nice day! diff --git a/tests/RegressionTests_orion.intel.log b/tests/RegressionTests_orion.intel.log index 96099b85cf..57fbea4fc0 100644 --- a/tests/RegressionTests_orion.intel.log +++ b/tests/RegressionTests_orion.intel.log @@ -1,23 +1,23 @@ -Tue Dec 14 12:56:25 CST 2021 +Wed Dec 15 15:32:09 CST 2021 Start Regression test -Compile 001 elapsed time 494 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 198 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 372 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 379 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 432 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 367 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 168 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 175 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 001 elapsed time 495 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 200 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 400 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 415 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 426 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 366 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 193 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 182 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 153 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 403 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 440 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 223 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 360 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 010 elapsed time 389 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 401 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 194 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 93 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 362 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-20211214/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +70,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 226.634915 + 0: The total amount of wall time = 211.883686 Test 001 cpld_control_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -129,13 +129,13 @@ Checking test 002 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 = 288.007407 + 0: The total amount of wall time = 281.598415 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_2threads_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -188,13 +188,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 293.618706 + 0: The total amount of wall time = 242.025539 Test 003 cpld_2threads_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_decomp_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -247,13 +247,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 225.659393 + 0: The total amount of wall time = 213.948965 Test 004 cpld_decomp_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_mpi_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_mpi_p7 Checking test 005 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,13 +306,13 @@ Checking test 005 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK - 0: The total amount of wall time = 196.607686 + 0: The total amount of wall time = 185.151352 Test 005 cpld_mpi_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_bmark_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -357,13 +357,13 @@ 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 = 886.317938 + 0: The total amount of wall time = 883.559432 Test 006 cpld_bmark_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_bmark_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_bmark_mpi_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_bmark_mpi_p7 Checking test 007 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -408,13 +408,13 @@ Checking test 007 cpld_bmark_mpi_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 = 893.632579 + 0: The total amount of wall time = 860.085271 Test 007 cpld_bmark_mpi_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_control_c96_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_control_c96_p7 Checking test 008 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -464,13 +464,13 @@ Checking test 008 cpld_control_c96_p7 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 = 217.823785 + 0: The total amount of wall time = 205.481282 Test 008 cpld_control_c96_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c96_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_restart_c96_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_restart_c96_p7 Checking test 009 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -520,13 +520,13 @@ Checking test 009 cpld_restart_c96_p7 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 = 115.046222 + 0: The total amount of wall time = 112.405856 Test 009 cpld_restart_c96_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_control_c192_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_control_c192_p7 Checking test 010 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -576,13 +576,13 @@ Checking test 010 cpld_control_c192_p7 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 = 867.527515 + 0: The total amount of wall time = 850.257452 Test 010 cpld_control_c192_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c192_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_restart_c192_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_restart_c192_p7 Checking test 011 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -632,13 +632,13 @@ Checking test 011 cpld_restart_c192_p7 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 = 595.784383 + 0: The total amount of wall time = 594.998472 Test 011 cpld_restart_c192_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_control_c384_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_control_c384_p7 Checking test 012 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -681,13 +681,13 @@ Checking test 012 cpld_control_c384_p7 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 = 1033.023279 + 0: The total amount of wall time = 1008.614773 Test 012 cpld_control_c384_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_control_c384_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_restart_c384_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_restart_c384_p7 Checking test 013 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -730,13 +730,13 @@ Checking test 013 cpld_restart_c384_p7 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.149441 + 0: The total amount of wall time = 551.424011 Test 013 cpld_restart_c384_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/cpld_debug_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/cpld_debug_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/cpld_debug_p7 Checking test 014 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -786,13 +786,13 @@ Checking test 014 cpld_debug_p7 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 = 652.963178 + 0: The total amount of wall time = 683.707145 Test 014 cpld_debug_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -839,13 +839,13 @@ 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 = 121.815986 + 0: The total amount of wall time = 121.370048 Test 015 control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_decomp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -888,13 +888,13 @@ 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 = 131.311109 + 0: The total amount of wall time = 129.268513 Test 016 control_decomp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -937,13 +937,13 @@ 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 = 144.611564 + 0: The total amount of wall time = 144.782550 Test 017 control_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -982,13 +982,13 @@ 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 = 69.469530 + 0: The total amount of wall time = 66.794325 Test 018 control_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_fhzero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1031,13 +1031,13 @@ 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 = 138.110337 + 0: The total amount of wall time = 114.096380 Test 019 control_fhzero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_CubedSphereGrid +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1064,13 +1064,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK - 0: The total amount of wall time = 132.341906 + 0: The total amount of wall time = 116.673393 Test 020 control_CubedSphereGrid PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_latlon -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_latlon +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1081,13 +1081,13 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 131.810000 + 0: The total amount of wall time = 119.335057 Test 021 control_latlon PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_wrtGauss_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf024.nc ............ALT CHECK......OK @@ -1098,13 +1098,13 @@ Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 134.541032 + 0: The total amount of wall time = 122.678063 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c48 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_c48 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1143,13 +1143,13 @@ 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 = 314.616532 +0: The total amount of wall time = 308.725543 Test 023 control_c48 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,13 +1160,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 480.022625 + 0: The total amount of wall time = 465.475647 Test 024 control_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_c384 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1177,13 +1177,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 803.173624 + 0: The total amount of wall time = 792.436413 Test 025 control_c384 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_c384gdas +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1226,13 +1226,13 @@ 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 = 693.669689 + 0: The total amount of wall time = 679.537062 Test 026 control_c384gdas PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_stochy +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1243,26 +1243,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 91.046459 + 0: The total amount of wall time = 79.337391 Test 027 control_stochy PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_stochy_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 46.309272 + 0: The total amount of wall time = 45.698648 Test 028 control_stochy_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_lndp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1273,13 +1273,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 80.088661 + 0: The total amount of wall time = 78.457555 Test 029 control_lndp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_p7 Checking test 030 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1326,13 +1326,13 @@ Checking test 030 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 135.608777 + 0: The total amount of wall time = 134.838141 Test 030 control_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_p7_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1379,13 +1379,13 @@ Checking test 031 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 = 207.286397 + 0: The total amount of wall time = 207.002651 Test 031 control_p7_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_restart_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_restart_p7 Checking test 032 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1424,13 +1424,13 @@ Checking test 032 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 77.108816 + 0: The total amount of wall time = 76.618561 Test 032 control_restart_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_decomp_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_decomp_p7 Checking test 033 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,13 +1473,13 @@ Checking test 033 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 143.381346 + 0: The total amount of wall time = 143.021066 Test 033 control_decomp_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_2threads_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_2threads_p7 Checking test 034 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1522,13 +1522,13 @@ Checking test 034 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 165.684260 + 0: The total amount of wall time = 162.689603 Test 034 control_2threads_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1539,26 +1539,26 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 299.350731 + 0: The total amount of wall time = 297.661425 Test 035 regional_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 170.478092 + 0: The total amount of wall time = 171.244864 Test 036 regional_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_noquilt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_noquilt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1566,13 +1566,13 @@ 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 = 300.338518 + 0: The total amount of wall time = 301.954488 Test 037 regional_noquilt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1583,13 +1583,13 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 213.382683 + 0: The total amount of wall time = 212.376304 Test 038 regional_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_hafs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_hafs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_hafs Checking test 039 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1598,26 +1598,26 @@ Checking test 039 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK - 0: The total amount of wall time = 298.003488 + 0: The total amount of wall time = 298.387090 Test 039 regional_hafs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_netcdf_parallel -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_netcdf_parallel +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_netcdf_parallel Checking test 040 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.666509 + 0: The total amount of wall time = 296.809877 Test 040 regional_netcdf_parallel PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_RRTMGP -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_RRTMGP +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_RRTMGP Checking test 041 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1628,13 +1628,13 @@ Checking test 041 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK - 0: The total amount of wall time = 470.232660 + 0: The total amount of wall time = 469.737926 Test 041 regional_RRTMGP PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1681,13 +1681,13 @@ Checking test 042 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 341.563283 + 0: The total amount of wall time = 341.182223 Test 042 rap_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_2threads +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_2threads Checking test 043 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1734,13 +1734,13 @@ Checking test 043 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 420.176679 + 0: The total amount of wall time = 415.528794 Test 043 rap_2threads PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_sfcdiff +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1787,13 +1787,13 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 344.403010 + 0: The total amount of wall time = 341.263041 Test 044 rap_sfcdiff PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_sfcdiff_restart +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_sfcdiff_restart Checking test 045 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1832,13 +1832,13 @@ Checking test 045 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 = 177.468523 + 0: The total amount of wall time = 176.689797 Test 045 rap_sfcdiff_restart PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hrrr_control -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hrrr_control +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hrrr_control Checking test 046 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1885,13 +1885,13 @@ Checking test 046 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 328.230680 + 0: The total amount of wall time = 328.533575 Test 046 hrrr_control PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rrfs_v1beta +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rrfs_v1beta Checking test 047 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1938,13 +1938,13 @@ Checking test 047 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK - 0: The total amount of wall time = 335.820217 + 0: The total amount of wall time = 334.611216 Test 047 rrfs_v1beta PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_rrtmgp +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_rrtmgp Checking test 048 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1955,13 +1955,13 @@ Checking test 048 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 221.792108 + 0: The total amount of wall time = 220.627294 Test 048 control_rrtmgp PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_c192 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_rrtmgp_c192 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_rrtmgp_c192 Checking test 049 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1972,13 +1972,13 @@ Checking test 049 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK - 0: The total amount of wall time = 575.759380 + 0: The total amount of wall time = 577.139802 Test 049 control_rrtmgp_c192 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_csawmg +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_csawmg Checking test 050 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,13 +1989,13 @@ Checking test 050 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 242.676928 + 0: The total amount of wall time = 242.217012 Test 050 control_csawmg PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_csawmgt +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_csawmgt Checking test 051 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2006,13 +2006,13 @@ Checking test 051 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 301.737927 + 0: The total amount of wall time = 302.089187 Test 051 control_csawmgt PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_flake -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_flake +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_flake Checking test 052 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2023,13 +2023,13 @@ Checking test 052 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 218.194101 + 0: The total amount of wall time = 217.090359 Test 052 control_flake PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_ras +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_ras Checking test 053 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2040,13 +2040,13 @@ Checking test 053 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 165.318228 + 0: The total amount of wall time = 166.296331 Test 053 control_ras PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_thompson Checking test 054 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,13 +2057,13 @@ Checking test 054 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 205.340403 + 0: The total amount of wall time = 204.972762 Test 054 control_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_thompson_no_aero +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_thompson_no_aero Checking test 055 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,13 +2074,13 @@ Checking test 055 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK - 0: The total amount of wall time = 197.185626 + 0: The total amount of wall time = 196.671073 Test 055 control_thompson_no_aero PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/fv3_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2145,13 +2145,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 146.511878 + 0: The total amount of wall time = 147.547661 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2166,50 +2166,50 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 288.997467 + 0: The total amount of wall time = 291.817532 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wam_repro -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_wam_repro +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_wam_repro Checking test 058 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK - 0: The total amount of wall time = 112.050016 + 0: The total amount of wall time = 111.529934 Test 058 control_wam PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_debug Checking test 059 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 230.079117 + 0: The total amount of wall time = 226.875481 Test 059 control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_2threads_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_2threads_debug Checking test 060 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 228.112574 + 0: The total amount of wall time = 228.575032 Test 060 control_2threads_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_CubedSphereGrid_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_CubedSphereGrid_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_CubedSphereGrid_debug Checking test 061 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2236,338 +2236,338 @@ Checking test 061 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK - 0: The total amount of wall time = 168.185419 + 0: The total amount of wall time = 238.995120 Test 061 control_CubedSphereGrid_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_wrtGauss_netcdf_parallel_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_wrtGauss_netcdf_parallel_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_wrtGauss_netcdf_parallel_debug Checking test 062 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc ............ALT CHECK......OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 156.958942 + 0: The total amount of wall time = 153.910906 Test 062 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_stochy_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_stochy_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_stochy_debug Checking test 063 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 179.111149 + 0: The total amount of wall time = 175.543291 Test 063 control_stochy_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_lndp_debug Checking test 064 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 158.947626 + 0: The total amount of wall time = 156.460908 Test 064 control_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_rrtmgp_debug Checking test 065 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 183.448634 + 0: The total amount of wall time = 180.367446 Test 065 control_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmg_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_csawmg_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_csawmg_debug Checking test 066 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 204.197814 + 0: The total amount of wall time = 203.534420 Test 066 control_csawmg_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_csawmgt_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_csawmgt_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_csawmgt_debug Checking test 067 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 234.415019 + 0: The total amount of wall time = 230.658429 Test 067 control_csawmgt_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_ras_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_ras_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_ras_debug Checking test 068 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 162.142296 + 0: The total amount of wall time = 238.049940 Test 068 control_ras_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_diag_debug Checking test 069 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 165.451578 + 0: The total amount of wall time = 241.460499 Test 069 control_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_debug_p7 -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_debug_p7 +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_debug_p7 Checking test 070 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 166.067894 + 0: The total amount of wall time = 170.075000 Test 070 control_debug_p7 PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_thompson_debug Checking test 071 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 177.746493 + 0: The total amount of wall time = 178.748923 Test 071 control_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_no_aero_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_thompson_no_aero_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_thompson_no_aero_debug Checking test 072 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 172.566744 + 0: The total amount of wall time = 260.272933 Test 072 control_thompson_no_aero_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_thompson_debug_extdiag -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_thompson_extdiag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_thompson_extdiag_debug Checking test 073 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 186.668255 + 0: The total amount of wall time = 188.463049 Test 073 control_thompson_extdiag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/fv3_regional_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/regional_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/regional_debug Checking test 074 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK - 0: The total amount of wall time = 248.730588 + 0: The total amount of wall time = 248.043170 Test 074 regional_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_control_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_control_debug Checking test 075 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.607878 + 0: The total amount of wall time = 274.721834 Test 075 rap_control_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_control_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_unified_drag_suite_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_unified_drag_suite_debug Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 269.694929 + 0: The total amount of wall time = 270.656255 Test 076 rap_unified_drag_suite_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_diag_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_diag_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_diag_debug Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 288.729403 + 0: The total amount of wall time = 296.330067 Test 077 rap_diag_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_cires_ugwp_debug Checking test 078 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 283.126955 + 0: The total amount of wall time = 278.528207 Test 078 rap_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_unified_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_unified_ugwp_debug Checking test 079 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 451.676103 + 0: The total amount of wall time = 273.113185 Test 079 rap_unified_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_noah_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_noah_debug Checking test 080 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 330.505779 + 0: The total amount of wall time = 271.258210 Test 080 rap_noah_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_rrtmgp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_rrtmgp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_rrtmgp_debug Checking test 081 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 482.098995 + 0: The total amount of wall time = 479.171828 Test 081 rap_rrtmgp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_lndp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_lndp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_lndp_debug Checking test 082 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.347652 + 0: The total amount of wall time = 275.552210 Test 082 rap_lndp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_sfcdiff_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_sfcdiff_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_sfcdiff_debug Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 271.753731 + 0: The total amount of wall time = 268.458216 Test 083 rap_sfcdiff_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_flake_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_flake_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 270.536105 + 0: The total amount of wall time = 278.420507 Test 084 rap_flake_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rap_noah_sfcdiff_cires_ugwp_debug Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 455.666123 + 0: The total amount of wall time = 448.687195 Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/rrfs_v1beta_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/rrfs_v1beta_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/rrfs_v1beta_debug Checking test 086 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK - 0: The total amount of wall time = 278.850189 + 0: The total amount of wall time = 272.821642 Test 086 rrfs_v1beta_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/fv3_HAFS_v0_hwrf_thompson_debug Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2632,13 +2632,13 @@ Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK - 0: The total amount of wall time = 207.897339 + 0: The total amount of wall time = 209.586678 Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2653,24 +2653,24 @@ Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK - 0: The total amount of wall time = 404.312371 + 0: The total amount of wall time = 397.271242 Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_atm Checking test 089 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 247.688662 + 0: The total amount of wall time = 251.379004 Test 089 hafs_regional_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_atm_ocn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_atm_ocn Checking test 090 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2679,26 +2679,26 @@ Checking test 090 hafs_regional_atm_ocn results .... Comparing ufs.hafs.cpl.hi.2019-08-29-21600.nc .........OK Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 355.257457 + 0: The total amount of wall time = 358.739584 Test 090 hafs_regional_atm_ocn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_atm_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_atm_wav Checking test 091 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 766.464114 + 0: The total amount of wall time = 762.096174 Test 091 hafs_regional_atm_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_atm_ocn_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_atm_ocn_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_atm_ocn_wav Checking test 092 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2707,57 +2707,57 @@ Checking test 092 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK - 0: The total amount of wall time = 852.885749 + 0: The total amount of wall time = 853.911981 Test 092 hafs_regional_atm_ocn_wav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_1nest_atm Checking test 093 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK - 0: The total amount of wall time = 801.442461 + 0: The total amount of wall time = 422.537536 Test 093 hafs_regional_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_telescopic_2nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_telescopic_2nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_telescopic_2nests_atm Checking test 094 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 = 405.127393 + 0: The total amount of wall time = 412.655692 Test 094 hafs_regional_telescopic_2nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_1nest_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_global_1nest_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_global_1nest_atm Checking test 095 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK - 0: The total amount of wall time = 188.545713 + 0: The total amount of wall time = 187.078224 Test 095 hafs_global_1nest_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_global_multiple_4nests_atm -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_global_multiple_4nests_atm +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_global_multiple_4nests_atm Checking test 096 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 = 417.308224 + 0: The total amount of wall time = 423.500417 Test 096 hafs_global_multiple_4nests_atm PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_docn +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_docn Checking test 097 hafs_regional_docn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2765,13 +2765,13 @@ Checking test 097 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 = 337.901829 + 0: The total amount of wall time = 337.450498 Test 097 hafs_regional_docn PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_docn_oisst -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_docn_oisst +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_docn_oisst Checking test 098 hafs_regional_docn_oisst results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -2779,97 +2779,97 @@ Checking test 098 hafs_regional_docn_oisst results .... Comparing ufs.hafs.cpl.r.2019-08-29-21600.nc .........OK Comparing ufs.hafs.docn.r.2019-08-29-21600.nc .........OK - 0: The total amount of wall time = 339.499143 + 0: The total amount of wall time = 341.861969 Test 098 hafs_regional_docn_oisst PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/hafs_regional_datm_cdeps -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/hafs_regional_datm_cdeps +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/hafs_regional_datm_cdeps Checking test 099 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 = 914.856014 + 0: The total amount of wall time = 914.466191 Test 099 hafs_regional_datm_cdeps PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_control_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_control_cfsr Checking test 100 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 = 135.810779 + 0: The total amount of wall time = 138.154112 Test 100 datm_cdeps_control_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_restart_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_restart_cfsr Checking test 101 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.214506 + 0: The total amount of wall time = 99.646163 Test 101 datm_cdeps_restart_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_control_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_control_gefs Checking test 102 datm_cdeps_control_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 137.652741 + 0: The total amount of wall time = 136.370663 Test 102 datm_cdeps_control_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_stochy_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_stochy_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_stochy_gefs Checking test 103 datm_cdeps_stochy_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 140.495539 + 0: The total amount of wall time = 137.374321 Test 103 datm_cdeps_stochy_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_bulk_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_bulk_cfsr Checking test 104 datm_cdeps_bulk_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-02-00000.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-02-00000.nc .........OK - 0: The total amount of wall time = 143.565207 + 0: The total amount of wall time = 140.486536 Test 104 datm_cdeps_bulk_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_bulk_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_bulk_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_bulk_gefs Checking test 105 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 = 136.443005 + 0: The total amount of wall time = 133.134117 Test 105 datm_cdeps_bulk_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_mx025_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_mx025_cfsr Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2878,13 +2878,13 @@ Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK - 0: The total amount of wall time = 297.750918 + 0: The total amount of wall time = 298.417843 Test 106 datm_cdeps_mx025_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_mx025_gefs -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_mx025_gefs +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_mx025_gefs Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2893,35 +2893,35 @@ Checking test 107 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 = 300.289734 + 0: The total amount of wall time = 295.482245 Test 107 datm_cdeps_mx025_gefs PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_control_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_multiple_files_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_multiple_files_cfsr Checking test 108 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.997993 + 0: The total amount of wall time = 140.625622 Test 108 datm_cdeps_multiple_files_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/datm_cdeps_debug_cfsr -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/datm_cdeps_debug_cfsr +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/datm_cdeps_debug_cfsr Checking test 109 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK - 0: The total amount of wall time = 442.405686 + 0: The total amount of wall time = 450.951947 Test 109 datm_cdeps_debug_cfsr PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_atmwav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_atmwav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_atmwav Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2965,13 +2965,13 @@ Checking test 110 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK - 0: The total amount of wall time = 82.839146 + 0: The total amount of wall time = 82.446329 Test 110 control_atmwav PASS baseline dir = /work/noaa/nems/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/INTEL/control_c384gdas_wav -working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_156055/control_c384gdas_wav +working dir = /work/noaa/stmp/bcurtis/stmp/bcurtis/FV3_RT/rt_265459/control_c384gdas_wav Checking test 111 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3017,11 +3017,11 @@ Checking test 111 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 = 690.357893 + 0: The total amount of wall time = 708.816337 Test 111 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 13:51:41 CST 2021 -Elapsed time: 00h:55m:17s. Have a nice day! +Wed Dec 15 18:02:20 CST 2021 +Elapsed time: 02h:30m:11s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_cray.log b/tests/RegressionTests_wcoss_cray.log index d19aa547e7..7859ced2f2 100644 --- a/tests/RegressionTests_wcoss_cray.log +++ b/tests/RegressionTests_wcoss_cray.log @@ -1,17 +1,17 @@ -Tue Dec 14 18:11:33 UTC 2021 +Wed Dec 15 21:14:17 UTC 2021 Start Regression test -Compile 001 elapsed time 738 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 002 elapsed time 737 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 798 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 712 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 518 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 006 elapsed time 504 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 472 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 784 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 001 elapsed time 785 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 002 elapsed time 783 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 805 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 748 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 532 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 006 elapsed time 543 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 499 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 866 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control Checking test 001 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -58,13 +58,13 @@ Checking test 001 control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 145.826336 +The total amount of wall time = 146.123314 Test 001 control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_decomp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_decomp Checking test 002 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -107,13 +107,13 @@ 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 = 148.718598 +The total amount of wall time = 148.069409 Test 002 control_decomp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_restart Checking test 003 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -152,13 +152,13 @@ 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 = 78.337803 +The total amount of wall time = 77.340635 Test 003 control_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_fhzero +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_fhzero Checking test 004 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -201,13 +201,13 @@ 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 = 135.213992 +The total amount of wall time = 136.789250 Test 004 control_fhzero PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_CubedSphereGrid -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_CubedSphereGrid +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_CubedSphereGrid Checking test 005 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -234,13 +234,13 @@ Checking test 005 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -The total amount of wall time = 136.568985 +The total amount of wall time = 140.148900 Test 005 control_CubedSphereGrid PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_latlon -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_latlon +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_latlon Checking test 006 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -251,13 +251,13 @@ Checking test 006 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 141.854732 +The total amount of wall time = 142.554167 Test 006 control_latlon PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wrtGauss_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_wrtGauss_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_wrtGauss_netcdf_parallel Checking test 007 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -268,13 +268,13 @@ Checking test 007 control_wrtGauss_netcdf_parallel results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 143.633593 +The total amount of wall time = 143.974758 Test 007 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c48 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_c48 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_c48 Checking test 008 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -313,13 +313,13 @@ 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.760453 +The total amount of wall time = 431.592554 Test 008 control_c48 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_c192 Checking test 009 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -330,13 +330,13 @@ Checking test 009 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 535.577795 +The total amount of wall time = 540.228727 Test 009 control_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_stochy +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_stochy Checking test 010 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -347,26 +347,26 @@ Checking test 010 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 97.251896 +The total amount of wall time = 97.745128 Test 010 control_stochy PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_stochy_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_stochy_restart Checking test 011 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 54.663630 +The total amount of wall time = 54.793373 Test 011 control_stochy_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_lndp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_lndp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_lndp Checking test 012 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -377,13 +377,13 @@ Checking test 012 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 86.758195 +The total amount of wall time = 89.486737 Test 012 control_lndp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_p7 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_p7 Checking test 013 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -430,13 +430,13 @@ Checking test 013 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 164.692138 +The total amount of wall time = 171.378109 Test 013 control_p7 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_p7_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_p7_rrtmgp Checking test 014 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -483,13 +483,13 @@ Checking test 014 control_p7_rrtmgp results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 249.520826 +The total amount of wall time = 257.574262 Test 014 control_p7_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_restart_p7 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_restart_p7 Checking test 015 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -528,13 +528,13 @@ Checking test 015 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 93.806239 +The total amount of wall time = 94.267906 Test 015 control_restart_p7 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_decomp_p7 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_decomp_p7 Checking test 016 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -577,13 +577,13 @@ Checking test 016 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 172.177992 +The total amount of wall time = 171.724811 Test 016 control_decomp_p7 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_control Checking test 017 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -594,26 +594,26 @@ Checking test 017 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 362.367307 +The total amount of wall time = 366.227947 Test 017 regional_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_restart Checking test 018 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 212.412444 +The total amount of wall time = 212.555300 Test 018 regional_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_noquilt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_noquilt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_noquilt Checking test 019 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -621,13 +621,13 @@ 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 = 381.913302 +The total amount of wall time = 384.467626 Test 019 regional_noquilt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_hafs -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_hafs +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_hafs Checking test 020 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -636,26 +636,26 @@ Checking test 020 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -The total amount of wall time = 350.664033 +The total amount of wall time = 350.526903 Test 020 regional_hafs PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_netcdf_parallel -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_netcdf_parallel +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_netcdf_parallel Checking test 021 regional_netcdf_parallel results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK Comparing phyf000.nc .........OK Comparing phyf024.nc .........OK -The total amount of wall time = 349.750337 +The total amount of wall time = 348.616370 Test 021 regional_netcdf_parallel PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_RRTMGP -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_RRTMGP +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_RRTMGP Checking test 022 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -666,13 +666,13 @@ Checking test 022 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -The total amount of wall time = 567.720866 +The total amount of wall time = 565.443394 Test 022 regional_RRTMGP PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_control Checking test 023 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -719,13 +719,13 @@ 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 = 386.547497 +The total amount of wall time = 386.176463 Test 023 rap_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_sfcdiff +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_sfcdiff Checking test 024 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -772,13 +772,13 @@ Checking test 024 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 387.910723 +The total amount of wall time = 386.737701 Test 024 rap_sfcdiff PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_sfcdiff_restart +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_sfcdiff_restart Checking test 025 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -817,13 +817,13 @@ Checking test 025 rap_sfcdiff_restart results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 201.129826 +The total amount of wall time = 202.359869 Test 025 rap_sfcdiff_restart PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hrrr_control -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hrrr_control +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hrrr_control Checking test 026 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -870,13 +870,13 @@ Checking test 026 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 373.820671 +The total amount of wall time = 371.687279 Test 026 hrrr_control PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rrfs_v1beta -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rrfs_v1beta +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rrfs_v1beta Checking test 027 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -923,13 +923,13 @@ Checking test 027 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -The total amount of wall time = 380.847453 +The total amount of wall time = 379.516549 Test 027 rrfs_v1beta PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_rrtmgp +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_rrtmgp Checking test 028 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -940,13 +940,13 @@ Checking test 028 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 262.768990 +The total amount of wall time = 260.623978 Test 028 control_rrtmgp PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp_c192 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_rrtmgp_c192 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_rrtmgp_c192 Checking test 029 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -957,13 +957,13 @@ Checking test 029 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -The total amount of wall time = 673.958501 +The total amount of wall time = 672.198593 Test 029 control_rrtmgp_c192 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmg -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_csawmg +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_csawmg Checking test 030 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -974,13 +974,13 @@ Checking test 030 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 285.329500 +The total amount of wall time = 286.159861 Test 030 control_csawmg PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmgt -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_csawmgt +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_csawmgt Checking test 031 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -991,13 +991,13 @@ Checking test 031 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 351.728869 +The total amount of wall time = 353.199930 Test 031 control_csawmgt PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_flake -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_flake +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_flake Checking test 032 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1008,13 +1008,13 @@ Checking test 032 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 232.299291 +The total amount of wall time = 230.456578 Test 032 control_flake PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_ras -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_ras +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_ras Checking test 033 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1025,13 +1025,13 @@ Checking test 033 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -The total amount of wall time = 192.155477 +The total amount of wall time = 191.617899 Test 033 control_ras PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/fv3_HAFS_v0_hwrf_thompson Checking test 034 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1096,13 +1096,13 @@ Checking test 034 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 168.407383 +The total amount of wall time = 167.813928 Test 034 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/fv3_esg_HAFS_v0_hwrf_thompson Checking test 035 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1117,37 +1117,37 @@ Checking test 035 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 318.278755 +The total amount of wall time = 318.735489 Test 035 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wam_repro -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_wam_repro +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_wam_repro Checking test 036 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -The total amount of wall time = 119.688214 +The total amount of wall time = 127.779969 Test 036 control_wam PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_debug Checking test 037 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 141.504695 +The total amount of wall time = 145.106654 Test 037 control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_CubedSphereGrid_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_CubedSphereGrid_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_CubedSphereGrid_debug Checking test 038 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1174,338 +1174,338 @@ Checking test 038 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -The total amount of wall time = 150.426655 +The total amount of wall time = 152.830792 Test 038 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_wrtGauss_netcdf_parallel_debug Checking test 039 control_wrtGauss_netcdf_parallel_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 142.100122 +The total amount of wall time = 143.390159 Test 039 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_stochy_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_stochy_debug Checking test 040 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 162.243979 +The total amount of wall time = 164.528494 Test 040 control_stochy_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_lndp_debug Checking test 041 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 145.479190 +The total amount of wall time = 148.280301 Test 041 control_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_rrtmgp_debug Checking test 042 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.037637 +The total amount of wall time = 171.181066 Test 042 control_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmg_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_csawmg_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_csawmg_debug Checking test 043 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 195.964899 +The total amount of wall time = 197.157330 Test 043 control_csawmg_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmgt_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_csawmgt_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_csawmgt_debug Checking test 044 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 228.713314 +The total amount of wall time = 231.168182 Test 044 control_csawmgt_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_ras_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_ras_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_ras_debug Checking test 045 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 146.631201 +The total amount of wall time = 147.437454 Test 045 control_ras_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_diag_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_diag_debug Checking test 046 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 150.126601 +The total amount of wall time = 154.526575 Test 046 control_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_debug_p7 -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_debug_p7 +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_debug_p7 Checking test 047 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 156.463982 +The total amount of wall time = 156.426693 Test 047 control_debug_p7 PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_thompson_debug Checking test 048 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 170.908442 +The total amount of wall time = 176.822324 Test 048 control_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_no_aero_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_thompson_no_aero_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_thompson_no_aero_debug Checking test 049 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 160.927437 +The total amount of wall time = 164.157422 Test 049 control_thompson_no_aero_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_debug_extdiag -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/control_thompson_extdiag_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/control_thompson_extdiag_debug Checking test 050 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 182.086344 +The total amount of wall time = 184.647867 Test 050 control_thompson_extdiag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/regional_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/regional_debug Checking test 051 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -The total amount of wall time = 250.065560 +The total amount of wall time = 253.898477 Test 051 regional_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_control_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_control_debug Checking test 052 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.933294 +The total amount of wall time = 269.372993 Test 052 rap_control_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_unified_drag_suite_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_unified_drag_suite_debug Checking test 053 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 266.933483 +The total amount of wall time = 269.755654 Test 053 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_diag_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_diag_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_diag_debug Checking test 054 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 291.116407 +The total amount of wall time = 285.410273 Test 054 rap_diag_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_cires_ugwp_debug Checking test 055 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 282.858285 +The total amount of wall time = 274.491283 Test 055 rap_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_unified_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_unified_ugwp_debug Checking test 056 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 277.951185 +The total amount of wall time = 275.365019 Test 056 rap_unified_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_noah_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_noah_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_noah_debug Checking test 057 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 262.165791 +The total amount of wall time = 264.259776 Test 057 rap_noah_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_rrtmgp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_rrtmgp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_rrtmgp_debug Checking test 058 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 460.546549 +The total amount of wall time = 462.269146 Test 058 rap_rrtmgp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_lndp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_lndp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_lndp_debug Checking test 059 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 269.467609 +The total amount of wall time = 269.995396 Test 059 rap_lndp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_sfcdiff_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_sfcdiff_debug Checking test 060 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.276509 +The total amount of wall time = 269.606581 Test 060 rap_sfcdiff_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_flake_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_flake_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_flake_debug Checking test 061 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 267.613174 +The total amount of wall time = 270.674491 Test 061 rap_flake_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rap_noah_sfcdiff_cires_ugwp_debug Checking test 062 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 437.439048 +The total amount of wall time = 435.987445 Test 062 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rrfs_v1beta_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/rrfs_v1beta_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/rrfs_v1beta_debug Checking test 063 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -The total amount of wall time = 265.895639 +The total amount of wall time = 264.569936 Test 063 rrfs_v1beta_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/fv3_HAFS_v0_hwrf_thompson_debug Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -1570,13 +1570,13 @@ Checking test 064 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -The total amount of wall time = 197.251161 +The total amount of wall time = 198.030159 Test 064 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -1591,24 +1591,24 @@ Checking test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -The total amount of wall time = 374.713262 +The total amount of wall time = 362.777484 Test 065 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_atm Checking test 066 hafs_regional_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 323.972388 +The total amount of wall time = 321.722798 Test 066 hafs_regional_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_ocn -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_atm_ocn +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_atm_ocn Checking test 067 hafs_regional_atm_ocn results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1617,26 +1617,26 @@ Checking test 067 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 = 515.369322 +The total amount of wall time = 501.205048 Test 067 hafs_regional_atm_ocn PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_atm_wav +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_atm_wav Checking test 068 hafs_regional_atm_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 910.667035 +The total amount of wall time = 903.540860 Test 068 hafs_regional_atm_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_ocn_wav -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_atm_ocn_wav +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_atm_ocn_wav Checking test 069 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK @@ -1645,44 +1645,44 @@ Checking test 069 hafs_regional_atm_ocn_wav results .... Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -The total amount of wall time = 987.466559 +The total amount of wall time = 984.057258 Test 069 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_1nest_atm Checking test 070 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 346.852238 +The total amount of wall time = 346.798502 Test 070 hafs_regional_1nest_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_regional_telescopic_2nests_atm Checking test 071 hafs_regional_telescopic_2nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 367.017635 +The total amount of wall time = 369.255253 Test 071 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/hps3/emc/nems/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_global_1nest_atm -working dir = /gpfs/hps3/stmp/Denise.Worthen/FV3_RT/rt_46366/hafs_global_1nest_atm +working dir = /gpfs/hps3/stmp/Dusan.Jovic/FV3_RT/rt_33581/hafs_global_1nest_atm Checking test 072 hafs_global_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -The total amount of wall time = 164.818945 +The total amount of wall time = 163.822392 Test 072 hafs_global_1nest_atm PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 18:47:18 UTC 2021 -Elapsed time: 00h:35m:45s. Have a nice day! +Wed Dec 15 21:51:08 UTC 2021 +Elapsed time: 00h:36m:52s. Have a nice day! diff --git a/tests/RegressionTests_wcoss_dell_p3.log b/tests/RegressionTests_wcoss_dell_p3.log index 7e91abd37c..dd87f79d2a 100644 --- a/tests/RegressionTests_wcoss_dell_p3.log +++ b/tests/RegressionTests_wcoss_dell_p3.log @@ -1,23 +1,25 @@ -Tue Dec 14 16:45:29 UTC 2021 +Wed Dec 15 21:14:09 UTC 2021 Start Regression test -Compile 001 elapsed time 1670 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 002 elapsed time 524 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 003 elapsed time 1132 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 004 elapsed time 1101 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 1334 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 006 elapsed time 870 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 456 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 008 elapsed time 420 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 305 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -Compile 010 elapsed time 1159 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release -Compile 011 elapsed time 1214 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 790 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON -Compile 013 elapsed time 378 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON -Compile 014 elapsed time 922 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Test 009 compile FAIL + +Compile 001 elapsed time 1916 seconds. -DAPP=S2SW -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1,FV3_GFS_v16_coupled_p7_rrtmgp -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 002 elapsed time 523 seconds. -DAPP=S2S -DDEBUG=ON -DCCPP_SUITES=FV3_GFS_v16_coupled_nsstNoahmpUGWPv1 -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 003 elapsed time 1139 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_GFS_v16,FV3_GFS_v15_thompson_mynn,FV3_GFS_v15_thompson_mynn_RRTMGP,FV3_GFS_v16_nsstNoahmpUGWPv1,FV3_GFS_v16_p7_rrtmgp -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 004 elapsed time 1088 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 1346 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,FV3_HAFS_v0_hwrf_thompson -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 006 elapsed time 867 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 447 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_nsstNoahmpUGWPv1 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 008 elapsed time 464 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 287 seconds. -DAPP=ATM -DCCPP_SUITES=FV3_HAFS_v0_hwrf_thompson -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug +Compile 010 elapsed time 1154 seconds. -DAPP=HAFSW -DCCPP_SUITES=FV3_HAFS_v0_gfdlmp_tedmf,FV3_HAFS_v0_gfdlmp_tedmf_nonsst -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release +Compile 011 elapsed time 1204 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 808 seconds. -DAPP=NG-GODAS -DMPI=ON -DCMAKE_BUILD_TYPE=Release -DMOM6SOLO=ON +Compile 013 elapsed time 350 seconds. -DAPP=NG-GODAS -DDEBUG=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Debug -DMOM6SOLO=ON +Compile 014 elapsed time 913 seconds. -DAPP=ATMW -DCCPP_SUITES=FV3_GFS_v16 -D32BIT=ON -DMPI=ON -DCMAKE_BUILD_TYPE=Release baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_control_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_control_p7 Checking test 001 cpld_control_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -70,13 +72,13 @@ Checking test 001 cpld_control_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 247.382303 +[0] The total amount of wall time = 245.440537 Test 001 cpld_control_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_control_p7_rrtmgp Checking test 002 cpld_control_p7_rrtmgp results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -129,13 +131,13 @@ Checking test 002 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 = 331.500785 +[0] The total amount of wall time = 330.699585 Test 002 cpld_control_p7_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_2threads_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_2threads_p7 Checking test 003 cpld_2threads_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -188,13 +190,13 @@ Checking test 003 cpld_2threads_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 230.869026 +[0] The total amount of wall time = 232.994837 Test 003 cpld_2threads_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_decomp_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_decomp_p7 Checking test 004 cpld_decomp_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -247,13 +249,13 @@ Checking test 004 cpld_decomp_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 248.367340 +[0] The total amount of wall time = 246.314154 Test 004 cpld_decomp_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_mpi_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_mpi_p7 Checking test 005 cpld_mpi_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -306,13 +308,13 @@ Checking test 005 cpld_mpi_p7 results .... Comparing 20210323.060000.out_pnt.points .........OK Comparing 20210323.060000.restart.glo_1deg .........OK -[0] The total amount of wall time = 210.333247 +[0] The total amount of wall time = 210.808632 Test 005 cpld_mpi_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_bmark_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_bmark_p7 Checking test 006 cpld_bmark_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -357,13 +359,13 @@ 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 = 1039.612573 +[0] The total amount of wall time = 1018.292701 Test 006 cpld_bmark_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_bmark_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_bmark_mpi_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_bmark_mpi_p7 Checking test 007 cpld_bmark_mpi_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -408,13 +410,13 @@ Checking test 007 cpld_bmark_mpi_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 = 1016.845319 +[0] The total amount of wall time = 1002.003675 Test 007 cpld_bmark_mpi_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c96_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_control_c96_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_control_c96_p7 Checking test 008 cpld_control_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -464,13 +466,13 @@ Checking test 008 cpld_control_c96_p7 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 = 235.585515 +[0] The total amount of wall time = 233.995635 Test 008 cpld_control_c96_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c96_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_restart_c96_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_restart_c96_p7 Checking test 009 cpld_restart_c96_p7 results .... Comparing sfcf024.tile1.nc .........OK Comparing sfcf024.tile2.nc .........OK @@ -520,13 +522,13 @@ Checking test 009 cpld_restart_c96_p7 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 = 128.527478 +[0] The total amount of wall time = 127.094764 Test 009 cpld_restart_c96_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c192_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_control_c192_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_control_c192_p7 Checking test 010 cpld_control_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -576,13 +578,13 @@ Checking test 010 cpld_control_c192_p7 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 = 1001.792966 +[0] The total amount of wall time = 988.158449 Test 010 cpld_control_c192_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c192_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_restart_c192_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_restart_c192_p7 Checking test 011 cpld_restart_c192_p7 results .... Comparing sfcf036.tile1.nc .........OK Comparing sfcf036.tile2.nc .........OK @@ -632,13 +634,13 @@ Checking test 011 cpld_restart_c192_p7 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 = 615.468766 +[0] The total amount of wall time = 615.537437 Test 011 cpld_restart_c192_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c384_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_control_c384_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_control_c384_p7 Checking test 012 cpld_control_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -681,13 +683,13 @@ Checking test 012 cpld_control_c384_p7 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 = 1114.727172 +[0] The total amount of wall time = 1104.281161 Test 012 cpld_control_c384_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_control_c384_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_restart_c384_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_restart_c384_p7 Checking test 013 cpld_restart_c384_p7 results .... Comparing sfcf006.nc .........OK Comparing atmf006.nc .........OK @@ -730,13 +732,13 @@ Checking test 013 cpld_restart_c384_p7 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 = 595.617958 +[0] The total amount of wall time = 600.823952 Test 013 cpld_restart_c384_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/cpld_debug_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/cpld_debug_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/cpld_debug_p7 Checking test 014 cpld_debug_p7 results .... Comparing sfcf006.tile1.nc .........OK Comparing sfcf006.tile2.nc .........OK @@ -786,13 +788,13 @@ Checking test 014 cpld_debug_p7 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 = 710.109223 +[0] The total amount of wall time = 704.672252 Test 014 cpld_debug_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control Checking test 015 control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -839,13 +841,13 @@ 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 = 145.362420 +[0] The total amount of wall time = 140.216864 Test 015 control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_decomp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_decomp Checking test 016 control_decomp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -888,13 +890,13 @@ 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 = 149.186264 +[0] The total amount of wall time = 146.710628 Test 016 control_decomp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_2threads +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_2threads Checking test 017 control_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -937,13 +939,13 @@ 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 = 131.283780 +[0] The total amount of wall time = 129.866168 Test 017 control_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_restart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_restart Checking test 018 control_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -982,13 +984,13 @@ 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 = 75.657470 +[0] The total amount of wall time = 75.623304 Test 018 control_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_fhzero +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_fhzero Checking test 019 control_fhzero results .... Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf021.nc ............ALT CHECK......OK @@ -1031,13 +1033,13 @@ 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 = 134.479030 +[0] The total amount of wall time = 133.343085 Test 019 control_fhzero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_CubedSphereGrid -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_CubedSphereGrid +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_CubedSphereGrid Checking test 020 control_CubedSphereGrid results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -1064,13 +1066,13 @@ Checking test 020 control_CubedSphereGrid results .... Comparing atmf024.tile5.nc .........OK Comparing atmf024.tile6.nc .........OK -[0] The total amount of wall time = 139.597918 +[0] The total amount of wall time = 136.187747 Test 020 control_CubedSphereGrid PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_latlon -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_latlon +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_latlon Checking test 021 control_latlon results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1081,30 +1083,30 @@ Checking test 021 control_latlon results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 140.821839 +[0] The total amount of wall time = 139.878522 Test 021 control_latlon PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wrtGauss_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_wrtGauss_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_wrtGauss_netcdf_parallel Checking test 022 control_wrtGauss_netcdf_parallel results .... Comparing sfcf000.nc ............ALT CHECK......OK - Comparing sfcf024.nc ............ALT CHECK......OK - Comparing atmf000.nc ............ALT CHECK......OK + Comparing sfcf024.nc .........OK + Comparing atmf000.nc .........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 = 144.209146 +[0] The total amount of wall time = 142.607004 Test 022 control_wrtGauss_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c48 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_c48 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_c48 Checking test 023 control_c48 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1143,13 +1145,13 @@ 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 = 437.907573 +[0] The total amount of wall time = 437.175465 Test 023 control_c48 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_c192 Checking test 024 control_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1160,13 +1162,13 @@ Checking test 024 control_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 564.179184 +[0] The total amount of wall time = 554.740404 Test 024 control_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c384 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_c384 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_c384 Checking test 025 control_c384 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1177,13 +1179,13 @@ Checking test 025 control_c384 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 1039.442063 +[0] The total amount of wall time = 1033.373735 Test 025 control_c384 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c384gdas -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_c384gdas +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_c384gdas Checking test 026 control_c384gdas results .... Comparing sfcf000.nc .........OK Comparing sfcf006.nc .........OK @@ -1226,13 +1228,13 @@ 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 = 920.379347 +[0] The total amount of wall time = 908.985021 Test 026 control_c384gdas PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_stochy +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_stochy Checking test 027 control_stochy results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1243,26 +1245,26 @@ Checking test 027 control_stochy results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 97.610958 +[0] The total amount of wall time = 92.453456 Test 027 control_stochy PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_stochy_restart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_stochy_restart Checking test 028 control_stochy_restart results .... Comparing sfcf012.nc .........OK Comparing atmf012.nc .........OK Comparing GFSFLX.GrbF12 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 51.295017 +[0] The total amount of wall time = 50.733304 Test 028 control_stochy_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_lndp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_lndp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_lndp Checking test 029 control_lndp results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1273,13 +1275,13 @@ Checking test 029 control_lndp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 85.316778 +[0] The total amount of wall time = 84.643812 Test 029 control_lndp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_p7 Checking test 030 control_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1326,13 +1328,13 @@ Checking test 030 control_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 157.623433 +[0] The total amount of wall time = 154.915093 Test 030 control_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_p7_rrtmgp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_p7_rrtmgp Checking test 031 control_p7_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1379,13 +1381,13 @@ Checking test 031 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 = 254.999082 +[0] The total amount of wall time = 248.998754 Test 031 control_p7_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_restart_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_restart_p7 Checking test 032 control_restart_p7 results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1424,13 +1426,13 @@ Checking test 032 control_restart_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 85.179715 +[0] The total amount of wall time = 84.047479 Test 032 control_restart_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_decomp_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_decomp_p7 Checking test 033 control_decomp_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1473,13 +1475,13 @@ Checking test 033 control_decomp_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 167.770658 +[0] The total amount of wall time = 159.805043 Test 033 control_decomp_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_2threads_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_2threads_p7 Checking test 034 control_2threads_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1522,13 +1524,13 @@ Checking test 034 control_2threads_p7 results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 147.199454 +[0] The total amount of wall time = 144.071017 Test 034 control_2threads_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_control Checking test 035 regional_control results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1539,26 +1541,26 @@ Checking test 035 regional_control results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 347.610804 +[0] The total amount of wall time = 345.348759 Test 035 regional_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_restart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_restart Checking test 036 regional_restart results .... Comparing dynf024.nc .........OK Comparing phyf024.nc .........OK Comparing PRSLEV.GrbF24 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 194.556304 +[0] The total amount of wall time = 189.988860 Test 036 regional_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_noquilt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_noquilt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_noquilt Checking test 037 regional_noquilt results .... Comparing atmos_4xdaily.nc .........OK Comparing fv3_history2d.nc .........OK @@ -1566,13 +1568,13 @@ 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 = 378.227394 +[0] The total amount of wall time = 371.481545 Test 037 regional_noquilt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_2threads +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_2threads Checking test 038 regional_2threads results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1583,13 +1585,13 @@ Checking test 038 regional_2threads results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 197.371475 +[0] The total amount of wall time = 196.778863 Test 038 regional_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_hafs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_hafs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_hafs Checking test 039 regional_hafs results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1598,26 +1600,26 @@ Checking test 039 regional_hafs results .... Comparing HURPRS.GrbF00 .........OK Comparing HURPRS.GrbF24 .........OK -[0] The total amount of wall time = 348.352973 +[0] The total amount of wall time = 347.407461 Test 039 regional_hafs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_netcdf_parallel -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_netcdf_parallel +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_netcdf_parallel Checking test 040 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 = 347.280802 +[0] The total amount of wall time = 346.341713 Test 040 regional_netcdf_parallel PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_RRTMGP -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_RRTMGP +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_RRTMGP Checking test 041 regional_RRTMGP results .... Comparing dynf000.nc .........OK Comparing dynf024.nc .........OK @@ -1628,13 +1630,13 @@ Checking test 041 regional_RRTMGP results .... Comparing NATLEV.GrbF00 .........OK Comparing NATLEV.GrbF24 .........OK -[0] The total amount of wall time = 589.405954 +[0] The total amount of wall time = 580.186233 Test 041 regional_RRTMGP PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_control Checking test 042 rap_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1681,13 +1683,13 @@ Checking test 042 rap_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 397.073859 +[0] The total amount of wall time = 398.668675 Test 042 rap_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_2threads +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_2threads Checking test 043 rap_2threads results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1734,13 +1736,13 @@ Checking test 043 rap_2threads results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 375.156818 +[0] The total amount of wall time = 372.085529 Test 043 rap_2threads PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_sfcdiff +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_sfcdiff Checking test 044 rap_sfcdiff results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1787,13 +1789,13 @@ Checking test 044 rap_sfcdiff results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 397.242733 +[0] The total amount of wall time = 396.693582 Test 044 rap_sfcdiff PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_sfcdiff_restart +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_sfcdiff_restart Checking test 045 rap_sfcdiff_restart results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK @@ -1832,13 +1834,13 @@ Checking test 045 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 = 202.475193 +[0] The total amount of wall time = 203.792390 Test 045 rap_sfcdiff_restart PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hrrr_control -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hrrr_control +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hrrr_control Checking test 046 hrrr_control results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1885,13 +1887,13 @@ Checking test 046 hrrr_control results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 386.159708 +[0] The total amount of wall time = 383.739389 Test 046 hrrr_control PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rrfs_v1beta -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rrfs_v1beta +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rrfs_v1beta Checking test 047 rrfs_v1beta results .... Comparing sfcf000.nc .........OK Comparing sfcf021.nc .........OK @@ -1938,13 +1940,13 @@ Checking test 047 rrfs_v1beta results .... Comparing RESTART/sfc_data.tile5.nc .........OK Comparing RESTART/sfc_data.tile6.nc .........OK -[0] The total amount of wall time = 390.478007 +[0] The total amount of wall time = 391.707459 Test 047 rrfs_v1beta PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_rrtmgp +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_rrtmgp Checking test 048 control_rrtmgp results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1955,13 +1957,13 @@ Checking test 048 control_rrtmgp results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 270.998439 +[0] The total amount of wall time = 271.306490 Test 048 control_rrtmgp PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp_c192 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_rrtmgp_c192 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_rrtmgp_c192 Checking test 049 control_rrtmgp_c192 results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -1972,13 +1974,13 @@ Checking test 049 control_rrtmgp_c192 results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF12 .........OK -[0] The total amount of wall time = 703.517112 +[0] The total amount of wall time = 709.719464 Test 049 control_rrtmgp_c192 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmg -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_csawmg +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_csawmg Checking test 050 control_csawmg results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -1989,13 +1991,13 @@ Checking test 050 control_csawmg results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 297.077758 +[0] The total amount of wall time = 288.509613 Test 050 control_csawmg PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmgt -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_csawmgt +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_csawmgt Checking test 051 control_csawmgt results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2006,13 +2008,13 @@ Checking test 051 control_csawmgt results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 372.404188 +[0] The total amount of wall time = 360.542608 Test 051 control_csawmgt PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_flake -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_flake +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_flake Checking test 052 control_flake results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2023,13 +2025,13 @@ Checking test 052 control_flake results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 238.915699 +[0] The total amount of wall time = 246.439610 Test 052 control_flake PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_ras -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_ras +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_ras Checking test 053 control_ras results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2040,13 +2042,13 @@ Checking test 053 control_ras results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 193.345748 +[0] The total amount of wall time = 192.342514 Test 053 control_ras PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_thompson Checking test 054 control_thompson results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2057,13 +2059,13 @@ Checking test 054 control_thompson results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 241.339618 +[0] The total amount of wall time = 240.306556 Test 054 control_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_no_aero -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_thompson_no_aero +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_thompson_no_aero Checking test 055 control_thompson_no_aero results .... Comparing sfcf000.nc .........OK Comparing sfcf024.nc .........OK @@ -2074,13 +2076,13 @@ Checking test 055 control_thompson_no_aero results .... Comparing GFSPRS.GrbF00 .........OK Comparing GFSPRS.GrbF24 .........OK -[0] The total amount of wall time = 230.675343 +[0] The total amount of wall time = 230.373996 Test 055 control_thompson_no_aero PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/fv3_HAFS_v0_hwrf_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/fv3_HAFS_v0_hwrf_thompson Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2145,13 +2147,13 @@ Checking test 056 fv3_HAFS_v0_hwrf_thompson results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 177.021982 +[0] The total amount of wall time = 176.231230 Test 056 fv3_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/ESG_HAFS_v0_HWRF_thompson -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/fv3_esg_HAFS_v0_hwrf_thompson +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/fv3_esg_HAFS_v0_hwrf_thompson Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2166,50 +2168,50 @@ Checking test 057 fv3_esg_HAFS_v0_hwrf_thompson results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 323.458151 +[0] The total amount of wall time = 325.341652 Test 057 fv3_esg_HAFS_v0_hwrf_thompson PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wam_repro -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_wam_repro +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_wam_repro Checking test 058 control_wam results .... Comparing sfcf024.nc .........OK Comparing atmf024.nc .........OK -[0] The total amount of wall time = 127.645973 +[0] The total amount of wall time = 127.228049 Test 058 control_wam PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_debug Checking test 059 control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 167.448296 +[0] The total amount of wall time = 167.064932 Test 059 control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_2threads_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_2threads_debug Checking test 060 control_2threads_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 154.806209 +[0] The total amount of wall time = 154.692553 Test 060 control_2threads_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_CubedSphereGrid_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_CubedSphereGrid_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_CubedSphereGrid_debug Checking test 061 control_CubedSphereGrid_debug results .... Comparing sfcf000.tile1.nc .........OK Comparing sfcf000.tile2.nc .........OK @@ -2236,338 +2238,338 @@ Checking test 061 control_CubedSphereGrid_debug results .... Comparing atmf001.tile5.nc .........OK Comparing atmf001.tile6.nc .........OK -[0] The total amount of wall time = 181.165268 +[0] The total amount of wall time = 181.735547 Test 061 control_CubedSphereGrid_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_wrtGauss_netcdf_parallel_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_wrtGauss_netcdf_parallel_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_wrtGauss_netcdf_parallel_debug Checking test 062 control_wrtGauss_netcdf_parallel_debug results .... - Comparing sfcf000.nc .........OK + Comparing sfcf000.nc ............ALT CHECK......OK Comparing sfcf001.nc ............ALT CHECK......OK - Comparing atmf000.nc .........OK - Comparing atmf001.nc .........OK + Comparing atmf000.nc ............ALT CHECK......OK + Comparing atmf001.nc ............ALT CHECK......OK -[0] The total amount of wall time = 171.054333 +[0] The total amount of wall time = 171.326067 Test 062 control_wrtGauss_netcdf_parallel_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_stochy_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_stochy_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_stochy_debug Checking test 063 control_stochy_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 191.574511 +[0] The total amount of wall time = 191.710409 Test 063 control_stochy_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_lndp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_lndp_debug Checking test 064 control_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 172.594212 +[0] The total amount of wall time = 172.424886 Test 064 control_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_rrtmgp_debug Checking test 065 control_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 200.164292 +[0] The total amount of wall time = 199.761335 Test 065 control_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmg_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_csawmg_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_csawmg_debug Checking test 066 control_csawmg_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 227.955287 +[0] The total amount of wall time = 226.863442 Test 066 control_csawmg_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_csawmgt_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_csawmgt_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_csawmgt_debug Checking test 067 control_csawmgt_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 264.406095 +[0] The total amount of wall time = 264.668948 Test 067 control_csawmgt_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_ras_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_ras_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_ras_debug Checking test 068 control_ras_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 174.418920 +[0] The total amount of wall time = 174.418451 Test 068 control_ras_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_diag_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_diag_debug Checking test 069 control_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 177.361504 +[0] The total amount of wall time = 176.874235 Test 069 control_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_debug_p7 -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_debug_p7 +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_debug_p7 Checking test 070 control_debug_p7 results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 183.364404 +[0] The total amount of wall time = 183.610582 Test 070 control_debug_p7 PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_thompson_debug Checking test 071 control_thompson_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 196.411054 +[0] The total amount of wall time = 196.984411 Test 071 control_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_no_aero_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_thompson_no_aero_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_thompson_no_aero_debug Checking test 072 control_thompson_no_aero_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 189.476892 +[0] The total amount of wall time = 189.300181 Test 072 control_thompson_no_aero_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_thompson_debug_extdiag -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_thompson_extdiag_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_thompson_extdiag_debug Checking test 073 control_thompson_extdiag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 206.911905 +[0] The total amount of wall time = 206.460395 Test 073 control_thompson_extdiag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/fv3_regional_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/regional_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/regional_debug Checking test 074 regional_debug results .... Comparing dynf000.nc .........OK Comparing dynf001.nc .........OK Comparing phyf000.nc .........OK Comparing phyf001.nc .........OK -[0] The total amount of wall time = 282.195807 +[0] The total amount of wall time = 282.624806 Test 074 regional_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_control_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_control_debug Checking test 075 rap_control_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 304.786117 +[0] The total amount of wall time = 304.154566 Test 075 rap_control_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_control_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_unified_drag_suite_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_unified_drag_suite_debug Checking test 076 rap_unified_drag_suite_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 305.227868 +[0] The total amount of wall time = 304.916270 Test 076 rap_unified_drag_suite_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_diag_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_diag_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_diag_debug Checking test 077 rap_diag_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 321.197855 +[0] The total amount of wall time = 321.409204 Test 077 rap_diag_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_cires_ugwp_debug Checking test 078 rap_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 312.566293 +[0] The total amount of wall time = 310.712097 Test 078 rap_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_unified_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_unified_ugwp_debug Checking test 079 rap_unified_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 310.804379 +[0] The total amount of wall time = 311.154763 Test 079 rap_unified_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_noah_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_noah_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_noah_debug Checking test 080 rap_noah_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 301.383625 +[0] The total amount of wall time = 300.644540 Test 080 rap_noah_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_rrtmgp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_rrtmgp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_rrtmgp_debug Checking test 081 rap_rrtmgp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 534.121825 +[0] The total amount of wall time = 533.183248 Test 081 rap_rrtmgp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_lndp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_lndp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_lndp_debug Checking test 082 rap_lndp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 307.039183 +[0] The total amount of wall time = 307.124566 Test 082 rap_lndp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_sfcdiff_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_sfcdiff_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_sfcdiff_debug Checking test 083 rap_sfcdiff_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 304.759648 +[0] The total amount of wall time = 304.275245 Test 083 rap_sfcdiff_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_flake_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_flake_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_flake_debug Checking test 084 rap_flake_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 304.644505 +[0] The total amount of wall time = 305.087324 Test 084 rap_flake_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rap_noah_sfcdiff_cires_ugwp_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rap_noah_sfcdiff_cires_ugwp_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rap_noah_sfcdiff_cires_ugwp_debug Checking test 085 rap_noah_sfcdiff_cires_ugwp_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 508.410593 +[0] The total amount of wall time = 507.368843 Test 085 rap_noah_sfcdiff_cires_ugwp_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/rrfs_v1beta_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/rrfs_v1beta_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/rrfs_v1beta_debug Checking test 086 rrfs_v1beta_debug results .... Comparing sfcf000.nc .........OK Comparing sfcf001.nc .........OK Comparing atmf000.nc .........OK Comparing atmf001.nc .........OK -[0] The total amount of wall time = 304.217683 +[0] The total amount of wall time = 303.587551 Test 086 rrfs_v1beta_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/fv3_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/fv3_HAFS_v0_hwrf_thompson_debug Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.tile1.nc .........OK Comparing atmos_4xdaily.tile2.nc .........OK @@ -2632,13 +2634,13 @@ Checking test 087 fv3_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/phy_data.tile5.nc .........OK Comparing RESTART/phy_data.tile6.nc .........OK -[0] The total amount of wall time = 237.591417 +[0] The total amount of wall time = 237.769811 Test 087 fv3_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/ESG_HAFS_v0_HWRF_thompson_debug -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/fv3_esg_HAFS_v0_hwrf_thompson_debug +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/fv3_esg_HAFS_v0_hwrf_thompson_debug Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing atmos_4xdaily.nc .........OK Comparing phyf000.nc .........OK @@ -2653,111 +2655,111 @@ Checking test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug results .... Comparing RESTART/sfc_data.nc .........OK Comparing RESTART/phy_data.nc .........OK -[0] The total amount of wall time = 438.335831 +[0] The total amount of wall time = 437.388712 Test 088 fv3_esg_HAFS_v0_hwrf_thompson_debug PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_atm Checking test 089 hafs_regional_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 597.403427 +[0] The total amount of wall time = 602.765187 Test 089 hafs_regional_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_ocn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_atm_ocn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_atm_ocn Checking test 090 hafs_regional_atm_ocn results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........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 = 591.595775 +[0] The total amount of wall time = 593.417629 Test 090 hafs_regional_atm_ocn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_atm_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_atm_wav Checking test 091 hafs_regional_atm_wav results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc .........OK Comparing out_grd.ww3 .........OK Comparing out_pnt.ww3 .........OK -[0] The total amount of wall time = 971.769640 +[0] The total amount of wall time = 973.012028 Test 091 hafs_regional_atm_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_atm_ocn_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_atm_ocn_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_atm_ocn_wav Checking test 092 hafs_regional_atm_ocn_wav results .... Comparing atmf006.nc ............ALT CHECK......OK - Comparing sfcf006.nc .........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 = 1035.558703 +[0] The total amount of wall time = 1040.927590 Test 092 hafs_regional_atm_ocn_wav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_1nest_atm Checking test 093 hafs_regional_1nest_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc .........OK -[0] The total amount of wall time = 385.221180 +[0] The total amount of wall time = 383.468100 Test 093 hafs_regional_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_telescopic_2nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_telescopic_2nests_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_telescopic_2nests_atm Checking test 094 hafs_regional_telescopic_2nests_atm results .... - Comparing atmf006.nc .........OK + Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 665.440014 +[0] The total amount of wall time = 669.357794 Test 094 hafs_regional_telescopic_2nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_global_1nest_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_global_1nest_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_global_1nest_atm Checking test 095 hafs_global_1nest_atm results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 646.717996 +[0] The total amount of wall time = 648.828898 Test 095 hafs_global_1nest_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_global_multiple_4nests_atm -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_global_multiple_4nests_atm +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_global_multiple_4nests_atm Checking test 096 hafs_global_multiple_4nests_atm results .... Comparing atmf006.nc .........OK Comparing sfcf006.nc ............ALT CHECK......OK -[0] The total amount of wall time = 658.835204 +[0] The total amount of wall time = 659.946621 Test 096 hafs_global_multiple_4nests_atm PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_docn -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_docn +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_docn Checking test 097 hafs_regional_docn results .... Comparing atmf006.nc ............ALT CHECK......OK Comparing sfcf006.nc ............ALT CHECK......OK @@ -2765,111 +2767,111 @@ Checking test 097 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 = 599.892709 +[0] The total amount of wall time = 599.243621 Test 097 hafs_regional_docn PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_docn_oisst -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_docn_oisst +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_docn_oisst Checking test 098 hafs_regional_docn_oisst results .... - Comparing atmf006.nc ............ALT CHECK......OK + Comparing atmf006.nc .........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 = 596.834384 +[0] The total amount of wall time = 595.918955 Test 098 hafs_regional_docn_oisst PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/hafs_regional_datm_cdeps -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/hafs_regional_datm_cdeps +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/hafs_regional_datm_cdeps Checking test 099 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 = 1088.892998 +[0] The total amount of wall time = 1082.855141 Test 099 hafs_regional_datm_cdeps PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_control_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_control_cfsr Checking test 100 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 = 170.857338 +[0] The total amount of wall time = 169.181945 Test 100 datm_cdeps_control_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_restart_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_restart_cfsr Checking test 101 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 = 118.909333 +[0] The total amount of wall time = 115.761324 Test 101 datm_cdeps_restart_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_control_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_control_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_control_gefs Checking test 102 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 = 165.178619 +[0] The total amount of wall time = 163.922505 Test 102 datm_cdeps_control_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_stochy_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_stochy_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_stochy_gefs Checking test 103 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 = 165.460782 +[0] The total amount of wall time = 164.572407 Test 103 datm_cdeps_stochy_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_bulk_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_bulk_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_bulk_cfsr Checking test 104 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 = 170.764967 +[0] The total amount of wall time = 168.766878 Test 104 datm_cdeps_bulk_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_bulk_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_bulk_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_bulk_gefs Checking test 105 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 = 164.829683 +[0] The total amount of wall time = 162.382923 Test 105 datm_cdeps_bulk_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_mx025_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_mx025_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_mx025_cfsr Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2878,13 +2880,13 @@ Checking test 106 datm_cdeps_mx025_cfsr results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 353.099104 +[0] The total amount of wall time = 340.960475 Test 106 datm_cdeps_mx025_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_mx025_gefs -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_mx025_gefs +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_mx025_gefs Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/MOM.res_1.nc .........OK @@ -2893,35 +2895,35 @@ Checking test 107 datm_cdeps_mx025_gefs results .... Comparing RESTART/iced.2011-10-01-43200.nc .........OK Comparing RESTART/DATM_GEFS.cpl.r.2011-10-01-43200.nc .........OK -[0] The total amount of wall time = 349.955082 +[0] The total amount of wall time = 339.544983 Test 107 datm_cdeps_mx025_gefs PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_control_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_multiple_files_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_multiple_files_cfsr Checking test 108 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 = 171.184154 +[0] The total amount of wall time = 168.483972 Test 108 datm_cdeps_multiple_files_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/datm_cdeps_debug_cfsr -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/datm_cdeps_debug_cfsr +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/datm_cdeps_debug_cfsr Checking test 109 datm_cdeps_debug_cfsr results .... Comparing RESTART/MOM.res.nc .........OK Comparing RESTART/iced.2011-10-01-21600.nc .........OK Comparing RESTART/DATM_CFSR.cpl.r.2011-10-01-21600.nc .........OK -[0] The total amount of wall time = 496.394147 +[0] The total amount of wall time = 495.961281 Test 109 datm_cdeps_debug_cfsr PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_atmwav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_atmwav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_atmwav Checking test 110 control_atmwav results .... Comparing sfcf000.nc .........OK Comparing sfcf012.nc .........OK @@ -2965,13 +2967,13 @@ Checking test 110 control_atmwav results .... Comparing RESTART/sfc_data.tile6.nc .........OK Comparing 20210322.180000.restart.glo_1deg .........OK -[0] The total amount of wall time = 94.219545 +[0] The total amount of wall time = 92.771914 Test 110 control_atmwav PASS baseline dir = /gpfs/dell2/emc/modeling/noscrub/emc.nemspara/RT/NEMSfv3gfs/develop-20211214/control_c384gdas_wav -working dir = /gpfs/dell2/ptmp/Denise.Worthen/FV3_RT/rt_3378/control_c384gdas_wav +working dir = /gpfs/dell2/ptmp/Dusan.Jovic/FV3_RT/rt_30970/control_c384gdas_wav Checking test 111 control_c384gdas_wav results .... Comparing sfcf000.nc .........OK Comparing sfcf003.nc .........OK @@ -3017,11 +3019,11 @@ Checking test 111 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 = 626.565133 +[0] The total amount of wall time = 616.842055 Test 111 control_c384gdas_wav PASS REGRESSION TEST WAS SUCCESSFUL -Tue Dec 14 18:25:36 UTC 2021 -Elapsed time: 01h:40m:09s. Have a nice day! +Thu Dec 16 01:14:46 UTC 2021 +Elapsed time: 04h:00m:39s. Have a nice day! diff --git a/tests/ci/repo_check.sh b/tests/ci/repo_check.sh index e2cf8ec238..b8d0487e61 100755 --- a/tests/ci/repo_check.sh +++ b/tests/ci/repo_check.sh @@ -13,8 +13,8 @@ result() { } # Declare variables -declare -A base fv3 mom6 cice ww3 stoch gocart nems cmeps cdeps hycom cmake -submodules="fv3 mom6 cice ww3 stoch gocart nems cmeps cdeps hycom cmake" +declare -A base fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake +submodules="fv3 mom6 cice ww3 stoch gocart cmeps cdeps hycom cmake" comment='' ownerID=$1 @@ -47,10 +47,6 @@ gocart[repo]='https://github.com/GEOS-ESM/GOCART' gocart[branch]='develop' gocart[dir]='GOCART' -nems[repo]='https://github.com/NOAA-EMC/NEMS' -nems[branch]='develop' -nems[dir]='NEMS' - cmeps[repo]='https://github.com/NOAA-EMC/CMEPS' cmeps[branch]='emc/develop' cmeps[dir]='CMEPS-interface/CMEPS' diff --git a/tests/compile.sh b/tests/compile.sh index 65be0b90e6..201c943a97 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -48,7 +48,7 @@ if [[ $MACHINE_ID == cheyenne.* ]] ; then BUILD_JOBS=${BUILD_JOBS:-3} elif [[ $MACHINE_ID == wcoss_dell_p3 ]] ; then BUILD_JOBS=${BUILD_JOBS:-4} - source $PATHTR/NEMS/src/conf/module-setup.sh.inc + source $PATHTR/tests/module-setup.sh fi BUILD_JOBS=${BUILD_JOBS:-8} diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 62695f0483..060baa354f 100755 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -909,7 +909,7 @@ export SMONTH=10 export SDAY=03 export SHOUR=00 export SECS=`expr $SHOUR \* 3600` -export FHMAX=${FHMAX:-`expr $DAYS \* 24`} +export FHMAX=$(( DAYS*24 )) export DT_ATMOS=1800 export FHCYC=24 export FHROT=0 @@ -1055,6 +1055,7 @@ export use_mommesh=true export RUNTYPE=startup export CICERUNTYPE=initial export eps_imesh=1.0e-1 +export ATMTILESIZE=`expr $NPX - 1` # FV3 defaults export FRAC_GRID=.true. diff --git a/tests/fv3_conf/compile_qsub.IN_cheyenne b/tests/fv3_conf/compile_qsub.IN_cheyenne old mode 100755 new mode 100644 diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray index f1e19023da..458e3fbb79 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_cray +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_cray @@ -13,6 +13,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=wcoss_cray source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 diff --git a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 index f7870107fb..d50fd44acc 100644 --- a/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 +++ b/tests/fv3_conf/fv3_bsub.IN_wcoss_dell_p3 @@ -14,6 +14,7 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=wcoss_dell_p3 source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 diff --git a/tests/fv3_conf/fv3_qsub.IN_cheyenne b/tests/fv3_conf/fv3_qsub.IN_cheyenne old mode 100755 new mode 100644 index 41328919d2..d519c37122 --- a/tests/fv3_conf/fv3_qsub.IN_cheyenne +++ b/tests/fv3_conf/fv3_qsub.IN_cheyenne @@ -11,11 +11,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=cheyenne source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x echo "Model started: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_expanse b/tests/fv3_conf/fv3_slurm.IN_expanse index aa14e4c073..9420868b8d 100644 --- a/tests/fv3_conf/fv3_slurm.IN_expanse +++ b/tests/fv3_conf/fv3_slurm.IN_expanse @@ -12,11 +12,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=expanse source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x ulimit -s unlimited diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaea index 3811f218f1..2d540e00e5 100644 --- a/tests/fv3_conf/fv3_slurm.IN_gaea +++ b/tests/fv3_conf/fv3_slurm.IN_gaea @@ -13,12 +13,13 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=gaea source ./module-setup.sh source /lustre/f2/pdata/esrl/gsd/contrib/lua-5.1.4.9/init/init_lmod.sh module use $( pwd -P ) module load modules.fv3 -set -x module list +set -x echo "Model started: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_hera b/tests/fv3_conf/fv3_slurm.IN_hera index a427250099..effafccb4e 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hera +++ b/tests/fv3_conf/fv3_slurm.IN_hera @@ -14,11 +14,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=hera source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x echo "Model started: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_jet b/tests/fv3_conf/fv3_slurm.IN_jet index f3f0a4b057..1358f3d613 100644 --- a/tests/fv3_conf/fv3_slurm.IN_jet +++ b/tests/fv3_conf/fv3_slurm.IN_jet @@ -15,11 +15,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=jet source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x echo "Model started: " `date` diff --git a/tests/fv3_conf/fv3_slurm.IN_orion b/tests/fv3_conf/fv3_slurm.IN_orion index 68a93c28ec..eaa7e287ed 100644 --- a/tests/fv3_conf/fv3_slurm.IN_orion +++ b/tests/fv3_conf/fv3_slurm.IN_orion @@ -15,11 +15,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=orion source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x ulimit -s unlimited diff --git a/tests/fv3_conf/fv3_slurm.IN_s4 b/tests/fv3_conf/fv3_slurm.IN_s4 index 8e5c41fa77..71ef4578b3 100644 --- a/tests/fv3_conf/fv3_slurm.IN_s4 +++ b/tests/fv3_conf/fv3_slurm.IN_s4 @@ -14,11 +14,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID = s4 source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x ulimit -s unlimited diff --git a/tests/fv3_conf/fv3_slurm.IN_stampede b/tests/fv3_conf/fv3_slurm.IN_stampede index c8383e9f86..3a2f9dd76a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_stampede +++ b/tests/fv3_conf/fv3_slurm.IN_stampede @@ -11,11 +11,11 @@ set -eux echo -n " $( date +%s )," > job_timestamp.txt set +x +MACHINE_ID=stampede source ./module-setup.sh module use $( pwd -P ) module load modules.fv3 module list - set -x echo "Model started: " `date` diff --git a/tests/module-setup.sh b/tests/module-setup.sh new file mode 100755 index 0000000000..8d84537c66 --- /dev/null +++ b/tests/module-setup.sh @@ -0,0 +1,117 @@ +#!/bin/bash +set -eu + +if [[ $MACHINE_ID = jet* ]] ; then + # We are on NOAA Jet + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/lmod/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = hera* ]] ; then + # We are on NOAA Hera + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/lmod/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = orion* ]] ; then + # We are on Orion + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /apps/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = s4* ]] ; then + # We are on SSEC Wisconsin S4 + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /usr/share/lmod/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = wcoss_cray ]] ; then + # We are on NOAA Luna or Surge + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/modules/default/init/bash + fi + module purge + # Workaround until module issues are fixed: + unset _LMFILES_ + unset LOADEDMODULES + module use /opt/modulefiles + module use /opt/cray/ari/modulefiles + module use /opt/cray/craype/default/alt-modulefiles + module use /opt/cray/alt-modulefiles + module use /gpfs/hps/nco/ops/nwprod/modulefiles + module use /gpfs/hps/nco/ops/nwprod/lib/modulefiles + module use /usrx/local/prod/modulefiles + +elif [[ $MACHINE_ID = wcoss_dell_p3 ]] ; then + # We are on NOAA Mars or Venus + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /usrx/local/prod/lmod/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = cheyenne* ]] ; then + # We are on NCAR Cheyenne + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /glade/u/apps/ch/modulefiles/default/localinit/localinit.sh + fi + module purge + +elif [[ $MACHINE_ID = stampede* ]] ; then + # We are on TACC Stampede + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/apps/lmod/lmod/init/bash + fi + module purge + +elif [[ $MACHINE_ID = gaea* ]] ; then + # We are on GAEA. + if ( ! eval module help > /dev/null 2>&1 ) ; then + # We cannot simply load the module command. The GAEA + # /etc/profile modifies a number of module-related variables + # before loading the module command. Without those variables, + # the module command fails. Hence we actually have to source + # /etc/profile here. + source /etc/profile + __ms_source_etc_profile=yes + else + __ms_source_etc_profile=no + fi + module purge + # clean up after purge + unset _LMFILES_ + unset _LMFILES_000 + unset _LMFILES_001 + unset LOADEDMODULES + module load modules + if [[ -d /opt/cray/ari/modulefiles ]] ; then + module use -a /opt/cray/ari/modulefiles + fi + if [[ -d /opt/cray/pe/ari/modulefiles ]] ; then + module use -a /opt/cray/pe/ari/modulefiles + fi + if [[ -d /opt/cray/pe/craype/default/modulefiles ]] ; then + module use -a /opt/cray/pe/craype/default/modulefiles + fi + if [[ -s /etc/opt/cray/pe/admin-pe/site-config ]] ; then + source /etc/opt/cray/pe/admin-pe/site-config + fi + if [[ "$__ms_source_etc_profile" == yes ]] ; then + source /etc/profile + unset __ms_source_etc_profile + fi + +elif [[ $MACHINE_ID = expanse* ]]; then + # We are on SDSC Expanse + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /etc/profile.d/modules.sh + fi + module purge + module load slurm/expanse/20.02.3 + +else + echo WARNING: UNKNOWN PLATFORM 1>&2 +fi diff --git a/tests/opnReqTest b/tests/opnReqTest index 97905f96b4..d79d754f07 100755 --- a/tests/opnReqTest +++ b/tests/opnReqTest @@ -74,7 +74,7 @@ find_build() { } build_opnReqTests() { - rm -f fv3_*.exe modules.fv3_* + rm -f fv3_std.exe fv3_dbg.exe fv3_bit.exe modules.fv3_std modules.fv3_dbg modules.fv3_bit model_found=false base_opt= @@ -309,14 +309,17 @@ fi # utility functions in rt_utils need to be able to see variables in opnReqTest source rt_utils.sh -source $PATHTR/NEMS/src/conf/module-setup.sh.inc +source module-setup.sh + # Machine-dependent libraries, modules, variables, etc. if [[ $MACHINE_ID = hera.* ]]; then - export PATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin:$PATH - export PYTHONPATH=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/lib/python3.8/site-packages - ECFLOW_START=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3/bin/ecflow_start.sh - ECF_PORT=$(( $(id -u) + 1500 )) + PYTHONHOME=/scratch1/NCEPDEV/nems/emc.nemspara/soft/miniconda3_new_20210629 + export PATH=$PYTHONHOME/bin:$PATH + export PYTHONPATH=$PYTHONHOME/lib/python3.7/site-packages + + module load ecflow + ECFLOW_START=ecflow_start.sh PARTITION= QUEUE=batch @@ -516,7 +519,8 @@ mkdir -p ${RUNDIR_ROOT} if [[ $ECFLOW == true ]]; then ECFLOW_RUN=${PATHRT}/ecflow_opnReqTest_run - ECFLOW_SUITE=opnreqtest + ECFLOW_SUITE=opnreqtest_$$ + COMPILE_PREV_WW3_NR= rm -rf ${ECFLOW_RUN} mkdir -p ${ECFLOW_RUN}/${ECFLOW_SUITE} cp head.h tail.h ${ECFLOW_RUN} @@ -527,6 +531,7 @@ if [[ $ECFLOW == true ]]; then edit ECF_INCLUDE '${ECFLOW_RUN}' edit ECF_KILL_CMD kill -15 %ECF_RID% > %ECF_JOB%.kill 2>&1 edit ECF_TRIES 1 + label src_dir '{$PATHTR}' label rundir_root '${RUNDIR_ROOT}' limit max_builds 6 limit max_jobs 30 @@ -540,6 +545,12 @@ if [[ $ECFLOW == true ]]; then else error "ecflow is not supported on this machine $MACHINE_ID" fi + + if [[ $MACHINE_ID == hera.* ]] && [[ ! $HOSTNAME == hecflow* ]]; then + echo "ERROR: To use ECFlow on Hera please use the 'hecflow01' login node: ssh hecflow01." + exit 1 + fi + fi opnreqtest_log=${PATHRT}/OpnReqTests_$MACHINE_ID.log diff --git a/tests/opnReqTests/rst.sh b/tests/opnReqTests/rst.sh index 1ee9d7d40e..8e127ed955 100644 --- a/tests/opnReqTests/rst.sh +++ b/tests/opnReqTests/rst.sh @@ -3,6 +3,13 @@ source $PATHRT/opnReqTests/std.sh DEP_RUN=${TEST_NAME} +if [[ ! -z $NSTF_NAME ]]; then + second_value=$(echo $NSTF_NAME | cut -d ',' -f 2) + if [[ $second_value -eq 1 ]]; then + NSTF_NAME=$(echo $NSTF_NAME | awk 'BEGIN{FS=OFS=","} { $2-=1; print}') + fi +fi + if [[ $application == 'global' ]]; then FHROT=$(( FHMAX/2 )) OUTPUT_FH="3 -1" @@ -12,13 +19,6 @@ if [[ $application == 'global' ]]; then RESTART_FILE_PREFIX="${SYEAR}${SMONTH}$(printf "%02d" $((SDAY+1))).$(printf "%02d" $(( SHOUR + FHROT - 24 )))0000" fi - if [[ ! -z $NSTF_NAME ]]; then - second_value=$(echo $NSTF_NAME | cut -d ',' -f 2) - if [[ $second_value -eq 1 ]]; then - NSTF_NAME=$(echo $NSTF_NAME | awk 'BEGIN{FS=OFS=","} { $2-=1; print}') - fi - fi - elif [[ $application == 'regional' ]]; then echo "Regional application not yet implemented for restart" exit 1 @@ -33,7 +33,6 @@ elif [[ $application == 'cpld' ]]; then RESTART_FILE_PREFIX="${SYEAR}${SMONTH}${SDAY}.$(printf "%02d" $(( SHOUR + FHROT )))0000" RESTART_FILE_SUFFIX_HRS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%02d" $(( SHOUR + FHROT )))" RESTART_FILE_SUFFIX_SECS="${SYEAR}-${SMONTH}-${SDAY}-$(printf "%05d" $(( (SHOUR + FHROT)* 3600 )))" - NSTF_NAME=2,0,0,0,0 fi WARM_START=.T. diff --git a/tests/opnReqTests/thr.sh b/tests/opnReqTests/thr.sh index 7348b33f32..b509b714df 100644 --- a/tests/opnReqTests/thr.sh +++ b/tests/opnReqTests/thr.sh @@ -2,10 +2,10 @@ set -eu source $PATHRT/opnReqTests/std.sh THRD=2 +TPN=$((TPN/THRD)) if [[ $application == 'global' ]]; then JNPES=$((JNPES/THRD)) TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP)) - TPN=$((TPN/THRD)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'regional' ]]; then if [[ $CI_TEST == 'true' ]]; then @@ -13,19 +13,34 @@ elif [[ $application == 'regional' ]]; then JNPES=4 TASKS=$((INPES*JNPES + WRITE_GROUP*WRTTASK_PER_GROUP)) fi - TPN=$((TPN/THRD)) NODES=$(((TASKS+TPN-1)/TPN)) elif [[ $application == 'cpld' ]]; then if [[ $CI_TEST != 'true' ]]; then - INPES=3 - JNPES=4 - med_petlist_bounds="0 71" - atm_petlist_bounds="0 77" - ocn_petlist_bounds="78 107" - ice_petlist_bounds="108 119" - TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 30 + 12)) - TPN=$((TPN/THRD)) - NODES=$(((TASKS+TPN-1)/TPN)) + if [[ $TEST_NAME == 'cpld_control_c96_p7' ]]; then + INPES=3 + JNPES=4 + med_petlist_bounds="0 71" + atm_petlist_bounds="0 77" + ocn_petlist_bounds="78 107" + ice_petlist_bounds="108 119" + TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 30 + 12)) + NODES=$(((TASKS+TPN-1)/TPN)) + elif [[ $TEST_NAME == 'cpld_control_p7' ]]; then + INPES=3 + JNPES=4 + med_petlist_bounds="0 71" + atm_petlist_bounds="0 77" + ocn_petlist_bounds="78 97" + ice_petlist_bounds="98 107" + wav_petlist_bounds="108 119" + TASKS=$((INPES*JNPES*6 + WRITE_GROUP*WRTTASK_PER_GROUP + 20 + 10 + 12)) + NODES=$(((TASKS+TPN-1)/TPN)) + elif [[ $TEST_NAME == 'cpld_bmark_p7' ]]; then + NODES=$(((TASKS+TPN-1)/TPN)) + else + echo "This test is not yet set up for the thread test" + exit 1 + fi fi fi diff --git a/tests/opnReqTests/wrt_env.sh b/tests/opnReqTests/wrt_env.sh index d56f2cb574..42d86ca4cf 100644 --- a/tests/opnReqTests/wrt_env.sh +++ b/tests/opnReqTests/wrt_env.sh @@ -15,6 +15,7 @@ export med_petlist_bounds="${med_petlist_bounds:-}" export atm_petlist_bounds="${atm_petlist_bounds:-}" export ocn_petlist_bounds="${ocn_petlist_bounds:-}" export ice_petlist_bounds="${ice_petlist_bounds:-}" +export wav_petlist_bounds="${wav_petlist_bounds:-}" export THRD=${THRD} export TASKS=${TASKS} export TPN=${TPN} diff --git a/tests/parm/nems.configure.cpld.IN b/tests/parm/nems.configure.cpld.IN index f7effb4cbb..0651821a37 100644 --- a/tests/parm/nems.configure.cpld.IN +++ b/tests/parm/nems.configure.cpld.IN @@ -86,6 +86,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] :: ALLCOMP_attributes:: ScalarFieldCount = 2 diff --git a/tests/parm/nems.configure.cpld_wave.IN b/tests/parm/nems.configure.cpld_wave.IN index 29cf79aecd..acfe49097f 100644 --- a/tests/parm/nems.configure.cpld_wave.IN +++ b/tests/parm/nems.configure.cpld_wave.IN @@ -100,6 +100,7 @@ MED_attributes:: history_option = nhours history_ymd = -999 coupling_mode = @[CPLMODE] + history_tile_atm = @[ATMTILESIZE] :: ALLCOMP_attributes:: ScalarFieldCount = 2 diff --git a/tests/rt.sh b/tests/rt.sh index 63a31ad9f1..b8a4013734 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -115,7 +115,7 @@ export RT_COMPILER=${RT_COMPILER:-intel} source detect_machine.sh source rt_utils.sh -source $PATHTR/NEMS/src/conf/module-setup.sh.inc +source module-setup.sh if [[ $MACHINE_ID = wcoss_cray ]]; then diff --git a/tests/run_test.sh b/tests/run_test.sh index e74f1b14a8..1bc3c9599d 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -82,7 +82,7 @@ cp ${PATHRT}/modules.fv3_${COMPILE_NR} modules.fv3 cp ${PATHTR}/modulefiles/ufs_common* . # Get the shell file that loads the "module" command and purges modules: -cp ${PATHRT}/../NEMS/src/conf/module-setup.sh.inc module-setup.sh +cp ${PATHRT}/module-setup.sh module-setup.sh SRCD="${PATHTR}" RUND="${RUNDIR}" diff --git a/tests/tests/cpld_bmark_mpi_p7 b/tests/tests/cpld_bmark_mpi_p7 index dfdbe333be..e5176ed746 100644 --- a/tests/tests/cpld_bmark_mpi_p7 +++ b/tests/tests/cpld_bmark_mpi_p7 @@ -83,6 +83,7 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_bmark_p7 b/tests/tests/cpld_bmark_p7 index 44a6e34aaf..1e160f67ec 100644 --- a/tests/tests/cpld_bmark_p7 +++ b/tests/tests/cpld_bmark_p7 @@ -83,6 +83,7 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_control_c192_p7 b/tests/tests/cpld_control_c192_p7 index c378dee3cc..a9572e2a63 100644 --- a/tests/tests/cpld_control_c192_p7 +++ b/tests/tests/cpld_control_c192_p7 @@ -79,6 +79,7 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 diff --git a/tests/tests/cpld_control_c384_p7 b/tests/tests/cpld_control_c384_p7 index 784e9140c5..b94e22ed01 100644 --- a/tests/tests/cpld_control_c384_p7 +++ b/tests/tests/cpld_control_c384_p7 @@ -75,6 +75,7 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25 diff --git a/tests/tests/cpld_restart_c192_p7 b/tests/tests/cpld_restart_c192_p7 index 75165ef832..11398b16a1 100644 --- a/tests/tests/cpld_restart_c192_p7 +++ b/tests/tests/cpld_restart_c192_p7 @@ -83,6 +83,7 @@ export NPX=193 export NPY=193 export IMO=768 export JMO=384 +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=050 export ICERES=0.50 diff --git a/tests/tests/cpld_restart_c384_p7 b/tests/tests/cpld_restart_c384_p7 index 206e50a980..6839c911ae 100644 --- a/tests/tests/cpld_restart_c384_p7 +++ b/tests/tests/cpld_restart_c384_p7 @@ -79,6 +79,7 @@ export NPY=385 export IMO=1536 export JMO=768 export OUTPUT_GRID="'gaussian_grid'" +export ATMTILESIZE=`expr $NPX - 1` export OCNRES=025 export ICERES=0.25