diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index b154eda796..1c2f4ee990 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -146,10 +146,11 @@ Please delete what is not needed. - [ ] Orion - [ ] Hercules - [ ] Jet - - [ ] Gaea + - [ ] GaeaC5 + - [ ] GaeaC6 - [ ] Derecho - WCOSS2 - [ ] Dogwood/Cactus - [ ] Acorn - [ ] CI -- [ ] opnReqTest (complete task if unnecessary) \ No newline at end of file +- [ ] opnReqTest (complete task if unnecessary) diff --git a/CDEPS-interface/CMakeLists.txt b/CDEPS-interface/CMakeLists.txt index afea540965..4f5c086013 100644 --- a/CDEPS-interface/CMakeLists.txt +++ b/CDEPS-interface/CMakeLists.txt @@ -95,6 +95,14 @@ target_include_directories(dwav PRIVATE $) +target_link_libraries(dglc PRIVATE dshr share streams) +target_link_libraries(dglc PRIVATE esmf PIO::PIO_Fortran) + # CDEPS add_library(cdeps STATIC $ $ @@ -104,7 +112,8 @@ add_library(cdeps STATIC $ $ $ $ - $) + $ + $) add_library(cdeps::cdeps ALIAS cdeps) target_include_directories(cdeps PUBLIC $ $) diff --git a/CDEPS-interface/cdeps_files.cmake b/CDEPS-interface/cdeps_files.cmake index 321b9d84c5..cb247d500c 100644 --- a/CDEPS-interface/cdeps_files.cmake +++ b/CDEPS-interface/cdeps_files.cmake @@ -4,6 +4,7 @@ list(APPEND ufs_cdeps_share_files ufs/cdeps_share/shr_assert_mod.F90 ufs/cdeps_share/shr_frz_mod.F90 ufs/cdeps_share/shr_infnan_mod.F90 + ufs/cdeps_share/shr_is_restart_fh_mod.F90 ) list(APPEND cdeps_share_files @@ -24,6 +25,7 @@ list(APPEND cdeps_share_files CDEPS/share/shr_timer_mod.F90 CDEPS/share/shr_file_mod.F90 CDEPS/share/shr_nl_mod.F90 + CDEPS/share/nuopc_shr_methods.F90 ) list(APPEND cdeps_streams_files @@ -67,6 +69,8 @@ list(APPEND cdeps_docn_files CDEPS/docn/docn_datamode_iaf_mod.F90 CDEPS/docn/docn_datamode_som_mod.F90 CDEPS/docn/docn_datamode_cplhist_mod.F90 + CDEPS/docn/docn_datamode_multilev_mod.F90 + CDEPS/docn/docn_datamode_multilev_dom_mod.F90 CDEPS/docn/docn_import_data_mod.F90 CDEPS/docn/ocn_comp_nuopc.F90 ) @@ -78,3 +82,8 @@ list(APPEND cdeps_drof_files list(APPEND cdeps_dwav_files CDEPS/dwav/wav_comp_nuopc.F90 ) + +list(APPEND cdeps_dglc_files + CDEPS/dglc/dglc_datamode_noevolve_mod.F90 + CDEPS/dglc/glc_comp_nuopc.F90 +) diff --git a/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 b/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 new file mode 100644 index 0000000000..42739bbe8f --- /dev/null +++ b/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 @@ -0,0 +1,137 @@ +module shr_is_restart_fh_mod + + ! Common methods for components to check if it's time to write forecast hour-based restarts + + !use dshr_methods_mod , only : chkerr + use ESMF, only : ESMF_ConfigCreate, ESMF_ConfigDestroy, ESMF_ConfigLoadFile, & + ESMF_ConfigGetLen, ESMF_ConfigGetAttribute, ESMF_TimePrint, & + ESMF_LOGMSG_INFO, ESMF_LogWrite, ESMF_TimeInterval, & + ESMF_Time, ESMF_KIND_R8, ESMF_Config, ESMF_Clock, & + ESMF_TimeIntervalSet, ESMF_TimePrint, operator(+), operator(==), & + ESMF_LogFoundError, ESMF_LOGERR_PASSTHRU + + implicit none + private + + type :: is_restart_fh_type + logical :: write_restartfh = .false. + type(ESMF_Time), allocatable :: restartFhTimes(:) + end type is_restart_fh_type + + public :: init_is_restart_fh, is_restart_fh, finalize_restart_fh, is_restart_fh_type + +contains + + !----------------------------------------------------------------------- + subroutine init_is_restart_fh(currentTime, dtime, lLog, restartfh_info) + ! + ! !DESCRIPTION: + ! Process restart_fh attribute from model_configure in UFS + ! + ! !USES: + ! + ! !ARGUMENTS: + type(ESMF_Time), intent(in) :: currentTime + integer, intent(in) :: dtime ! time step (s) + logical, intent(in) :: lLog ! If true, this task logs restart_fh info + type(is_restart_fh_type), intent(out) :: restartfh_info !restart_fh info for each task + ! + ! !LOCAL VARIABLES: + character(len=256) :: timestr + integer :: n, nfh, fh_s, rc + logical :: isPresent + real(kind=ESMF_KIND_R8), allocatable :: restart_fh(:) + type(ESMF_TimeInterval) :: fhInterval + type(ESMF_Config) :: CF_mc + !----------------------------------------------------------------------- + + ! set up Times to write non-interval restarts + inquire(FILE='model_configure', EXIST=isPresent) + if (isPresent) then !model_configure exists. this is ufs run + CF_mc = ESMF_ConfigCreate(rc=rc) + call ESMF_ConfigLoadFile(config=CF_mc,filename='model_configure' ,rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + + nfh = ESMF_ConfigGetLen(config=CF_mc, label ='restart_fh:',rc=rc) + if (nfh .gt. 0) then + allocate(restart_fh(1:nfh)) + allocate(restartfh_info%restartFhTimes(1:nfh)) !not deallocated here + + call ESMF_ConfigGetAttribute(CF_mc,valueList=restart_fh,label='restart_fh:', rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + ! create a list of times at each restart_fh + do n = 1,nfh + fh_s = NINT(3600*restart_fh(n)) + call ESMF_TimeIntervalSet(fhInterval, s=fh_s, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + restartfh_info%restartFhTimes(n) = currentTime + fhInterval + call ESMF_TimePrint(restartfh_info%restartFhTimes(n), options="string", & + preString="restart_fh at ", unit=timestr, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + if (lLog) then + if (mod(fh_s,dtime) /= 0) then + call ESMF_LogWrite('restart time NOT to be written for '//trim(timestr), ESMF_LOGMSG_INFO) + else + call ESMF_LogWrite('restart time to be written for '//trim(timestr), ESMF_LOGMSG_INFO) + end if + end if + end do + deallocate(restart_fh) + end if !nfh>0 + call ESMF_ConfigDestroy(CF_mc, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + end if !model_configure + + end subroutine init_is_restart_fh + + subroutine is_restart_fh(clock, restartfh_info, lWrite) + ! + ! !DESCRIPTION: + ! True/false if time to write restart + ! + ! !USES: + use ESMF, only : ESMF_ClockGetNextTime + + ! + ! !ARGUMENTS: + type(ESMF_Clock), intent(in) :: clock + type(is_restart_fh_type), intent(inout) :: restartfh_info + logical, intent(out) :: lWrite ! time to write? + ! + ! !LOCAL VARIABLES: + integer :: nfh, rc + type(ESMF_Time) :: nextTime + !----------------------------------------------------------------------- + + restartfh_info%write_restartfh = .false. + if (allocated(restartfh_info%restartFhTimes)) then + ! check if next time is == to any restartfhtime + do nfh = 1,size(restartfh_info%restartFhTimes) + call ESMF_ClockGetNextTime(clock, nextTime=nexttime, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + if (nextTime == restartfh_info%restartFhTimes(nfh)) restartfh_info%write_restartfh = .true. + end do + end if + + lWrite = restartfh_info%write_restartfh + + end subroutine is_restart_fh + + subroutine finalize_restart_fh(restartfh_info) + ! + ! !DESCRIPTION: + ! Clean-up...release allocated memory + ! + ! !USES: + ! + ! !ARGUMENTS: + type(is_restart_fh_type), intent(inout) :: restartfh_info + ! + ! !LOCAL VARIABLES: + !----------------------------------------------------------------------- + + if (allocated(restartfh_info%restartFhTimes)) deallocate(restartfh_info%restartFhTimes) + + end subroutine finalize_restart_fh + +end module shr_is_restart_fh_mod diff --git a/CICE-interface/CMakeLists.txt b/CICE-interface/CMakeLists.txt index b027e1d3e2..c64f8bcc2d 100644 --- a/CICE-interface/CMakeLists.txt +++ b/CICE-interface/CMakeLists.txt @@ -63,7 +63,7 @@ list(APPEND lib_src_files ${icepack_files} ${cice_mpi_comm_files} ${cice_nuopc_cmeps_driver_files} - ${cice_cdeps_inline_files}) + ${cice_cdeps_share_files}) list(APPEND _cice_defs FORTRANUNDERSCORE coupled) diff --git a/CICE-interface/cice_files.cmake b/CICE-interface/cice_files.cmake index 2a62c72e30..9ef56bcef8 100644 --- a/CICE-interface/cice_files.cmake +++ b/CICE-interface/cice_files.cmake @@ -151,8 +151,8 @@ list(APPEND cice_nuopc_cmeps_driver_files CICE/cicecore/drivers/nuopc/cmeps/ice_mesh_mod.F90 ) -#-- Using ice prescribed ifndef cesmcoupled -list(APPEND cice_cdeps_inline_files +list(APPEND cice_cdeps_share_files + #-- Using ice prescribed ifndef cesmcoupled ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_orb_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_const_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_abort_mod.F90 @@ -168,4 +168,7 @@ list(APPEND cice_cdeps_inline_files ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_stream_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/streams/dshr_methods_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/dshr/dshr_mod.F90 + + #restart_fh + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 ) diff --git a/CMEPS-interface/CMakeLists.txt b/CMEPS-interface/CMakeLists.txt index efbd585acc..bd22b3d3a4 100644 --- a/CMEPS-interface/CMakeLists.txt +++ b/CMEPS-interface/CMakeLists.txt @@ -42,7 +42,9 @@ list(APPEND _ufs_util_files ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_sys_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/shr_kind_mod.F90 ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_assert_mod.F90 - ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90) + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_infnan_mod.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/CDEPS/share/nuopc_shr_methods.F90 + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90) list(APPEND _mediator_files CMEPS/mediator/med_phases_restart_mod.F90 @@ -65,7 +67,6 @@ list(APPEND _mediator_files CMEPS/mediator/med_phases_prep_ocn_mod.F90 CMEPS/mediator/esmFlds.F90 CMEPS/mediator/med.F90 - CMEPS/mediator/med_time_mod.F90 CMEPS/mediator/med_phases_ocnalb_mod.F90 CMEPS/mediator/med_phases_prep_wav_mod.F90 CMEPS/mediator/med_utils_mod.F90 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 98fb78776e..1256888867 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -315,6 +315,10 @@ list(APPEND mom6_nuopc_src_files MOM6/config_src/drivers/timing_tests/time_MOM_EOS.F90 ) +list(APPEND mom6_nuopc_src_files + ${PROJECT_SOURCE_DIR}/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 +) + list(APPEND mom6_solo_src_files MOM6/config_src/drivers/solo_driver/MESO_surface_forcing.F90 MOM6/config_src/drivers/solo_driver/MOM_driver.F90 diff --git a/cmake/configure_gaea.intel.cmake b/cmake/configure_gaeac5.intel.cmake similarity index 100% rename from cmake/configure_gaea.intel.cmake rename to cmake/configure_gaeac5.intel.cmake diff --git a/cmake/configure_gaea.intelllvm.cmake b/cmake/configure_gaeac5.intelllvm.cmake similarity index 100% rename from cmake/configure_gaea.intelllvm.cmake rename to cmake/configure_gaeac5.intelllvm.cmake diff --git a/cmake/configure_gaeac6.intel.cmake b/cmake/configure_gaeac6.intel.cmake new file mode 100644 index 0000000000..6037c6379f --- /dev/null +++ b/cmake/configure_gaeac6.intel.cmake @@ -0,0 +1,4 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(MOM6_Extra_FORTRAN_FLAGS "-xsse2") +set(HYCOM_Extra_FORTRAN_FLAGS "-xSSE4.2") +set(HYCOM_Extra_C_FLAGS "-xSSE4.2") \ No newline at end of file diff --git a/cmake/configure_gaeac6.intelllvm.cmake b/cmake/configure_gaeac6.intelllvm.cmake new file mode 100644 index 0000000000..42e6486231 --- /dev/null +++ b/cmake/configure_gaeac6.intelllvm.cmake @@ -0,0 +1,2 @@ +set(PARALLEL_NETCDF ON CACHE BOOL "Enable parallel NetCDF" FORCE) +set(AVX2 OFF CACHE BOOL "Enable AVX2 instruction set" FORCE) diff --git a/modulefiles/ufs_gaea.intel.lua b/modulefiles/ufs_gaeac5.intel.lua similarity index 93% rename from modulefiles/ufs_gaea.intel.lua rename to modulefiles/ufs_gaeac5.intel.lua index 834c8fc41f..4641f2dbfd 100644 --- a/modulefiles/ufs_gaea.intel.lua +++ b/modulefiles/ufs_gaeac5.intel.lua @@ -3,7 +3,7 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5 ]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") @@ -30,4 +30,4 @@ unload("cray-libsci") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intel") +setenv("CMAKE_Platform","gaeac5.intel") diff --git a/modulefiles/ufs_gaea.intelllvm.lua b/modulefiles/ufs_gaeac5.intelllvm.lua similarity index 94% rename from modulefiles/ufs_gaea.intelllvm.lua rename to modulefiles/ufs_gaeac5.intelllvm.lua index 01d8585454..4bfddf2e90 100644 --- a/modulefiles/ufs_gaea.intelllvm.lua +++ b/modulefiles/ufs_gaeac5.intelllvm.lua @@ -3,7 +3,7 @@ help([[ on the NOAA RDHPC machine Gaea C5 using Intel-2023.1.0. ]]) -whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea ]===]) +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C5]===]) prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") @@ -36,4 +36,4 @@ setenv("I_MPI_F90", "ifx") setenv("CC","cc") setenv("CXX","CC") setenv("FC","ftn") -setenv("CMAKE_Platform","gaea.intelllvm") +setenv("CMAKE_Platform","gaeac5.intelllvm") diff --git a/modulefiles/ufs_gaeac6.intel.lua b/modulefiles/ufs_gaeac6.intel.lua new file mode 100644 index 0000000000..ce59797288 --- /dev/null +++ b/modulefiles/ufs_gaeac6.intel.lua @@ -0,0 +1,33 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaeac6.intel") diff --git a/modulefiles/ufs_gaeac6.intelllvm.lua b/modulefiles/ufs_gaeac6.intelllvm.lua new file mode 100644 index 0000000000..abf311b4ec --- /dev/null +++ b/modulefiles/ufs_gaeac6.intelllvm.lua @@ -0,0 +1,40 @@ +help([[ + This module loads libraries required for building and running UFS Weather Model + on the NOAA RDHPC machine Gaea C6 using Intel-2023.2.0. +]]) + +whatis([===[Loads libraries needed for building the UFS Weather Model on Gaea C6]===]) + +prepend_path("MODULEPATH", "/ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core") + +stack_intel_ver=os.getenv("stack_intel_ver") or "2023.2.0" +load(pathJoin("stack-intel", stack_intel_ver)) + +stack_cray_mpich_ver=os.getenv("stack_cray_mpich_ver") or "8.1.29" +load(pathJoin("stack-cray-mpich", stack_cray_mpich_ver)) + +stack_python_ver=os.getenv("stack_python_ver") or "3.10.13" +load(pathJoin("stack-python", stack_python_ver)) + +cmake_ver=os.getenv("cmake_ver") or "3.23.1" +load(pathJoin("cmake", cmake_ver)) + +load("ufs_common") + +nccmp_ver=os.getenv("nccmp_ver") or "1.9.0.1" +load(pathJoin("nccmp", nccmp_ver)) + +unload("darshan-runtime") +unload("cray-libsci") + +unload("intel-classic/2023.2.0") +load("intel-oneapi/2023.2.0") + +setenv("I_MPI_CC", "icx") +setenv("I_MPI_CXX", "icpx") +setenv("I_MPI_F90", "ifx") + +setenv("CC","cc") +setenv("CXX","CC") +setenv("FC","ftn") +setenv("CMAKE_Platform","gaeac6.intelllvm") diff --git a/tests-dev/ufs_test_utils.sh b/tests-dev/ufs_test_utils.sh index 4b103dc39f..683690c751 100644 --- a/tests-dev/ufs_test_utils.sh +++ b/tests-dev/ufs_test_utils.sh @@ -5,8 +5,13 @@ function set_run_task() { source default_vars.sh source rt_utils.sh source "${PATHRT}"/tests/"${TEST_NAME}" - compute_petbounds_and_tasks - + #jkim compute_petbounds_and_tasks + if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading + else + compute_petbounds_and_tasks_traditional_threading + fi + TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) if (( NODES * TPN < TASKS )); then diff --git a/tests/bl_date.conf b/tests/bl_date.conf index 8e9a2de26e..5283e4c483 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20241121 +export BL_DATE=20241230 diff --git a/tests/compile.sh b/tests/compile.sh index dd8f91ced1..2c00304e28 100755 --- a/tests/compile.sh +++ b/tests/compile.sh @@ -61,7 +61,10 @@ case ${MACHINE_ID} in ;; *) # Activate lua environment for gaea c5 - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then + module reset + fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then module reset elif [[ ${MACHINE_ID} == hercules ]]; then module purge @@ -97,17 +100,6 @@ SUITES=$(grep -Po "\-DCCPP_SUITES=\K[^ ]*" <<< "${MAKE_OPT}") export SUITES set -ex -# Valid applications -if [[ ${MACHINE_ID} != gaea ]] || [[ ${RT_COMPILER} != intelllvm ]]; then # skip MOM6SOLO on gaea with intelllvm - if [[ "${MAKE_OPT}" == *"-DAPP=S2S"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" - fi - - if [[ "${MAKE_OPT}" == *"-DAPP=NG-GODAS"* ]]; then - CMAKE_FLAGS+=" -DMOM6SOLO=ON" - fi -fi - CMAKE_FLAGS=$(set -e; trim "${CMAKE_FLAGS}") echo "CMAKE_FLAGS = ${CMAKE_FLAGS}" diff --git a/tests/default_vars.sh b/tests/default_vars.sh index 4b46ce6aaf..81dd617d49 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -7,116 +7,118 @@ # ############################################################################### - THRD=1 - - export INPES_atmaero=4 - export JNPES_atmaero=8 - export WPG_atmaero=6 - - export THRD_cpl_atmw=1 - export INPES_cpl_atmw=3 - export JNPES_cpl_atmw=8 - export WPG_cpl_atmw=6 - export WAV_tasks_cpl_atmw=30 - export WAV_thrds_cpl_atmw=1 - - export THRD_cpl_c48=1 - export INPES_cpl_c48=1 - export JNPES_cpl_c48=1 - export WPG_cpl_c48=6 - export OCN_tasks_cpl_c48=4 - export ICE_tasks_cpl_c48=4 - - export THRD_cpl_dflt=1 - export INPES_cpl_dflt=3 - export JNPES_cpl_dflt=8; - export WPG_cpl_dflt=6 - export OCN_tasks_cpl_dflt=20 - export ICE_tasks_cpl_dflt=10 - export WAV_tasks_cpl_dflt=20 - - export THRD_cpl_thrd=2 - export INPES_cpl_thrd=3 - export JNPES_cpl_thrd=4 - export WPG_cpl_thrd=6 - export OCN_tasks_cpl_thrd=20 - export OCN_thrds_cpl_thrd=1 - export ICE_tasks_cpl_thrd=10 - export ICE_thrds_cpl_thrd=1 - export WAV_tasks_cpl_thrd=12 - export WAV_thrds_cpl_thrd=2 - - export THRD_cpl_dcmp=1 - export INPES_cpl_dcmp=4 - export JNPES_cpl_dcmp=6 - export WPG_cpl_dcmp=6 - export OCN_tasks_cpl_dcmp=20 - export ICE_tasks_cpl_dcmp=10 - export WAV_tasks_cpl_dcmp=20 - - export THRD_cpl_mpi=1 - export INPES_cpl_mpi=4 - export JNPES_cpl_mpi=8 - export WPG_cpl_mpi=6 - export OCN_tasks_cpl_mpi=34 - export ICE_tasks_cpl_mpi=20 - export WAV_tasks_cpl_mpi=28 - - export THRD_cpl_bmrk=2 - export INPES_cpl_bmrk=8 - export JNPES_cpl_bmrk=8 - export WPG_cpl_bmrk=48 - export OCN_tasks_cpl_bmrk=120 - export OCN_thrds_cpl_bmrk=1 - export ICE_tasks_cpl_bmrk=48 - export ICE_thrds_cpl_bmrk=1 - export WAV_tasks_cpl_bmrk=80 - export WAV_thrds_cpl_bmrk=2 - - export THRD_cpl_c192=2 - export INPES_cpl_c192=6 - export JNPES_cpl_c192=8 - export WPG_cpl_c192=12 - export OCN_tasks_cpl_c192=60 - export ICE_tasks_cpl_c192=24 - export WAV_tasks_cpl_c192=80 - - export ATM_compute_tasks_cdeps_100=12 - export OCN_tasks_cdeps_100=16 - export ICE_tasks_cdeps_100=12 - - export ATM_compute_tasks_cdeps_025=40 - export OCN_tasks_cdeps_025=120 - export ICE_tasks_cdeps_025=48 - - export INPES_aqm=33 - export JNPES_aqm=8 - - export THRD_cpl_unstr=1 - export INPES_cpl_unstr=3 - export JNPES_cpl_unstr=8 - export WPG_cpl_unstr=6 - export OCN_tasks_cpl_unstr=20 - export ICE_tasks_cpl_unstr=10 - export WAV_tasks_cpl_unstr=60 - - export THRD_cpl_unstr_mpi=1 - export INPES_cpl_unstr_mpi=4 - export JNPES_cpl_unstr_mpi=8 - export WPG_cpl_unstr_mpi=6 - export OCN_tasks_cpl_unstr_mpi=34 - export ICE_tasks_cpl_unstr_mpi=20 - export WAV_tasks_cpl_unstr_mpi=50 - - export aqm_omp_num_threads=1 - export atm_omp_num_threads=1 - export chm_omp_num_threads=1 - export ice_omp_num_threads=1 - export lnd_omp_num_threads=1 - export med_omp_num_threads=1 - export ocn_omp_num_threads=1 - export wav_omp_num_threads=1 - export fbh_omp_num_threads=1 +THRD=1 + +export INPES_atmaero=4 +export JNPES_atmaero=8 +export WPG_atmaero=6 + +export THRD_cpl_atmw=1 +export INPES_cpl_atmw=3 +export JNPES_cpl_atmw=8 +export WPG_cpl_atmw=6 +export WAV_tasks_cpl_atmw=30 +export WAV_thrds_cpl_atmw=1 + +export THRD_cpl_c48=1 +export INPES_cpl_c48=1 +export JNPES_cpl_c48=1 +export WPG_cpl_c48=6 +export OCN_tasks_cpl_c48=4 +export ICE_tasks_cpl_c48=4 + +export THRD_cpl_dflt=1 +export INPES_cpl_dflt=3 +export JNPES_cpl_dflt=8; +export WPG_cpl_dflt=6 +export OCN_tasks_cpl_dflt=20 +export ICE_tasks_cpl_dflt=10 +export WAV_tasks_cpl_dflt=20 + +export THRD_cpl_thrd=2 +export INPES_cpl_thrd=3 +export JNPES_cpl_thrd=4 +export WPG_cpl_thrd=6 +export OCN_tasks_cpl_thrd=20 +export OCN_thrds_cpl_thrd=1 +export ICE_tasks_cpl_thrd=10 +export ICE_thrds_cpl_thrd=1 +export WAV_tasks_cpl_thrd=12 +export WAV_thrds_cpl_thrd=2 + +export THRD_cpl_dcmp=1 +export INPES_cpl_dcmp=4 +export JNPES_cpl_dcmp=6 +export WPG_cpl_dcmp=6 +export OCN_tasks_cpl_dcmp=20 +export ICE_tasks_cpl_dcmp=10 +export WAV_tasks_cpl_dcmp=20 + +export THRD_cpl_mpi=1 +export INPES_cpl_mpi=4 +export JNPES_cpl_mpi=8 +export WPG_cpl_mpi=6 +export OCN_tasks_cpl_mpi=34 +export ICE_tasks_cpl_mpi=20 +export WAV_tasks_cpl_mpi=28 + +export THRD_cpl_bmrk=2 +export INPES_cpl_bmrk=8 +export JNPES_cpl_bmrk=8 +export WPG_cpl_bmrk=48 +export OCN_tasks_cpl_bmrk=120 +export OCN_thrds_cpl_bmrk=1 +export ICE_tasks_cpl_bmrk=48 +export ICE_thrds_cpl_bmrk=1 +export WAV_tasks_cpl_bmrk=80 +export WAV_thrds_cpl_bmrk=2 + +export THRD_cpl_c192=2 +export INPES_cpl_c192=6 +export JNPES_cpl_c192=8 +export WPG_cpl_c192=12 +export OCN_tasks_cpl_c192=60 +export ICE_tasks_cpl_c192=24 +export WAV_tasks_cpl_c192=80 + +export ATM_compute_tasks_cdeps_100=12 +export OCN_tasks_cdeps_100=16 +export ICE_tasks_cdeps_100=12 + +export ATM_compute_tasks_cdeps_025=40 +export OCN_tasks_cdeps_025=120 +export ICE_tasks_cdeps_025=48 + +export INPES_aqm=33 +export JNPES_aqm=8 + +export THRD_cpl_unstr=1 +export INPES_cpl_unstr=3 +export JNPES_cpl_unstr=8 +export WPG_cpl_unstr=6 +export OCN_tasks_cpl_unstr=20 +export ICE_tasks_cpl_unstr=10 +export WAV_tasks_cpl_unstr=60 + +export THRD_cpl_unstr_mpi=1 +export INPES_cpl_unstr_mpi=4 +export JNPES_cpl_unstr_mpi=8 +export WPG_cpl_unstr_mpi=6 +export OCN_tasks_cpl_unstr_mpi=34 +export ICE_tasks_cpl_unstr_mpi=20 +export WAV_tasks_cpl_unstr_mpi=50 + +export aqm_omp_num_threads=1 +export atm_omp_num_threads=1 +export chm_omp_num_threads=1 +export ice_omp_num_threads=1 +export lnd_omp_num_threads=1 +export med_omp_num_threads=1 +export ocn_omp_num_threads=1 +export wav_omp_num_threads=1 +export fbh_omp_num_threads=1 + +export histaux_enabled=.false. if [[ ${MACHINE_ID} = wcoss2 || ${MACHINE_ID} = acorn ]]; then @@ -300,7 +302,7 @@ elif [[ ${MACHINE_ID} = s4 ]]; then export ICE_tasks_cpl_bmrk=48 export WAV_tasks_cpl_bmrk=80 -elif [[ ${MACHINE_ID} = gaea ]]; then +elif [[ ${MACHINE_ID} = gaeac5 ]]; then export TPN=128 @@ -321,6 +323,26 @@ elif [[ ${MACHINE_ID} = gaea ]]; then export WPG_cpl_atmw_gdas=24 export WAV_tasks_atmw_gdas=264 +elif [[ ${MACHINE_ID} = gaeac6 ]]; then + + export TPN=192 + + export INPES_dflt=3 + export JNPES_dflt=8 + export INPES_thrd=3 + export JNPES_thrd=4 + export INPES_c384=6 + export JNPES_c384=8 + export THRD_c384=1 + export INPES_c768=8 + export JNPES_c768=16 + export THRD_c768=2 + + export THRD_cpl_atmw_gdas=3 + export INPES_cpl_atmw_gdas=6 + export JNPES_cpl_atmw_gdas=8 + export WPG_cpl_atmw_gdas=24 + export WAV_tasks_atmw_gdas=264 elif [[ ${MACHINE_ID} = derecho ]]; then export TPN=128 @@ -419,8 +441,10 @@ export CMP_DATAONLY=false # Defaults for ufs.configure export esmf_logkind="ESMF_LOGKIND_MULTI" +export ESMF_THREADING=true export DumpFields="false" export MED_history_n=1000000 +export RESTART_FH=" " export_fv3_v16 () { @@ -504,7 +528,7 @@ else fi # ufs.configure defaults -export UFS_CONFIGURE=ufs.configure.atm_esmf.IN +export UFS_CONFIGURE=ufs.configure.atm.IN export MODEL_CONFIGURE=model_configure.IN export atm_model=fv3 @@ -890,19 +914,10 @@ export MAX_OUTPUT_FIELDS=310 export UPDATE_FULL_OMEGA=.false. # Stochastic physics -export HIDE_LAND_PERT=' ' -export HIDE_NEST='!' -export HIDE_SPPT='!' -export HIDE_SKEB='!' -export HIDE_SHUM='!' -export HIDE_OCNSPPT='!' -export HIDE_EPBL='!' -export HIDE_IAU='!' - export LCNORM=.false. export PERT_MP=.false. export PERT_RADTEND=.false. -export PERT_CLDS=.true. +export PERT_CLDS=.false. export STOCHINI=.false. export DO_SPPT=.false. @@ -1218,6 +1233,7 @@ export_cice6() { CICE_DIAGFREQ=$(( (FHMAX*3600)/DT_CICE )) export CICE_DIAGFREQ export CICE_HISTFREQ_N="0, 0, 6, 0, 0" + export CICE_hist_suffix="'x','x','x','x','x'" export CICE_HIST_AVG=.true. export CICE_HISTORY_DIR=./history/ export CICE_INCOND_DIR=./history/ @@ -1341,7 +1357,7 @@ export_fire_behavior() { # Defaults for the coupled 5-component export_cmeps() { - export UFS_CONFIGURE=ufs.configure.s2swa_fast_esmf.IN + export UFS_CONFIGURE=ufs.configure.s2swa_fast.IN export med_model=cmeps export atm_model=fv3 export chm_model=gocart @@ -1358,6 +1374,7 @@ export_cmeps() { export pio_rearranger=box export RUNTYPE=startup export RESTART_N=${FHMAX} + export RESTART_FH=" " export CMEPS_RESTART_DIR=./RESTART/ export cap_dbug_flag=0 export WRITE_ENDOFRUN_RESTART=.false. diff --git a/tests/detect_machine.sh b/tests/detect_machine.sh index 0bd0535d8a..99419f3555 100755 --- a/tests/detect_machine.sh +++ b/tests/detect_machine.sh @@ -21,8 +21,10 @@ case $(hostname -f) in dlogin0[1-9].dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood01-9 dlogin10.dogwood.wcoss2.ncep.noaa.gov) MACHINE_ID=wcoss2 ;; ### dogwood10 - gaea5[1-8]) MACHINE_ID=gaea ;; ### gaea51-58 - gaea5[1-8].ncrc.gov) MACHINE_ID=gaea ;; ### gaea51-58 + gaea5[1-8]) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea5[1-8].ncrc.gov) MACHINE_ID=gaeac5 ;; ### gaea51-58 + gaea6[1-8]) MACHINE_ID=gaeac6 ;; ### gaea61-68 + gaea6[1-8].ncrc.gov) MACHINE_ID=gaeac6 ;; ### gaea61-68 hfe0[1-9]) MACHINE_ID=hera ;; ### hera01-09 hfe1[0-2]) MACHINE_ID=hera ;; ### hera10-12 @@ -94,9 +96,12 @@ elif [[ -d /work ]]; then else MACHINE_ID=orion fi -elif [[ -d /gpfs && -d /ncrc ]]; then - # We are on GAEA. - MACHINE_ID=gaea +elif [[ -d /gpfs/f5 && -d /ncrc ]]; then + # We are on GAEA C5. + MACHINE_ID=gaeac5 +elif [[ -d /gpfs/f6 && -d /ncrc ]]; then + # We are on GAEA C6. + MACHINE_ID=gaeac6 elif [[ -d /data/prod ]]; then # We are on SSEC's S4 MACHINE_ID=s4 diff --git a/tests/fv3_conf/compile_slurm.IN_gaea b/tests/fv3_conf/compile_slurm.IN_gaeac5 similarity index 100% rename from tests/fv3_conf/compile_slurm.IN_gaea rename to tests/fv3_conf/compile_slurm.IN_gaeac5 diff --git a/tests/fv3_conf/compile_slurm.IN_gaeac6 b/tests/fv3_conf/compile_slurm.IN_gaeac6 new file mode 100644 index 0000000000..9f5bf9c304 --- /dev/null +++ b/tests/fv3_conf/compile_slurm.IN_gaeac6 @@ -0,0 +1,22 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --account=@[ACCNR] +##SBATCH --qos=@[QUEUE] +#SBATCH --clusters=es +#SBATCH --partition=eslogin_c6 +#SBATCH --nodes=1 +#SBATCH --ntasks-per-node=8 +#SBATCH --mem-per-cpu=4G +#SBATCH --time=180 +#SBATCH --job-name="@[JBNME]" + +set -eux + +echo -n " $( date +%s )," > job_timestamp.txt +echo "Compile started: " `date` + +@[PATHRT]/compile.sh @[MACHINE_ID] "@[MAKE_OPT]" @[COMPILE_ID] @[RT_COMPILER] + +echo "Compile ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/cpld_datm_cdeps.IN b/tests/fv3_conf/cpld_datm_cdeps.IN index fa6fda2bd6..6dcac52772 100644 --- a/tests/fv3_conf/cpld_datm_cdeps.IN +++ b/tests/fv3_conf/cpld_datm_cdeps.IN @@ -46,4 +46,9 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2011-10-01-43200.nc ./INPUT RFILE="iced.2011-10-01-43200.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file + +# CDEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.datm.r.2011-10-01-43200.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>rpointer.atm fi diff --git a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN index b15df08c17..904f89d024 100644 --- a/tests/fv3_conf/cpld_datm_cdeps_gfs.IN +++ b/tests/fv3_conf/cpld_datm_cdeps_gfs.IN @@ -35,7 +35,7 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${MOM6_RESTART_DIR}/MOM.res.2021-03-22-18*.nc ./INPUT/MOM.res.nc # CMEPS restart and pointer files - RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc.nc" + RFILE="DATM_${DATM_SRC}.cpl.r.2021-03-22-64800.nc" cp ../${DEP_RUN}${RT_SUFFIX}/${CMEPS_RESTART_DIR}/${RFILE} . ls -1 ${RFILE}>rpointer.cpl @@ -43,4 +43,9 @@ else cp ../${DEP_RUN}${RT_SUFFIX}/${CICE_RESTART_DIR}/iced.2021-03-22-64800.nc ./INPUT RFILE="iced.2021-03-22-64800.nc" ls -1 "./INPUT/"${RFILE}>ice.restart_file + +# CDEPS restart and pointer files + RFILE="DATM_${DATM_SRC}.datm.r.2021-03-22-64800.nc" + cp ../${DEP_RUN}${RT_SUFFIX}/${RFILE} ./INPUT + ls -1 "./INPUT/"${RFILE}>rpointer.atm fi diff --git a/tests/fv3_conf/fv3_qsub.IN_acorn b/tests/fv3_conf/fv3_qsub.IN_acorn index b3d0102328..5cb4781c23 100644 --- a/tests/fv3_conf/fv3_qsub.IN_acorn +++ b/tests/fv3_conf/fv3_qsub.IN_acorn @@ -10,10 +10,11 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR +echo -n " $( date +%s )," > job_timestamp.txt + set +x module use $PWD/modulefiles module load modules.fv3 diff --git a/tests/fv3_conf/fv3_qsub.IN_wcoss2 b/tests/fv3_conf/fv3_qsub.IN_wcoss2 index b3d0102328..5cb4781c23 100644 --- a/tests/fv3_conf/fv3_qsub.IN_wcoss2 +++ b/tests/fv3_conf/fv3_qsub.IN_wcoss2 @@ -10,10 +10,11 @@ #PBS -l walltime=00:@[WLCLK]:00 set -eux -echo -n " $( date +%s )," > job_timestamp.txt cd $PBS_O_WORKDIR +echo -n " $( date +%s )," > job_timestamp.txt + set +x module use $PWD/modulefiles module load modules.fv3 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaea b/tests/fv3_conf/fv3_slurm.IN_gaeac5 similarity index 100% rename from tests/fv3_conf/fv3_slurm.IN_gaea rename to tests/fv3_conf/fv3_slurm.IN_gaeac5 diff --git a/tests/fv3_conf/fv3_slurm.IN_gaeac6 b/tests/fv3_conf/fv3_slurm.IN_gaeac6 new file mode 100644 index 0000000000..9511554fb7 --- /dev/null +++ b/tests/fv3_conf/fv3_slurm.IN_gaeac6 @@ -0,0 +1,49 @@ +#!/bin/bash -l +#SBATCH -e err +#SBATCH -o out +#SBATCH --job-name="@[JBNME]" +#SBATCH --account=@[ACCNR] +#SBATCH --qos=@[QUEUE] +#SBATCH --clusters=c6 +#SBATCH --partition=batch +#SBATCH --nodes=@[NODES] +#SBATCH --ntasks-per-node=@[TPN] +#SBATCH --time=@[WLCLK] + +set -eux +echo -n " $( date +%s )," > job_timestamp.txt + +set +x +MACHINE_ID=gaeac6 +source ./module-setup.sh +module use --prepend $PWD/modulefiles +module load modules.fv3 +module list +set -x + +echo "Model started: " `date` + +export OMP_NUM_THREADS=@[THRD] +export OMP_STACKSIZE=1024M +export NC_BLKSZ=1M +export ESMF_RUNTIME_PROFILE=ON +export ESMF_RUNTIME_PROFILE_OUTPUT="SUMMARY" +export FI_VERBS_PREFER_XRC=0 +export FI_CXI_RX_MATCH_MODE=hybrid +export COMEX_EAGER_THRESHOLD=65536 +export FI_CXI_RDZV_THRESHOLD=65536 + +# Avoid job errors because of filesystem synchronization delays +sync && sleep 1 + +# This "if" block is part of the rt.sh self-tests in error-test.conf. It emulates the model failing to run. +if [ "${JOB_SHOULD_FAIL:-NO}" = WHEN_RUNNING ] ; then + echo "The job should abort now, with exit status 1." 1>&2 + echo "If error checking is working, the metascheduler should mark the job as failed." 1>&2 + false +fi + +srun --label -n @[TASKS] ./fv3.exe + +echo "Model ended: " `date` +echo -n " $( date +%s )," >> job_timestamp.txt diff --git a/tests/fv3_conf/fv3_slurm.IN_hercules b/tests/fv3_conf/fv3_slurm.IN_hercules index 36583d3fa5..c474cea31a 100644 --- a/tests/fv3_conf/fv3_slurm.IN_hercules +++ b/tests/fv3_conf/fv3_slurm.IN_hercules @@ -41,6 +41,8 @@ if [[ @[RT_COMPILER] == intel ]]; then elif [[ @[RT_COMPILER] == gnu ]]; then # For mvapich2 export MV2_SHMEM_COLL_NUM_COMM=128 + export MV2_HOMOGENEOUS_CLUSTER=1 + export MV2_USE_ALIGNED_ALLOC=1 fi # Avoid job errors because of filesystem synchronization delays diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 4fd215fb50..005fdb443e 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,387 +1,3 @@ -Mon Oct 21 19:48:59 UTC 2024 +Thu Jan 2 18:23:19 UTC 2025 Start Operation Requirement Test - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/bit_base_bit_base -Checking test bit_base results .... -Moving baseline bit_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 306.702972 - 0: The maximum resident set size (KB) = 1441656 - -Test bit_base PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/dbg_base_dbg_base -Checking test dbg_base results .... -Moving baseline dbg_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 946.656819 - 0: The maximum resident set size (KB) = 1405800 - -Test dbg_base PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/dcp_dcp -Checking test dcp results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - - 0: The total amount of wall time = 278.080934 - 0: The maximum resident set size (KB) = 1417788 - -Test dcp PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/mpi_mpi -Checking test mpi results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - - 0: The total amount of wall time = 279.382382 - 0: The maximum resident set size (KB) = 1419056 - -Test mpi PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/rst_rst -Checking test rst results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - - 0: The total amount of wall time = 275.205034 - 0: The maximum resident set size (KB) = 1430944 - -Test rst PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/std_base_std_base -Checking test std_base results .... -Moving baseline std_base files .... - Moving sfcf000.nc .........OK - Moving sfcf021.nc .........OK - Moving sfcf024.nc .........OK - Moving atmf000.nc .........OK - Moving atmf021.nc .........OK - Moving atmf024.nc .........OK - Moving GFSFLX.GrbF00 .........OK - Moving GFSFLX.GrbF21 .........OK - Moving GFSFLX.GrbF24 .........OK - Moving GFSPRS.GrbF00 .........OK - Moving GFSPRS.GrbF21 .........OK - Moving GFSPRS.GrbF24 .........OK - Moving RESTART/20210323.060000.coupler.res .........OK - Moving RESTART/20210323.060000.fv_core.res.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_core.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile1.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile2.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile3.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile4.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile5.nc .........OK - Moving RESTART/20210323.060000.fv_tracer.res.tile6.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile1.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile2.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile3.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile4.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile5.nc .........OK - Moving RESTART/20210323.060000.phy_data.tile6.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile1.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile2.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile3.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile4.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile5.nc .........OK - Moving RESTART/20210323.060000.sfc_data.tile6.nc .........OK - - 0: The total amount of wall time = 279.070769 - 0: The maximum resident set size (KB) = 1403488 - -Test std_base PASS - - -baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_1401223/thr_thr -Checking test thr results .... - Comparing sfcf000.nc .....USING NCCMP......OK - Comparing sfcf021.nc .....USING NCCMP......OK - Comparing sfcf024.nc .....USING NCCMP......OK - Comparing atmf000.nc .....USING NCCMP......OK - Comparing atmf021.nc .....USING NCCMP......OK - Comparing atmf024.nc .....USING NCCMP......OK - Comparing GFSFLX.GrbF00 .....USING CMP......OK - Comparing GFSFLX.GrbF21 .....USING CMP......OK - Comparing GFSFLX.GrbF24 .....USING CMP......OK - Comparing GFSPRS.GrbF00 .....USING CMP......OK - Comparing GFSPRS.GrbF21 .....USING CMP......OK - Comparing GFSPRS.GrbF24 .....USING CMP......OK - Comparing RESTART/20210323.060000.coupler.res .....USING CMP......OK - Comparing RESTART/20210323.060000.fv_core.res.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_core.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_srf_wnd.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.fv_tracer.res.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.phy_data.tile6.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile1.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile2.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile3.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile4.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile5.nc .....USING NCCMP......OK - Comparing RESTART/20210323.060000.sfc_data.tile6.nc .....USING NCCMP......OK - - 0: The total amount of wall time = 327.912024 - 0: The maximum resident set size (KB) = 1419068 - -Test thr PASS - -OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 21:03:27 UTC 2024 -Elapsed time: 01h:14m:28s. Have a nice day! diff --git a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log index df058cd5d3..9b521b171a 100644 --- a/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log +++ b/tests/logs/OpnReqTests_cpld_control_nowave_noaero_p8_hera.log @@ -1,9 +1,9 @@ -Mon Oct 21 18:13:22 UTC 2024 +Tue Jan 7 03:15:28 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_311611/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf021.tile1.nc .........OK @@ -66,14 +66,14 @@ Moving baseline dbg_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 2424.448685 - 0: The maximum resident set size (KB) = 1511852 + 0: The total amount of wall time = 4369.524954 + 0: The maximum resident set size (KB) = 1493280 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_311611/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/rst_rst Checking test rst results .... Comparing sfcf021.tile1.nc .....USING NCCMP......OK Comparing sfcf021.tile2.nc .....USING NCCMP......OK @@ -135,14 +135,14 @@ Checking test rst results .... Comparing RESTART/iced.2021-03-23-21600.nc .....USING NCCMP......OK Comparing RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .....USING NCCMP......OK - 0: The total amount of wall time = 798.111971 - 0: The maximum resident set size (KB) = 1504600 + 0: The total amount of wall time = 1284.724733 + 0: The maximum resident set size (KB) = 1482880 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_311611/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_278179/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf021.tile1.nc .........OK @@ -205,11 +205,11 @@ Moving baseline std_base files .... Moving RESTART/iced.2021-03-23-21600.nc .........OK Moving RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc .........OK - 0: The total amount of wall time = 784.776830 - 0: The maximum resident set size (KB) = 1507688 + 0: The total amount of wall time = 1139.037288 + 0: The maximum resident set size (KB) = 1488884 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 19:48:58 UTC 2024 -Elapsed time: 01h:35m:37s. Have a nice day! +Tue Jan 7 05:37:25 UTC 2025 +Elapsed time: 02h:21m:57s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index de7d11ca0e..5e047d06e1 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Mon Oct 21 15:35:17 UTC 2024 +Mon Jan 6 12:24:27 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3613607/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving dynf000.nc .........OK @@ -15,14 +15,14 @@ Moving baseline bit_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 1387.422370 - 0: The maximum resident set size (KB) = 763032 + 0: The total amount of wall time = 1407.193487 + 0: The maximum resident set size (KB) = 780976 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3613607/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/dcp_dcp Checking test dcp results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -33,14 +33,14 @@ Checking test dcp results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2284.264268 - 0: The maximum resident set size (KB) = 710292 + 0: The total amount of wall time = 2195.740053 + 0: The maximum resident set size (KB) = 725748 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3613607/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving dynf000.nc .........OK @@ -52,14 +52,14 @@ Moving baseline std_base files .... Moving NATLEV.GrbF00 .........OK Moving NATLEV.GrbF06 .........OK - 0: The total amount of wall time = 2289.920746 - 0: The maximum resident set size (KB) = 719844 + 0: The total amount of wall time = 2291.331176 + 0: The maximum resident set size (KB) = 734184 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3613607/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3494311/thr_thr Checking test thr results .... Comparing dynf000.nc .....USING NCCMP......OK Comparing dynf006.nc .....USING NCCMP......OK @@ -70,11 +70,11 @@ Checking test thr results .... Comparing NATLEV.GrbF00 .....USING CMP......OK Comparing NATLEV.GrbF06 .....USING CMP......OK - 0: The total amount of wall time = 2287.377209 - 0: The maximum resident set size (KB) = 709840 + 0: The total amount of wall time = 2194.246673 + 0: The maximum resident set size (KB) = 723192 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Mon Oct 21 18:13:21 UTC 2024 -Elapsed time: 02h:38m:05s. Have a nice day! +Mon Jan 6 14:57:59 UTC 2025 +Elapsed time: 02h:33m:33s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 2671e50cf1..9e0b6478cc 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,20 +1,20 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +572eba512daea70468af6d74c0134781118e9f0a Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + c7ea491e6fd99e459af977bfd57fa14aa6a349eb CDEPS-interface/CDEPS (remotes/origin/sync_escomp_2024-12-16) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + 1648e176fa869d0ca9ce9ea5822b3594afd8c353 FV3 (heads/develop) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + dab57fcce3f1abf16eb01f22469ea84279f67b19 FV3/ccpp/physics (EP4-1079-gdab57fcc) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,268 +38,268 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3948084 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241212 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3668978 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:26] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [41:50, 02:35](3192 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:27, 11:51] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [41:49, 04:00](1906 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:27, 04:03](1933 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [20:45, 03:52](1079 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [41:50, 03:34](1881 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:29, 11:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [41:48, 01:56](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:21] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [47:56, 03:49](1952 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:34] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [41:48, 02:48](3227 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:48, 02:34](3225 MB) -PASS -- TEST 'cpld_restart_p8_intel' [20:01, 03:11](3152 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [41:48, 02:30](3244 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [17:26, 02:21](3171 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [41:48, 02:45](3463 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [41:48, 03:21](3218 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [41:49, 02:28](3168 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:48, 03:17](3225 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:48, 03:14](3206 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 10:50] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [42:49, 02:09](1925 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [42:49, 03:02](1968 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:24, 10:08] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [43:51, 03:18](1965 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:48, 01:55](2878 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [42:48, 02:50](2887 MB) -PASS -- TEST 'cpld_restart_c48_intel' [37:19, 02:09](2310 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:30] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [37:44, 02:35](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:29] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [41:48, 02:07](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:37, 02:20](1108 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [10:38, 02:25](1902 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 05:06] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:37, 02:33](1964 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [32:26, 01:47](660 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [32:26, 01:25](1557 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [32:26, 01:31](1568 MB) -PASS -- TEST 'control_latlon_intel' [32:26, 01:33](1570 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [32:26, 02:10](1560 MB) -PASS -- TEST 'control_c48_intel' [32:25, 01:44](1586 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [32:25, 02:04](708 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [32:25, 01:43](1586 MB) -PASS -- TEST 'control_c192_intel' [32:26, 02:12](1687 MB) -PASS -- TEST 'control_c384_intel' [32:18, 02:55](1970 MB) -PASS -- TEST 'control_c384gdas_intel' [29:43, 04:08](1180 MB) -PASS -- TEST 'control_stochy_intel' [27:23, 01:38](615 MB) -PASS -- TEST 'control_stochy_restart_intel' [15:44, 01:56](423 MB) -PASS -- TEST 'control_lndp_intel' [26:44, 02:13](614 MB) -PASS -- TEST 'control_iovr4_intel' [24:33, 02:11](611 MB) -PASS -- TEST 'control_iovr5_intel' [23:27, 02:03](610 MB) -PASS -- TEST 'control_p8_intel' [20:00, 03:35](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [19:51, 03:33](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [19:46, 03:07](1851 MB) -PASS -- TEST 'control_restart_p8_intel' [10:36, 03:17](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [19:12, 02:16](1844 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [10:29, 02:32](1014 MB) -PASS -- TEST 'control_decomp_p8_intel' [17:26, 02:36](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [17:19, 02:48](1931 MB) -PASS -- TEST 'control_p8_lndp_intel' [17:11, 02:06](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [16:42, 03:36](1903 MB) -PASS -- TEST 'control_p8_mynn_intel' [16:12, 03:12](1858 MB) -PASS -- TEST 'merra2_thompson_intel' [16:12, 03:53](1853 MB) -PASS -- TEST 'regional_control_intel' [16:03, 02:06](887 MB) -PASS -- TEST 'regional_restart_intel' [08:09, 01:13](873 MB) -PASS -- TEST 'regional_decomp_intel' [15:34, 01:36](891 MB) -PASS -- TEST 'regional_2threads_intel' [15:14, 01:24](1015 MB) -PASS -- TEST 'regional_noquilt_intel' [15:10, 01:17](1219 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [15:06, 01:46](893 MB) -PASS -- TEST 'regional_wofs_intel' [14:20, 01:44](1587 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:41] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [13:54, 03:14](1002 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:50, 01:57](1158 MB) -PASS -- TEST 'rap_decomp_intel' [12:25, 02:56](1003 MB) -PASS -- TEST 'rap_2threads_intel' [10:23, 02:15](1083 MB) -PASS -- TEST 'rap_restart_intel' [01:28, 03:43](884 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:10, 03:07](1000 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:09, 02:25](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [58:46, 03:10](886 MB) -PASS -- TEST 'hrrr_control_intel' [09:49, 02:43](998 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:39, 03:10](992 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:26, 03:16](1069 MB) -PASS -- TEST 'hrrr_control_restart_intel' [01:06, 01:28](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:12, 03:37](997 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:01, 01:22](1956 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [06:35, 02:03](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [09:23, 08:05] -PASS -- TEST 'control_csawmg_intel' [33:26, 02:03](952 MB) -PASS -- TEST 'control_ras_intel' [33:26, 01:53](654 MB) - -PASS -- COMPILE 'wam_intel' [10:23, 08:15] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [06:24, 01:49](1643 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:20, 03:31](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:20, 01:36](888 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:30] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:50, 01:27](1600 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:42, 01:41](1600 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:36, 02:00](803 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:18, 01:42](803 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:18, 02:06](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [04:16, 01:38](810 MB) -PASS -- TEST 'control_diag_debug_intel' [03:51, 01:42](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [03:33, 01:30](1901 MB) -PASS -- TEST 'regional_debug_intel' [03:29, 02:08](936 MB) -PASS -- TEST 'rap_control_debug_intel' [03:22, 01:43](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [01:28, 01:30](1181 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [01:06, 01:31](1185 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [00:52, 01:20](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [00:09, 01:57](1190 MB) -PASS -- TEST 'rap_diag_debug_intel' [58:51, 02:10](1270 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [58:38, 02:01](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [58:37, 01:56](1188 MB) -PASS -- TEST 'rap_lndp_debug_intel' [58:29, 02:13](1188 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [58:03, 01:28](1190 MB) -PASS -- TEST 'rap_noah_debug_intel' [57:58, 01:20](1181 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [57:55, 01:30](1185 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [57:17, 01:48](1183 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [56:45, 01:20](1179 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [56:43, 02:09](1186 MB) -PASS -- TEST 'rap_flake_debug_intel' [55:52, 01:26](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [55:50, 03:44](1189 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:23] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [35:28, 02:08](1689 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [55:43, 01:34](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [55:32, 03:39](878 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [55:23, 04:12](877 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [54:56, 03:06](930 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [54:44, 04:38](922 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [54:25, 03:47](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [42:11, 03:47](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [43:39, 01:22](759 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:04] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [52:52, 01:54](1081 MB) -PASS -- TEST 'conus13km_2threads_intel' [46:42, 01:37](1061 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [46:08, 01:15](959 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:32] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [52:44, 01:48](901 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [52:31, 01:21](1059 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [52:03, 01:44](1063 MB) -PASS -- TEST 'conus13km_debug_intel' [51:16, 01:36](1156 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [50:37, 01:59](822 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [50:16, 01:28](1133 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [49:30, 02:02](1222 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:41] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [49:25, 01:52](1088 MB) - -PASS -- COMPILE 'hafsw_intel' [12:26, 10:24] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [49:10, 03:02](687 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [49:06, 02:17](1051 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [49:04, 02:38](730 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [48:56, 02:36](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [48:23, 02:57](783 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [48:21, 01:57](462 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [47:32, 02:36](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [47:13, 02:06](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [45:20, 03:15](444 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [44:52, 02:03](496 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [43:58, 02:09](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [43:42, 02:36](560 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [43:38, 02:15](406 MB) -PASS -- TEST 'gnv1_nested_intel' [43:29, 04:44](1697 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [07:20, 05:18] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [42:23, 02:37](676 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:25, 09:40] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [42:14, 02:02](603 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [42:14, 01:44](780 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 10:05] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [41:26, 02:06](780 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:24, 09:37] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [40:52, 02:13](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [40:09, 03:07](705 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [39:41, 01:18](900 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:24, 09:37] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [39:07, 02:10](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [34:43, 01:58](753 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [37:10, 01:14](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [36:11, 01:40](647 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [35:01, 01:31](645 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [34:47, 01:36](751 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [33:48, 01:27](764 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [33:03, 01:44](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [33:00, 02:24](687 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [32:53, 02:16](667 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [32:51, 01:29](764 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [32:26, 01:35](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [31:47, 01:52](2032 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:24, 09:31] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [31:21, 02:11](766 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:15, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [31:19, 02:01](302 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [31:17, 02:12](447 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [25:42, 01:28](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:59] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [30:39, 02:40](1913 MB) - -PASS -- COMPILE 'atml_intel' [11:25, 09:50] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [30:26, 03:15](1883 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [30:05, 03:37](1879 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:33, 01:17](1034 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:20, 05:28] ( 866 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [29:27, 03:13](1920 MB) - -PASS -- COMPILE 'atmw_intel' [10:23, 09:07] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [28:41, 02:51](1879 MB) - -PASS -- COMPILE 'atmaero_intel' [10:24, 08:49] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [28:30, 02:38](3118 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [28:07, 03:11](2997 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [27:44, 02:44](3006 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:20, 04:27] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [27:38, 01:55](4487 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:31] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:29, 11:16](3190 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:26, 12:11] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:22, 15:48](1907 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:34, 16:41](1950 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [19:14, 07:41](1081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:25, 18:24](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:26, 12:05] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:23, 15:19](1902 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:21, 05:28] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [32:24, 28:17](1943 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:33] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [25:12, 14:37](3226 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [29:40, 14:26](3226 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:53, 08:03](3156 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [25:06, 14:29](3245 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:58, 07:59](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [37:39, 30:00](3451 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [26:17, 14:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [22:24, 11:38](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:38, 14:24](3228 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:06, 08:09](3202 MB) + +PASS -- COMPILE 's2sw_intel' [12:27, 11:08] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [10:31, 07:37](1917 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:01, 12:13](1980 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:21] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:56, 05:06](1979 MB) + +PASS -- COMPILE 's2s_intel' [11:25, 10:14] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:28, 06:09](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:26, 02:12](2892 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:07, 01:26](2303 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:31, 15:49] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [29:19, 14:18](3225 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:29, 11:38] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:06, 25:47](1918 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:59, 13:01](1089 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [37:05, 30:28](1899 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:20, 05:12] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [50:20, 30:06](1967 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:48, 03:55](662 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [20:09, 03:12](1557 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:09, 03:16](1565 MB) +PASS -- TEST 'control_latlon_intel' [19:02, 03:18](1564 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [16:15, 03:20](1570 MB) +PASS -- TEST 'control_c48_intel' [19:24, 10:26](1581 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:58, 05:59](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:20, 10:26](1578 MB) +PASS -- TEST 'control_c192_intel' [18:18, 11:32](1687 MB) +PASS -- TEST 'control_c384_intel' [19:36, 14:00](1985 MB) +PASS -- TEST 'control_c384gdas_intel' [16:23, 09:03](1160 MB) +PASS -- TEST 'control_stochy_intel' [06:33, 01:51](617 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:36, 01:14](422 MB) +PASS -- TEST 'control_lndp_intel' [05:32, 01:48](615 MB) +PASS -- TEST 'control_iovr4_intel' [06:35, 02:42](610 MB) +PASS -- TEST 'control_iovr5_intel' [06:34, 02:35](617 MB) +PASS -- TEST 'control_p8_intel' [09:19, 03:37](1850 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:21, 03:06](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [10:22, 03:45](1849 MB) +PASS -- TEST 'control_restart_p8_intel' [06:17, 02:07](991 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:38, 03:37](1855 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:40, 02:09](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:36, 03:43](1854 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:44, 07:36](1930 MB) +PASS -- TEST 'control_p8_lndp_intel' [13:01, 06:24](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [12:24, 04:03](1908 MB) +PASS -- TEST 'control_p8_mynn_intel' [11:11, 03:10](1857 MB) +PASS -- TEST 'merra2_thompson_intel' [12:52, 03:27](1854 MB) +PASS -- TEST 'regional_control_intel' [08:54, 05:21](891 MB) +PASS -- TEST 'regional_restart_intel' [05:49, 03:00](876 MB) +PASS -- TEST 'regional_decomp_intel' [09:49, 05:24](887 MB) +PASS -- TEST 'regional_2threads_intel' [13:51, 07:33](1017 MB) +PASS -- TEST 'regional_noquilt_intel' [09:51, 04:59](1219 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:49, 05:09](891 MB) +PASS -- TEST 'regional_wofs_intel' [10:50, 06:56](1583 MB) + +PASS -- COMPILE 'rrfs_intel' [10:23, 08:46] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [13:25, 07:14](1000 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:15, 04:29](1159 MB) +PASS -- TEST 'rap_decomp_intel' [11:31, 07:32](1003 MB) +PASS -- TEST 'rap_2threads_intel' [20:32, 15:57](1076 MB) +PASS -- TEST 'rap_restart_intel' [10:36, 03:56](883 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:23, 07:18](999 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:32, 07:35](996 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [13:28, 05:23](888 MB) +PASS -- TEST 'hrrr_control_intel' [10:26, 03:51](996 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [10:29, 03:55](991 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [14:42, 08:01](1068 MB) +PASS -- TEST 'hrrr_control_restart_intel' [08:37, 02:05](833 MB) +PASS -- TEST 'rrfs_v1beta_intel' [15:22, 07:10](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:39, 09:28](1956 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:40, 09:14](1944 MB) + +PASS -- COMPILE 'csawmg_intel' [09:22, 08:04] +PASS -- TEST 'control_csawmg_intel' [23:08, 06:56](952 MB) +PASS -- TEST 'control_ras_intel' [16:42, 03:26](650 MB) + +PASS -- COMPILE 'wam_intel' [10:23, 08:13] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [17:08, 12:13](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:26] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [08:21, 03:06](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 05:06](893 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:27] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [22:20, 02:38](1607 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [22:29, 02:37](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [18:48, 03:37](806 MB) +PASS -- TEST 'control_lndp_debug_intel' [18:49, 03:06](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [24:19, 05:01](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [18:49, 03:14](810 MB) +PASS -- TEST 'control_diag_debug_intel' [22:24, 03:19](1655 MB) +PASS -- TEST 'control_debug_p8_intel' [22:15, 02:59](1904 MB) +PASS -- TEST 'regional_debug_intel' [23:16, 18:17](939 MB) +PASS -- TEST 'rap_control_debug_intel' [10:37, 05:42](1192 MB) +PASS -- TEST 'hrrr_control_debug_intel' [10:39, 05:34](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:35, 05:37](1186 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [09:35, 05:47](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [10:33, 05:38](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:46, 05:47](1272 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:49](1192 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:34, 05:52](1188 MB) +PASS -- TEST 'rap_lndp_debug_intel' [12:38, 05:33](1192 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [13:40, 05:31](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [13:39, 05:31](1183 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [12:38, 05:45](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:41, 09:03](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [10:36, 05:28](1183 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:38, 05:33](1188 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:37, 05:46](1189 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:41, 09:29](1189 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:19, 04:23] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [26:18, 14:10](1686 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 08:03] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [10:16, 04:22](1029 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:17, 05:58](875 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:30, 03:26](880 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:23, 13:47](922 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:52, 07:13](930 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:59, 03:34](870 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:32, 04:29](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:30, 02:00](763 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:25, 08:05] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:13, 02:20](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [13:10, 02:00](1057 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:29](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:08] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:55, 04:10](897 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:28] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:34, 05:18](1059 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:36, 05:13](1057 MB) +PASS -- TEST 'conus13km_debug_intel' [21:19, 14:59](1157 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:14, 14:58](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [29:20, 23:05](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:16, 14:48](1240 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:19, 04:14] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:35, 05:37](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [11:25, 10:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [22:51, 06:16](686 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [22:55, 05:49](1053 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:58, 07:43](730 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:47, 12:40](773 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:03, 14:05](934 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:07, 05:48](461 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [14:47, 07:19](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:26, 03:10](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [44:14, 08:35](433 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:06, 04:09](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [12:07, 03:52](498 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [21:28, 05:17](561 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [16:46, 01:59](406 MB) +PASS -- TEST 'gnv1_nested_intel' [10:26, 05:08](1697 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [07:20, 04:51] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [30:34, 14:35](666 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:27, 09:44] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:34, 08:26](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [33:47, 08:14](782 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:54] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [36:01, 06:24](783 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:29, 09:17] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [16:46, 07:05](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:43, 07:11](718 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:33, 16:20](898 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [19:32, 09:18] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:25, 02:42](753 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [05:27, 01:39](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:22, 02:33](644 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:35](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:22, 02:39](646 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 02:42](766 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 02:52](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:25, 02:38](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:28, 06:10](690 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:20, 06:09](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:23, 02:46](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:29, 04:45](2033 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:28, 04:38](2033 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [17:33, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:26, 02:50](765 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [10:24, 00:51] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:40, 01:13](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:35, 01:19](449 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:32, 00:56](448 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:33, 10:06] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:35, 03:53](1913 MB) + +PASS -- COMPILE 'atml_intel' [19:35, 09:32] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [10:29, 05:06](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:27, 05:17](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [12:04, 03:02](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [13:27, 05:16] ( 866 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:28, 06:35](1922 MB) + +PASS -- COMPILE 'atmw_intel' [14:28, 08:58] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:21, 02:15](1880 MB) + +PASS -- COMPILE 'atmaero_intel' [15:29, 08:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [09:58, 04:22](3116 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:05, 05:05](2996 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:43, 05:09](3009 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [12:26, 04:22] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 22:19](4471 MB) SYNOPSIS: -Starting Date/Time: 20241122 14:03:31 -Ending Date/Time: 20241122 16:05:18 -Total Time: 02h:03m:12s +Starting Date/Time: 20241223 13:31:07 +Ending Date/Time: 20241223 15:39:46 +Total Time: 02h:09m:07s Compiles Completed: 37/37 Tests Completed: 177/177 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index dcbb03e63a..9f2842ee80 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,31 +1,33 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -7d136e0c38b9444ecb96b52e558bd6ee43f3ca09 +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - bf66bf7abdd3c057f4ee85f2655a33b7f4459676 CICE-interface/CICE (remotes/origin/sync_cice) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - dc977bcadd1ade1a528dee75f1ad45e8bd80ca0a CMEPS-interface/CMEPS (cmeps_v0.4.1-2310-gdc977bc) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - f188fe2afb3dd04f460a36ddda5e18e17c68f422 FV3 (remotes/origin/support_intelllvm) - b947391ed4d23ffa15f5c854e7d5c4849abefc40 FV3/atmos_cubed_sphere (201912_public_release-414-gb947391) - 0f8232724975c13289cad390c9a71fa2c6a9bff4 FV3/ccpp/framework (2024-07-11-dev) - 77d28126e3dbb19ad9714d3703764202ebce82ec FV3/ccpp/physics (remotes/origin/support_intelllvm) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 55ec82b08ca7d914ace595d4eecd54ae640ade31 FV3/upp (upp_gfsv16_release.v1.0.8-385-g55ec82b) --1ba8270870947b583cd51bc72ff8960f4c1fb36e FV3/upp/sorc/libIFI.fd + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd -529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 3ac32f0db7a2a97d930f44fa5f060c983ff31ee8 NOAHMP-interface/noahmp (v3.7.1-436-g3ac32f0) - 6810b2d8dbceea2b5e47b3f1b59b5461aded3827 WW3 (remotes/origin/support_intelllvm) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -36,288 +38,289 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20240909 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_36907 +BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_6568 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 -* (-r) - USE ROCOTO - -PASS -- COMPILE 's2swa_32bit_intel' [29:58, 29:57] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:43](3198 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:37, 28:31] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:06, 14:55](1916 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:41, 17:52](1949 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:48, 09:51](1064 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:56, 16:45](1888 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [27:43, 27:35] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:03, 14:42](1910 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [20:10, 20:08] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:26, 23:45](1936 MB) - -PASS -- COMPILE 's2swa_intel' [29:34, 29:34] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [10:44, 08:54](3223 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:57, 08:50](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:39, 05:38](3148 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:26, 09:09](3250 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:53, 05:37](3179 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [10:04, 08:19](3749 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [10:21, 08:39](3217 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:05, 07:17](3546 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:50, 08:54](3232 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [13:16, 10:27](3815 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:17, 07:35](3621 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [22:33, 10:46](4511 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:55, 07:50](4656 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:51, 06:16](3209 MB) - -PASS -- COMPILE 's2sw_intel' [26:44, 26:44] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:07, 07:03](1920 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:56, 08:19](1986 MB) - -PASS -- COMPILE 's2swa_debug_intel' [18:37, 18:36] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [15:47, 13:42](3302 MB) - -PASS -- COMPILE 's2sw_debug_intel' [18:13, 18:13] ( 1418 warnings 1209 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:36, 09:35](1960 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [22:57, 22:56] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:11, 05:55](1983 MB) - -PASS -- COMPILE 's2s_intel' [23:18, 23:17] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:51, 05:26](2885 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:18, 02:05](2896 MB) -PASS -- TEST 'cpld_restart_c48_intel' [02:31, 01:12](2305 MB) - -PASS -- COMPILE 's2swa_faster_intel' [29:50, 29:50] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:34, 08:23](3233 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [27:46, 27:45] ( 6 warnings 10 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:35, 14:57](1921 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:43, 10:33](1095 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:04, 17:55](1894 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [16:48, 16:47] ( 1528 warnings 1948 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [26:36, 24:38](1955 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:10, 17:10] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [03:56, 03:38](671 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:45, 02:51](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:51, 02:54](1568 MB) -PASS -- TEST 'control_latlon_intel' [03:36, 02:54](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:20, 02:41](1569 MB) -PASS -- TEST 'control_c48_intel' [10:23, 09:17](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:13, 05:27](711 MB) -PASS -- TEST 'control_c192_intel' [11:30, 10:09](1692 MB) -PASS -- TEST 'control_c384_intel' [15:53, 12:09](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [12:13, 07:51](1177 MB) -PASS -- TEST 'control_stochy_intel' [02:02, 01:45](627 MB) -PASS -- TEST 'control_stochy_restart_intel' [01:45, 01:11](437 MB) -PASS -- TEST 'control_lndp_intel' [02:08, 01:42](626 MB) -PASS -- TEST 'control_iovr4_intel' [02:57, 02:22](618 MB) -PASS -- TEST 'control_iovr5_intel' [02:49, 02:23](619 MB) -PASS -- TEST 'control_p8_intel' [06:47, 04:48](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 04:04](1855 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:48, 04:41](1868 MB) -PASS -- TEST 'control_restart_p8_intel' [04:33, 02:20](1009 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:24, 03:37](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:52](1015 MB) -PASS -- TEST 'control_decomp_p8_intel' [05:55, 03:57](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:26, 03:39](1934 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:29, 06:15](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:36, 03:51](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:03, 03:15](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [06:41, 03:52](1864 MB) -PASS -- TEST 'regional_control_intel' [05:27, 04:29](862 MB) -PASS -- TEST 'regional_restart_intel' [03:41, 02:49](862 MB) -PASS -- TEST 'regional_decomp_intel' [05:57, 05:03](863 MB) -PASS -- TEST 'regional_noquilt_intel' [05:34, 04:36](1188 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:47, 04:46](869 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:52, 04:54](864 MB) -PASS -- TEST 'regional_wofs_intel' [06:48, 06:01](1591 MB) - -PASS -- COMPILE 'rrfs_intel' [15:50, 15:50] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [08:00, 06:36](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:22, 04:14](1142 MB) -PASS -- TEST 'rap_decomp_intel' [09:00, 06:51](1003 MB) -PASS -- TEST 'rap_2threads_intel' [07:54, 06:10](1087 MB) -PASS -- TEST 'rap_restart_intel' [05:10, 03:37](877 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:30, 08:22](1004 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:56, 08:38](1001 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:23, 05:44](877 MB) -PASS -- TEST 'hrrr_control_intel' [06:58, 05:28](1000 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:11, 05:35](1001 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:39, 05:03](1077 MB) -PASS -- TEST 'hrrr_control_restart_intel' [02:42, 01:53](831 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:24, 08:15](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:13, 08:43](1953 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:49, 08:24](1944 MB) - -PASS -- COMPILE 'csawmg_intel' [14:26, 14:26] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [07:51, 07:02](961 MB) -PASS -- TEST 'control_ras_intel' [03:38, 03:12](659 MB) - -PASS -- COMPILE 'wam_intel' [13:44, 13:43] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [11:38, 10:24](1651 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:39, 14:39] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:29, 04:15](1863 MB) -PASS -- TEST 'regional_control_faster_intel' [05:24, 04:32](862 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [17:51, 17:51] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:34, 02:34](1607 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:35, 02:30](1610 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:29, 03:06](809 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:24, 03:00](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:01, 05:17](1113 MB) -PASS -- TEST 'control_ras_debug_intel' [02:57, 02:44](817 MB) -PASS -- TEST 'control_diag_debug_intel' [04:13, 03:08](1666 MB) -PASS -- TEST 'control_debug_p8_intel' [04:27, 03:45](1898 MB) -PASS -- TEST 'regional_debug_intel' [16:53, 16:13](933 MB) -PASS -- TEST 'rap_control_debug_intel' [05:09, 04:55](1194 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:03, 04:48](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:16, 05:00](1192 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:13, 04:58](1191 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:36, 04:58](1194 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:34, 05:16](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:38, 04:59](1195 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:54, 05:11](1187 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:34, 05:13](1200 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:22, 04:59](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:21, 04:53](1188 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:21, 04:56](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:21, 07:57](1188 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:08, 04:50](1184 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:58, 05:35](1193 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:10, 04:52](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [09:35, 08:09](1193 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:36, 09:35] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [13:39, 12:58](1690 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:05, 14:05] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:42, 04:08](1015 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:14, 05:34](881 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:13, 03:03](878 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:14, 05:00](941 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:58, 02:47](932 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:29, 03:14](877 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:41, 04:11](789 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:39, 02:00](767 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 14:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:36, 02:32](1070 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:39, 01:28](1074 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:35, 01:32](964 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:19, 14:18] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:56, 03:56](903 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:57, 09:57] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:04, 04:45](1067 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:56, 04:36](1066 MB) -PASS -- TEST 'conus13km_debug_intel' [15:11, 14:14](1143 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:11, 14:12](847 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:26, 08:35](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:13, 14:20](1215 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:32, 09:32] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 05:01](1097 MB) - -PASS -- COMPILE 'hafsw_intel' [22:14, 22:14] ( 6 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:24, 05:12](699 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:04, 06:31](1052 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:17, 07:27](762 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [13:24, 11:40](771 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:17, 12:33](792 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:02, 04:46](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:25, 06:10](483 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:20, 02:27](384 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:29, 06:40](455 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:13, 03:31](500 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:05, 03:16](502 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [05:07, 04:08](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:36, 01:16](422 MB) -PASS -- TEST 'gnv1_nested_intel' [07:36, 04:42](1711 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [13:15, 13:15] ( 1470 warnings 1481 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:40, 13:06](617 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [21:28, 21:27] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:41, 07:37](619 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [08:41, 07:35](682 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [23:16, 23:15] ( 5 warnings 7 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:56, 06:06](674 MB) - -PASS -- COMPILE 'hafs_all_intel' [19:31, 19:31] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [07:23, 06:27](735 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:19, 06:26](723 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:28, 16:21](895 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:01, 12:01] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:42, 02:35](766 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:48, 01:38](744 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:34, 02:27](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:33, 02:27](648 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:42, 02:34](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:54, 02:41](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [02:55, 02:43](756 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:47, 02:35](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:08, 06:22](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:39, 05:58](679 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:55, 02:49](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:43, 04:26](2031 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:44, 04:20](2031 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [08:40, 08:40] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:19, 05:10](752 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [11:29, 11:28] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:58, 02:49](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:53, 03:52] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:21, 02:03](311 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:40, 02:21](452 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [01:17, 01:02](451 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [16:30, 16:28] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:54, 05:20](1909 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [16:36, 16:36] ( 5 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:05, 04:33](1895 MB) - -PASS -- COMPILE 'atml_intel' [18:03, 18:03] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:54, 09:23](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [11:35, 09:09](1890 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:25, 05:19](1032 MB) - -PASS -- COMPILE 'atml_debug_intel' [14:45, 14:45] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:23, 08:14](1925 MB) - -PASS -- COMPILE 'atmw_intel' [17:59, 17:58] ( 5 warnings 8 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:20, 03:10](1875 MB) - -PASS -- COMPILE 'atmaero_intel' [16:33, 16:33] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:43, 05:26](3129 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:20, 04:32](3010 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:56, 04:43](3018 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [11:47, 11:47] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:39, 22:50](4541 MB) - -PASS -- COMPILE 'atm_fbh_intel' [14:59, 14:58] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:54, 08:21](815 MB) +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [23:17, 21:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:27, 10:30](3198 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:20, 23:18] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:16, 14:10](1922 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:21, 15:27](1961 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:30, 07:20](1082 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:11, 16:12](1888 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:17, 23:20] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:54](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [14:17, 11:48] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:14, 25:20](1940 MB) + +PASS -- COMPILE 's2swa_intel' [23:18, 21:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:59, 13:40](3220 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:48, 13:58](3233 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:53, 08:03](3146 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:39, 13:48](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:06, 07:46](3175 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [28:41, 24:24](3816 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:37, 13:21](3218 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [15:27, 10:55](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:46, 13:45](3235 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:36, 09:22](3812 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [12:53, 06:14](3619 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [33:11, 17:06](4536 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [32:19, 10:32](4670 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:05, 08:04](3205 MB) + +PASS -- COMPILE 's2sw_intel' [21:18, 19:50] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:29, 07:39](1915 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:41, 11:58](1987 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:40] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [25:06, 20:51](3300 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:16, 10:59] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:43, 09:19](1954 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:16, 16:11] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:54, 05:03](1983 MB) + +PASS -- COMPILE 's2s_intel' [18:18, 16:53] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:47](2883 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:13, 02:10](2891 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:26](2305 MB) + +PASS -- COMPILE 's2swa_faster_intel' [25:18, 23:44] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:26, 13:32](3230 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [23:18, 21:31] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [26:56, 23:21](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [16:39, 12:11](1098 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:58, 27:22](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:14, 11:07] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:51, 27:30](1956 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:14, 14:17] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:38, 03:29](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:04, 02:43](1566 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:20, 02:44](1563 MB) +PASS -- TEST 'control_latlon_intel' [05:02, 02:40](1573 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:08, 02:41](1572 MB) +PASS -- TEST 'control_c48_intel' [12:12, 09:18](1586 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:43, 05:18](706 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:08, 09:18](1589 MB) +PASS -- TEST 'control_c192_intel' [14:24, 10:00](1692 MB) +PASS -- TEST 'control_c384_intel' [19:21, 11:20](1984 MB) +PASS -- TEST 'control_c384gdas_intel' [17:16, 07:17](1185 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:26](624 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:43, 00:52](437 MB) +PASS -- TEST 'control_lndp_intel' [03:34, 01:23](617 MB) +PASS -- TEST 'control_iovr4_intel' [04:41, 02:12](617 MB) +PASS -- TEST 'control_iovr5_intel' [04:42, 02:08](616 MB) +PASS -- TEST 'control_p8_intel' [07:36, 03:51](1853 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:33, 03:07](1849 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:32, 03:35](1857 MB) +PASS -- TEST 'control_restart_p8_intel' [05:32, 02:23](1006 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:28, 03:36](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:24, 02:20](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:21, 03:41](1848 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:24, 06:08](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:08, 06:09](1853 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:41, 04:00](1911 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:12](1862 MB) +PASS -- TEST 'merra2_thompson_intel' [06:19, 03:36](1863 MB) +PASS -- TEST 'regional_control_intel' [07:57, 05:00](893 MB) +PASS -- TEST 'regional_restart_intel' [06:08, 03:04](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:53, 05:13](894 MB) +PASS -- TEST 'regional_noquilt_intel' [07:54, 04:52](1215 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:00, 04:57](891 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:05, 04:56](893 MB) +PASS -- TEST 'regional_wofs_intel' [09:00, 05:54](1587 MB) + +PASS -- COMPILE 'rrfs_intel' [15:17, 12:51] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:30, 06:09](1003 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:25, 03:47](1165 MB) +PASS -- TEST 'rap_decomp_intel' [09:30, 06:23](1005 MB) +PASS -- TEST 'rap_2threads_intel' [14:07, 11:29](1089 MB) +PASS -- TEST 'rap_restart_intel' [06:14, 03:16](880 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:32, 06:07](1007 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:32, 06:29](999 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:17, 04:40](885 MB) +PASS -- TEST 'hrrr_control_intel' [06:07, 03:14](999 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:07, 03:23](998 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [09:35, 05:47](1078 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 01:46](832 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:33, 06:03](999 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:50, 08:07](1962 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:49, 07:51](1945 MB) + +PASS -- COMPILE 'csawmg_intel' [13:17, 11:43] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:02, 06:34](958 MB) +PASS -- TEST 'control_ras_intel' [05:39, 02:52](659 MB) + +PASS -- COMPILE 'wam_intel' [13:13, 11:34] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:08, 10:15](1653 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:16, 12:01] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:33, 02:56](1860 MB) +PASS -- TEST 'regional_control_faster_intel' [07:55, 04:41](891 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [16:14, 14:32] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 02:09](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:03, 02:08](1599 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:47, 02:59](803 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:34, 02:36](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:10, 04:45](1112 MB) +PASS -- TEST 'control_ras_debug_intel' [05:25, 02:39](814 MB) +PASS -- TEST 'control_diag_debug_intel' [06:41, 02:38](1665 MB) +PASS -- TEST 'control_debug_p8_intel' [06:06, 03:06](1895 MB) +PASS -- TEST 'regional_debug_intel' [18:55, 16:18](922 MB) +PASS -- TEST 'rap_control_debug_intel' [07:29, 04:41](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:44, 04:41](1183 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:46, 04:48](1190 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:39, 04:40](1188 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:40, 04:47](1188 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:37, 05:00](1271 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:35, 04:51](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:32, 04:51](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:40, 04:45](1186 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:30, 04:52](1188 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:39, 04:34](1184 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:33, 04:48](1185 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:31, 07:51](1185 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:38, 04:37](1184 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:40, 04:51](1189 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 04:46](1187 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:16, 08:12](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:15, 07:11] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:13, 12:10](1691 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:14, 11:36] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 03:34](1031 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:59, 05:11](877 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:58, 02:47](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:58, 09:36](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:59, 04:56](929 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:13, 02:57](872 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 03:55](792 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:35, 01:34](769 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:14, 11:27] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 01:50](1074 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:06, 01:18](1079 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:14, 01:07](963 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:58, 03:38](902 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:21, 07:31] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:39, 04:38](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:27, 04:29](1064 MB) +PASS -- TEST 'conus13km_debug_intel' [17:00, 13:11](1147 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:58, 12:48](831 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:40, 13:41](1147 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:33, 12:36](1214 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:21, 07:13] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:30, 04:46](1093 MB) + +PASS -- COMPILE 'hafsw_intel' [19:24, 17:50] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:33](704 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:57, 05:23](1065 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [09:36, 06:28](752 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:04, 10:38](778 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:16, 11:40](796 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:18, 04:38](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:32, 05:49](484 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:02, 02:22](392 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:27, 06:15](459 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:07, 03:21](502 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:21, 03:05](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:14, 03:48](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:33, 01:15](427 MB) +PASS -- TEST 'gnv1_nested_intel' [08:33, 04:05](1702 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:18, 08:37] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:07, 12:02](618 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:18, 17:18] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:24, 06:53](624 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:40, 06:59](681 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:21, 18:49] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:42, 05:20](671 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:20, 15:58] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:41, 05:41](733 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:26, 05:48](725 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:22, 16:13](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:23, 08:24] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:40, 02:30](769 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:51, 01:32](755 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:35, 02:22](646 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:39, 02:23](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:44, 02:21](647 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:37, 02:28](770 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:41, 02:29](757 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:41, 02:20](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:46, 05:42](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:37, 05:37](679 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:32, 02:28](756 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:41, 03:53](2034 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:39, 03:54](2033 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [07:12, 05:47] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:47, 05:15](753 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:13, 08:14] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:40, 02:27](769 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:14, 02:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:42, 01:15](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:10](452 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:43, 00:47](450 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:19, 13:39] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:15, 04:05](1904 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:23, 12:44] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:47, 07:59](1910 MB) + +PASS -- COMPILE 'atml_intel' [16:20, 14:40] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:01, 06:56](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:58, 07:07](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:03, 03:55](1034 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:16, 10:34] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:02, 06:11](1930 MB) + +PASS -- COMPILE 'atmw_intel' [15:19, 13:48] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:43, 02:15](1877 MB) + +PASS -- COMPILE 'atmaero_intel' [15:24, 12:58] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:05, 04:17](3130 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:13, 04:22](3001 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:21, 04:26](3014 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:18, 08:08] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:36, 21:55](4545 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:19, 11:30] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:38, 08:07](848 MB) SYNOPSIS: -Starting Date/Time: 20240926 09:23:49 -Ending Date/Time: 20240927 03:11:02 -Total Time: 17h:49m:31s +Starting Date/Time: 20250104 05:57:46 +Ending Date/Time: 20250104 07:49:45 +Total Time: 01h:53m:02s Compiles Completed: 42/42 -Tests Completed: 185/185 +Tests Completed: 186/186 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaea.log b/tests/logs/RegressionTests_gaea.log deleted file mode 100644 index fc23144717..0000000000 --- a/tests/logs/RegressionTests_gaea.log +++ /dev/null @@ -1,438 +0,0 @@ -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3381299 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [19:13, 17:45] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:19, 12:55](3182 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:14, 18:52] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [17:21, 14:27](1910 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [17:07, 14:26](1947 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:05, 06:35](1074 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:04, 15:34](1869 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [24:13, 22:12] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [16:56, 14:02](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [12:11, 10:12] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [32:34, 28:00](1936 MB) - -PASS -- COMPILE 's2swa_intel' [17:13, 15:16] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:50, 16:01](3215 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:15](3212 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:21, 08:54](3138 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:50, 16:35](3234 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:21, 08:52](3158 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [17:47, 14:08](3461 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [19:46, 15:56](3210 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [17:34, 13:36](3158 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:03, 16:26](3216 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:59, 10:21](3489 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:01, 06:56](3600 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [28:42, 19:40](4266 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [18:41, 12:11](4353 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:35, 10:00](3191 MB) - -PASS -- COMPILE 's2sw_intel' [16:14, 15:04] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [11:37, 07:50](1915 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:58, 12:43](1965 MB) - -PASS -- COMPILE 's2swa_debug_intel' [12:12, 10:10] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:20, 23:05](3274 MB) - -PASS -- COMPILE 's2sw_debug_intel' [12:13, 10:15] ( 1415 warnings 1197 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:16, 09:23](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:14, 14:21] ( 5 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:02, 05:18](1977 MB) - -PASS -- COMPILE 's2s_intel' [16:14, 14:20] ( 6 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:17, 05:43](2876 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:15, 02:01](2880 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:04](2295 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:14, 18:11] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [18:16, 15:46](3213 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:17, 19:41] ( 6 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [28:13, 25:10](1923 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [15:04, 12:36](1092 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:04, 29:17](1888 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [14:13, 12:34] ( 1525 warnings 1936 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [32:50, 30:10](1944 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:52] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:22, 03:47](654 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:59, 03:26](1552 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:59, 03:22](1566 MB) -PASS -- TEST 'control_latlon_intel' [05:52, 03:19](1557 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:25](1559 MB) -PASS -- TEST 'control_c48_intel' [11:57, 09:57](1572 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:33, 05:48](696 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -PASS -- TEST 'control_c192_intel' [15:36, 11:21](1690 MB) -PASS -- TEST 'control_c384_intel' [26:16, 23:38](1967 MB) -PASS -- TEST 'control_c384gdas_intel' [17:30, 14:39](1164 MB) -PASS -- TEST 'control_stochy_intel' [04:23, 02:01](608 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:19, 01:08](418 MB) -PASS -- TEST 'control_lndp_intel' [03:25, 01:48](609 MB) -PASS -- TEST 'control_iovr4_intel' [05:23, 02:42](608 MB) -PASS -- TEST 'control_iovr5_intel' [04:24, 02:39](607 MB) -PASS -- TEST 'control_p8_intel' [05:52, 03:38](1844 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:03, 03:18](1841 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:51, 03:51](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [04:48, 02:36](1000 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:46, 03:43](1839 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:47, 02:40](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:17, 03:51](1842 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:20, 03:16](1920 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:43, 06:16](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:22, 04:12](1898 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:26, 03:24](1848 MB) -PASS -- TEST 'merra2_thompson_intel' [06:17, 03:35](1847 MB) -PASS -- TEST 'regional_control_intel' [07:33, 05:01](876 MB) -PASS -- TEST 'regional_restart_intel' [04:29, 02:43](859 MB) -PASS -- TEST 'regional_decomp_intel' [07:29, 05:09](878 MB) -PASS -- TEST 'regional_2threads_intel' [05:28, 03:17](1008 MB) -PASS -- TEST 'regional_noquilt_intel' [07:29, 04:49](1208 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:40, 04:41](886 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:29, 04:41](876 MB) -PASS -- TEST 'regional_wofs_intel' [08:31, 06:58](1571 MB) - -PASS -- COMPILE 'rrfs_intel' [13:11, 11:38] ( 8 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:38, 07:50](994 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:44, 04:17](1169 MB) -PASS -- TEST 'rap_decomp_intel' [10:16, 07:29](992 MB) -PASS -- TEST 'rap_2threads_intel' [08:36, 06:26](1072 MB) -PASS -- TEST 'rap_restart_intel' [05:35, 03:34](870 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:38, 07:07](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [09:37, 07:29](988 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:42, 05:02](874 MB) -PASS -- TEST 'hrrr_control_intel' [06:40, 03:58](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:38, 04:05](982 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:36, 03:29](1063 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:26, 02:03](816 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:35, 06:46](981 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:24, 09:03](1943 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:23, 08:35](1935 MB) - -PASS -- COMPILE 'csawmg_intel' [12:11, 11:03] ( 5 warnings ) -PASS -- TEST 'control_csawmg_intel' [09:31, 06:45](944 MB) -PASS -- TEST 'control_ras_intel' [05:47, 03:18](644 MB) - -PASS -- COMPILE 'wam_intel' [12:11, 10:58] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:58, 11:48](1641 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:12, 10:54] ( 5 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:46, 03:16](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [06:29, 04:25](880 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [14:14, 12:10] ( 887 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:34, 02:45](1574 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:36, 02:42](1588 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:20, 03:14](783 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:25, 02:48](779 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:30, 04:28](1084 MB) -PASS -- TEST 'control_ras_debug_intel' [05:21, 03:00](792 MB) -PASS -- TEST 'control_diag_debug_intel' [05:31, 03:35](1642 MB) -PASS -- TEST 'control_debug_p8_intel' [04:28, 02:56](1873 MB) -PASS -- TEST 'regional_debug_intel' [18:29, 16:10](881 MB) -PASS -- TEST 'rap_control_debug_intel' [07:21, 05:09](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:20, 05:07](1163 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:22, 05:16](1163 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:24, 05:29](1159 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:23, 05:55](1163 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:24, 05:21](1246 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:23, 05:14](1164 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 05:08](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:22, 05:04](1165 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:32, 05:07](1166 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:22, 05:35](1159 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:23, 05:16](1162 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:25, 07:51](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:23, 05:41](1161 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:22, 05:07](1166 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:09](1164 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:42, 08:43](1171 MB) - -PASS -- COMPILE 'wam_debug_intel' [10:16, 08:24] ( 842 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:52, 13:34](1662 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:12, 11:27] ( 8 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:57, 03:53](1042 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:42, 05:57](864 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:40, 03:19](863 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:35, 05:12](917 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:38, 02:51](915 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:35, 03:29](858 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:35, 04:13](775 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:29, 01:42](747 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:11] ( 8 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:00, 02:01](1072 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:53, 01:09](1060 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:54, 01:25](951 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:12, 11:18] ( 8 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:44, 04:17](898 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:21, 05:01](1039 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:21, 05:05](1042 MB) -PASS -- TEST 'conus13km_debug_intel' [15:50, 13:28](1127 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:16](798 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:54, 07:56](1116 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:55, 13:17](1194 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 08:00] ( 790 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:21, 05:16](1064 MB) - -PASS -- COMPILE 'hafsw_intel' [16:11, 14:28] ( 6 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:05, 05:11](712 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:25, 04:47](1082 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:29, 07:41](746 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:13, 11:27](773 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:31, 12:56](801 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 05:31](468 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:44](498 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:53, 02:50](397 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:20, 07:40](485 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:52, 04:02](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 03:37](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:06, 04:40](585 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:41](426 MB) -PASS -- TEST 'gnv1_nested_intel' [09:02, 05:14](1700 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:11, 09:04] ( 1467 warnings 1469 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [16:03, 12:53](615 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:18, 14:45] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:01, 07:39](630 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:11, 07:44](807 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 13:30] ( 5 warnings 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:27, 06:09](809 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:12, 13:52] ( 5 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:08, 06:08](737 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:10, 06:12](717 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [23:06, 20:11](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:17] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:48, 02:39](764 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:35](740 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:34](641 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:49, 02:33](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:49, 02:31](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:49, 02:40](762 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:45, 02:41](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:29](642 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:50, 06:06](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [08:47, 06:11](671 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:37](763 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:48](2029 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:50](2030 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:11, 07:24] ( 7 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:18, 05:32](746 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 11:00] ( 5 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:44](763 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:14, 01:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:37, 01:33](313 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:53, 01:19](460 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:28, 00:59](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [05:11, 03:24] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:43, 00:39](451 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:38, 00:23](254 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 13:07] ( 5 warnings 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:55, 03:52](1908 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [12:17, 10:51] ( 6 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:51, 08:17](1892 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 11:21] ( 13 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:55, 06:51](1882 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [09:48, 06:57](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:30, 03:51](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:11, 07:33] ( 885 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:47, 06:08](1907 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:58] ( 5 warnings 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:39, 02:10](1871 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:44] ( 5 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:43, 05:52](3099 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:45, 06:19](2984 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:37, 06:49](2991 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [08:11, 06:57] ( 887 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:14, 18:26](4434 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:12, 09:48] ( 8 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:30, 09:45](830 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:17, 20:15] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:13, 09:38] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_debug_gfsv17_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:12, 18:19] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_sfs_intelllvm' [, ]( MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 14:00] -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'cpld_control_p8_intelllvm' [, ]( MB) - -SYNOPSIS: -Starting Date/Time: 20241122 00:16:46 -Ending Date/Time: 20241122 02:35:51 -Total Time: 02h:20m:01s -Compiles Completed: 47/47 -Tests Completed: 188/193 -Failed Tests: -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_control_c48_lnd_iau_intel.log -* TEST cpld_control_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_gfsv17_intelllvm.log -* TEST cpld_debug_gfsv17_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_debug_gfsv17_intelllvm.log -* TEST cpld_control_sfs_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_sfs_intelllvm.log -* TEST cpld_control_p8_intelllvm: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/reg-test/wm/2482/ufs-weather-model/tests/logs/log_gaea/run_cpld_control_p8_intelllvm.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEA REGRESSION TESTING LOG==== -====START OF GAEA REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1802626 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-b) - NEW BASELINES FROM FILE: test_changes.list -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [13:11, 11:12] ( 6 warnings 1 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:28, 09:56](1575 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [20:11, 18:10] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [17:46, 13:37](1897 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [09:11, 07:57] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [39:52, 27:08](1922 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [20:11, 18:37] -PASS -- TEST 'cpld_control_sfs_intelllvm' [16:31, 13:36](1899 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:11, 13:17] -PASS -- TEST 'cpld_control_p8_intelllvm' [18:48, 15:13](3212 MB) - -SYNOPSIS: -Starting Date/Time: 20241122 13:03:15 -Ending Date/Time: 20241122 13:53:40 -Total Time: 00h:50m:45s -Compiles Completed: 5/5 -Tests Completed: 5/5 - -NOTES: -A file 'test_changes.list' was generated but is empty. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: SUCCESS - -====END OF GAEA REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log new file mode 100644 index 0000000000..f397089553 --- /dev/null +++ b/tests/logs/RegressionTests_gaeac5.log @@ -0,0 +1,348 @@ +====START OF GAEAC5 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_4189773 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: epic +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [17:13, 15:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:45, 15:28](3186 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:18, 19:33] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [19:09, 15:27](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:33, 18:02](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:49, 09:42](1072 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:41, 19:27](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:16, 24:57] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:15, 16:44](1901 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:13, 15:56] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:17, 28:14](1934 MB) + +PASS -- COMPILE 's2swa_intel' [17:13, 15:53] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [22:43, 18:32](3209 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:59, 16:09](3213 MB) +PASS -- TEST 'cpld_restart_p8_intel' [16:44, 12:19](3138 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [22:38, 18:43](3236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [16:45, 12:19](3160 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:02, 20:24](3438 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:49, 16:31](3206 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:55, 13:24](3153 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:59, 16:37](3210 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:07, 10:50](3490 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:37, 09:10](3600 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:04, 21:35](4273 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [21:48, 14:28](4363 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [15:55, 12:38](3193 MB) + +PASS -- COMPILE 's2sw_intel' [22:15, 20:43] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:24, 09:57](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:52, 15:00](1966 MB) + +PASS -- COMPILE 's2swa_debug_intel' [10:12, 08:59] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [28:31, 25:07](3270 MB) + +PASS -- COMPILE 's2sw_debug_intel' [10:12, 08:25] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:21, 12:02](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [15:17, 14:02] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:22, 07:30](1966 MB) + +PASS -- COMPILE 's2s_intel' [20:14, 18:55] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:11, 05:34](2869 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [07:14, 03:54](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:52, 03:05](2294 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:14, 16:40] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [21:31, 18:21](3209 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:13, 19:32] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:30, 24:58](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [18:25, 14:57](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:13, 28:52](1892 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [11:13, 09:58] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:50, 35:15](1947 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:13, 13:26] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:29, 05:51](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:22, 03:33](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:50, 05:33](1560 MB) +PASS -- TEST 'control_latlon_intel' [07:41, 05:28](1557 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:58, 04:11](1552 MB) +PASS -- TEST 'control_c48_intel' [15:11, 12:12](1574 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:48, 07:52](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [12:56, 10:56](1571 MB) +PASS -- TEST 'control_c192_intel' [16:26, 13:44](1690 MB) +PASS -- TEST 'control_c384_intel' [28:23, 24:28](1967 MB) +PASS -- TEST 'control_c384gdas_intel' [19:13, 15:24](1167 MB) +PASS -- TEST 'control_stochy_intel' [06:34, 04:34](610 MB) +PASS -- TEST 'control_stochy_restart_intel' [05:35, 03:14](418 MB) +PASS -- TEST 'control_lndp_intel' [06:29, 04:22](608 MB) +PASS -- TEST 'control_iovr4_intel' [06:54, 04:37](606 MB) +PASS -- TEST 'control_iovr5_intel' [05:32, 03:23](608 MB) +PASS -- TEST 'control_p8_intel' [09:00, 06:29](1840 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [09:23, 06:15](1841 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:03, 06:28](1847 MB) +PASS -- TEST 'control_restart_p8_intel' [07:08, 04:49](1003 MB) +PASS -- TEST 'control_noqr_p8_intel' [09:02, 06:28](1844 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [07:05, 04:48](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:10](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:05, 05:09](1919 MB) +PASS -- TEST 'control_p8_lndp_intel' [10:30, 07:30](1854 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:53, 04:54](1898 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:15, 06:01](1854 MB) +PASS -- TEST 'merra2_thompson_intel' [10:51, 06:16](1846 MB) +PASS -- TEST 'regional_control_intel' [09:09, 06:48](869 MB) +PASS -- TEST 'regional_restart_intel' [06:55, 04:42](862 MB) +PASS -- TEST 'regional_decomp_intel' [09:42, 07:01](875 MB) +PASS -- TEST 'regional_2threads_intel' [08:42, 05:49](1002 MB) +PASS -- TEST 'regional_noquilt_intel' [07:35, 04:47](1203 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:24, 04:35](887 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [09:42, 06:54](880 MB) +PASS -- TEST 'regional_wofs_intel' [10:51, 08:31](1575 MB) + +PASS -- COMPILE 'rrfs_intel' [14:13, 12:59] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:08, 07:37](989 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:13, 06:28](1168 MB) +PASS -- TEST 'rap_decomp_intel' [12:13, 09:41](988 MB) +PASS -- TEST 'rap_2threads_intel' [10:58, 08:42](1065 MB) +PASS -- TEST 'rap_restart_intel' [09:00, 05:54](868 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:13, 07:06](988 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:13, 09:33](988 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:57, 07:23](874 MB) +PASS -- TEST 'hrrr_control_intel' [08:53, 06:19](981 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:55, 04:27](980 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:52, 06:11](1059 MB) +PASS -- TEST 'hrrr_control_restart_intel' [06:36, 04:24](817 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:40, 09:43](984 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [14:05, 11:39](1947 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:31, 09:11](1933 MB) + +PASS -- COMPILE 'csawmg_intel' [18:13, 16:20] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:47, 08:52](945 MB) +PASS -- TEST 'control_ras_intel' [06:26, 04:32](643 MB) + +PASS -- COMPILE 'wam_intel' [13:14, 11:35] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [18:49, 14:17](1639 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [18:15, 16:29] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [11:10, 05:38](1848 MB) +PASS -- TEST 'regional_control_faster_intel' [10:06, 06:36](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [13:15, 12:02] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:10, 03:28](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:15, 05:11](1582 MB) +PASS -- TEST 'control_stochy_debug_intel' [07:34, 05:42](784 MB) +PASS -- TEST 'control_lndp_debug_intel' [07:33, 05:25](785 MB) +PASS -- TEST 'control_csawmg_debug_intel' [09:11, 06:29](1084 MB) +PASS -- TEST 'control_ras_debug_intel' [07:34, 05:02](790 MB) +PASS -- TEST 'control_diag_debug_intel' [08:17, 05:11](1645 MB) +PASS -- TEST 'control_debug_p8_intel' [07:58, 05:32](1877 MB) +PASS -- TEST 'regional_debug_intel' [20:38, 18:36](902 MB) +PASS -- TEST 'rap_control_debug_intel' [09:34, 07:15](1163 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:35](1161 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [10:35, 07:52](1160 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [10:26, 08:10](1163 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:29, 05:38](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [10:36, 08:22](1249 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:27, 07:47](1163 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:34, 07:41](1164 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:39, 07:32](1165 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:37, 07:33](1164 MB) +PASS -- TEST 'rap_noah_debug_intel' [11:38, 07:27](1161 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:12, 05:05](1162 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:11, 10:31](1160 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [08:56, 05:38](1162 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:16, 07:30](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [10:26, 07:40](1165 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:12, 11:07](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [14:12, 12:12] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [19:57, 15:59](1674 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [12:14, 10:40] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:58, 06:16](1038 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:16, 08:20](865 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:12, 05:47](864 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [12:08, 09:23](910 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [09:02, 06:01](913 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:53, 05:56](856 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:54, 06:39](781 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:23, 02:19](753 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 11:08] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:28, 04:29](1072 MB) +PASS -- TEST 'conus13km_2threads_intel' [06:05, 03:30](1054 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:59, 02:00](949 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [12:12, 10:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:03, 06:47](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 08:30] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:15](1040 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:34, 07:25](1043 MB) +PASS -- TEST 'conus13km_debug_intel' [19:27, 15:58](1126 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:26, 16:17](802 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:08, 14:10](1109 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:10, 16:17](1198 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:12, 08:03] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:33, 07:33](1064 MB) + +PASS -- COMPILE 'hafsw_intel' [16:13, 14:47] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:20, 05:40](717 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 06:37](1079 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:31, 10:08](745 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:29, 14:01](777 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:52, 13:17](803 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:10, 06:01](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:48, 09:30](499 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:59, 05:12](397 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:51, 10:25](484 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:21, 06:08](505 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:26, 05:56](508 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:07, 07:04](587 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:38, 04:01](425 MB) +PASS -- TEST 'gnv1_nested_intel' [12:08, 08:37](1689 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:13, 08:24] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:03, 15:12](611 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:13, 14:08] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:10, 10:05](629 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:29, 10:16](811 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:22, 14:46] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:48, 06:41](806 MB) + +PASS -- COMPILE 'hafs_all_intel' [23:18, 21:57] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [11:19, 08:45](735 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:25, 08:47](716 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:15, 22:16](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:13, 16:32] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:27, 04:44](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:32, 01:43](752 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:21, 04:38](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:28, 04:38](648 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:24, 04:33](641 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:28, 04:39](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:28, 02:37](764 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:26, 04:31](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:14, 08:48](693 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:15, 08:46](676 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:25, 04:43](764 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:55, 06:44](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [08:56, 06:47](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:16, 07:10] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:30, 07:32](735 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:14, 16:29] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:25, 02:38](764 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:14, 03:29] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [07:43, 04:17](315 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [05:45, 03:50](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:52, 01:30](462 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [13:12, 11:08] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [05:01, 02:39](452 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [04:46, 02:25](251 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:12, 13:53] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [09:20, 06:32](1914 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [22:14, 20:53] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:21, 11:00](1894 MB) + +PASS -- COMPILE 'atml_intel' [15:17, 13:18] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [13:30, 10:51](1879 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [11:19, 08:52](1879 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [08:50, 06:15](1028 MB) + +PASS -- COMPILE 'atml_debug_intel' [12:15, 10:10] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:25, 09:26](1906 MB) + +PASS -- COMPILE 'atmw_intel' [14:16, 13:01] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:30, 02:51](1872 MB) + +PASS -- COMPILE 'atmaero_intel' [14:19, 12:19] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [12:27, 09:26](3098 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:28, 09:21](2982 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [12:08, 09:44](2991 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [15:13, 13:45] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [22:03, 18:48](4442 MB) + +PASS -- COMPILE 'atm_fbh_intel' [19:18, 17:15] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:20, 11:35](829 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:14, 20:17] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [21:31, 18:08](1900 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [14:17, 13:07] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [33:32, 30:28](1922 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [22:18, 21:05] +PASS -- TEST 'cpld_control_sfs_intelllvm' [19:58, 17:17](1901 MB) + +PASS -- COMPILE 's2swa_intelllvm' [18:16, 16:42] +PASS -- TEST 'cpld_control_p8_intelllvm' [21:45, 18:36](3215 MB) + +SYNOPSIS: +Starting Date/Time: 20250106 07:35:16 +Ending Date/Time: 20250106 09:42:36 +Total Time: 02h:10m:16s +Compiles Completed: 47/47 +Tests Completed: 193/193 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEAC5 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log new file mode 100644 index 0000000000..a807a999b9 --- /dev/null +++ b/tests/logs/RegressionTests_gaeac6.log @@ -0,0 +1,333 @@ +====START OF GAEAC6 REGRESSION TESTING LOG==== + +UFSWM hash used in testing: +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab + +Submodule hashes used in testing: + 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) + be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) + cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) + 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) + ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) +-179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd +-529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd + 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) + bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) + c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) + c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) + 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) + 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) + 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) + 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) + fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) + + +NOTES: +[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). +The first time is for the full script (prep+run+finalize). +The second time is specifically for the run phase. +Times/Memory will be empty for failed tests. + +BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_380130 + +RT.SH OPTIONS USED: +* (-a) - HPC PROJECT ACCOUNT: bil-fire8 +* (-l) - USE CONFIG FILE: rt.conf +* (-e) - USE ECFLOW + +PASS -- COMPILE 's2swa_32bit_intel' [09:13, 08:10] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:59, 07:07](2034 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:14, 12:08] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [13:49, 10:28](1920 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [16:06, 11:17](1956 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:55, 05:16](1084 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [15:55, 12:18](1905 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [43:38, 41:39] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [13:08, 11:03](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [27:19, 26:02] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [20:47, 17:46](1955 MB) + +PASS -- COMPILE 's2swa_intel' [23:33, 21:51] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [15:55, 09:20](2067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [15:54, 09:15](2063 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:02, 04:57](1626 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:43, 09:10](2079 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:08, 05:15](1458 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:36, 10:41](2234 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:37, 08:56](2059 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:41, 07:15](2016 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:50, 09:19](2066 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:04, 05:57](2418 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [08:48, 03:59](2668 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [22:53, 11:23](3603 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:49, 06:38](3441 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:20, 05:10](1927 MB) + +PASS -- COMPILE 's2sw_intel' [09:13, 07:35] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:46, 04:50](1933 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:56, 07:59](1855 MB) + +PASS -- COMPILE 's2swa_debug_intel' [34:20, 33:01] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:56, 14:23](2087 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:48] ( 1415 warnings 1197 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [11:45, 05:59](1969 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:13, 07:03] ( 5 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:53, 03:16](1991 MB) + +PASS -- COMPILE 's2s_intel' [59:26, 57:57] ( 6 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:15, 04:12](2867 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:16, 01:17](2880 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:41, 00:48](2290 MB) + +PASS -- COMPILE 's2swa_faster_intel' [34:38, 33:04] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [13:07, 09:05](2065 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:14, 11:19] ( 6 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:08, 17:44](1940 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:51, 09:08](1113 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:59, 20:58](1911 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:41] ( 1525 warnings 1936 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [22:42, 20:00](1957 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [54:26, 53:15] ( 6 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:35, 02:44](533 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:10, 02:06](1430 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:15, 02:13](1443 MB) +PASS -- TEST 'control_latlon_intel' [03:58, 02:06](1437 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:47, 02:09](1436 MB) +PASS -- TEST 'control_c48_intel' [10:10, 07:32](1575 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:52, 04:26](694 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:22, 07:31](1573 MB) +PASS -- TEST 'control_c192_intel' [10:28, 07:43](1697 MB) +PASS -- TEST 'control_c384_intel' [20:21, 16:35](1957 MB) +PASS -- TEST 'control_c384gdas_intel' [14:11, 10:01](1175 MB) +PASS -- TEST 'control_stochy_intel' [03:44, 01:17](489 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:39, 00:44](291 MB) +PASS -- TEST 'control_lndp_intel' [03:41, 01:10](489 MB) +PASS -- TEST 'control_iovr4_intel' [03:47, 01:48](485 MB) +PASS -- TEST 'control_iovr5_intel' [03:48, 01:47](483 MB) +PASS -- TEST 'control_p8_intel' [05:35, 02:29](1722 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:06, 02:04](1722 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:26, 02:27](1722 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 01:28](874 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:16, 02:21](1712 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:15, 01:21](885 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:11, 02:24](1717 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:12, 02:48](1799 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:02, 04:18](1727 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:27, 02:42](1774 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:30, 02:16](1739 MB) +PASS -- TEST 'merra2_thompson_intel' [05:24, 02:17](1731 MB) +PASS -- TEST 'regional_control_intel' [06:02, 03:27](876 MB) +PASS -- TEST 'regional_restart_intel' [03:56, 01:53](860 MB) +PASS -- TEST 'regional_decomp_intel' [06:03, 03:35](879 MB) +PASS -- TEST 'regional_2threads_intel' [05:02, 02:39](1023 MB) +PASS -- TEST 'regional_noquilt_intel' [06:07, 03:17](1205 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:33, 03:21](887 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:01, 03:22](880 MB) +PASS -- TEST 'regional_wofs_intel' [07:02, 04:25](1574 MB) + +PASS -- COMPILE 'rrfs_intel' [08:13, 07:01] ( 8 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:19, 04:49](869 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:15, 02:51](1161 MB) +PASS -- TEST 'rap_decomp_intel' [09:22, 05:12](869 MB) +PASS -- TEST 'rap_2threads_intel' [08:28, 05:48](952 MB) +PASS -- TEST 'rap_restart_intel' [05:09, 02:33](742 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:30, 04:50](870 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:30, 05:02](867 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:17, 03:36](741 MB) +PASS -- TEST 'hrrr_control_intel' [07:32, 02:38](859 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 02:40](860 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:32, 02:57](940 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:46, 01:23](694 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:25, 04:43](862 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:52, 06:09](1816 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:55, 05:58](1813 MB) + +PASS -- COMPILE 'csawmg_intel' [07:14, 05:44] ( 5 warnings ) +PASS -- TEST 'control_csawmg_intel' [07:57, 04:13](824 MB) +PASS -- TEST 'control_ras_intel' [05:41, 02:11](517 MB) + +PASS -- COMPILE 'wam_intel' [07:12, 05:46] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:10, 07:30](1510 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [08:12, 06:26] ( 5 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:18, 02:07](1726 MB) +PASS -- TEST 'regional_control_faster_intel' [05:57, 03:23](882 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [36:19, 34:38] ( 887 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:21, 01:35](1456 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:58, 01:32](1458 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:47, 02:10](659 MB) +PASS -- TEST 'control_lndp_debug_intel' [03:38, 01:55](656 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:06, 02:53](963 MB) +PASS -- TEST 'control_ras_debug_intel' [04:47, 01:56](665 MB) +PASS -- TEST 'control_diag_debug_intel' [05:17, 01:52](1514 MB) +PASS -- TEST 'control_debug_p8_intel' [04:08, 01:49](1757 MB) +PASS -- TEST 'regional_debug_intel' [14:13, 11:14](889 MB) +PASS -- TEST 'rap_control_debug_intel' [05:42, 03:20](1038 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:43, 03:20](1031 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:39, 03:23](1041 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:40, 03:24](1040 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:39, 03:26](1037 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:57, 03:33](1124 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:46, 03:24](1042 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:45, 03:23](1042 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:48, 03:25](1039 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:47, 03:22](1042 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:47, 03:16](1036 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:47, 03:22](1042 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:41, 05:25](1039 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:35, 03:24](1036 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:40, 03:26](1043 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:39, 03:21](1035 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:16, 05:41](1044 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 03:04] ( 842 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:06, 08:52](1545 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 05:44] ( 8 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:46, 02:42](1036 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:08, 04:06](747 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:08, 02:21](743 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:05, 05:36](796 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:08, 02:43](792 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:08, 02:28](744 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:02, 03:02](649 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:39, 01:12](628 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:13, 05:48] ( 8 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:13, 01:25](953 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:53, 00:45](1084 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:55, 00:52](824 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:46] ( 8 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:12, 02:46](768 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 03:06] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:39, 03:16](921 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:38, 03:13](916 MB) +PASS -- TEST 'conus13km_debug_intel' [11:17, 08:45](1003 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [11:17, 09:04](674 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [11:04, 08:09](1144 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [11:03, 08:59](1077 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 03:02] ( 790 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:36, 03:18](945 MB) + +PASS -- COMPILE 'hafsw_intel' [10:29, 08:42] ( 6 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [10:51, 03:35](712 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:02, 02:59](1070 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:30, 04:46](779 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [14:58, 08:10](813 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:43, 08:39](837 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:54, 03:31](472 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:15, 04:27](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:56, 01:46](399 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:28, 04:46](455 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 02:34](500 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:26, 02:23](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:57, 02:57](585 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:10, 01:10](427 MB) +PASS -- TEST 'gnv1_nested_intel' [09:16, 02:57](1709 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:12, 03:18] ( 1467 warnings 1469 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [13:39, 08:39](604 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:13, 07:25] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [08:59, 05:05](631 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:02, 05:09](801 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:13, 07:19] ( 5 warnings 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:23, 04:00](796 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:13, 07:31] ( 5 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:33, 04:24](772 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:40, 04:22](759 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [15:44, 10:57](890 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [07:13, 05:12] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:59, 01:41](764 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:39, 01:03](739 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:58, 01:35](643 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:57, 01:38](644 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:40, 01:39](644 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:50, 01:41](763 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:47, 01:42](763 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:59, 01:36](644 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:50, 04:11](707 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:48, 04:06](688 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:52, 01:41](752 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:40, 02:45](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:57, 02:45](2030 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:23] ( 7 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:37, 03:48](749 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:12, 05:04] ( 5 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:35, 01:42](762 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:42] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:38, 01:06](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:15, 00:51](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:16, 00:35](461 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [08:13, 06:29] ( 5 warnings 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:44, 02:29](1788 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [08:14, 06:09] ( 6 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [10:33, 07:19](1782 MB) + +PASS -- COMPILE 'atml_intel' [57:24, 55:22] ( 13 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:42, 03:56](1897 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [07:41, 03:57](1895 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:59, 03:07](1039 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:13, 03:46] ( 885 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:32, 04:11](1921 MB) + +PASS -- COMPILE 'atmw_intel' [08:13, 07:03] ( 5 warnings 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:14, 01:19](1759 MB) + +PASS -- COMPILE 'atmaero_intel' [07:13, 06:00] ( 5 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:35, 02:46](1947 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:37, 03:15](1600 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:24, 03:19](1617 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:13, 03:05] ( 887 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [17:34, 13:31](4446 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:12, 05:49] ( 8 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:15, 06:01](826 MB) + +SYNOPSIS: +Starting Date/Time: 20250103 15:47:51 +Ending Date/Time: 20250103 17:59:54 +Total Time: 02h:14m:42s +Compiles Completed: 42/42 +Tests Completed: 187/187 + +NOTES: +A file 'test_changes.list' was generated but is empty. +If you are using this log as a pull request verification, please commit 'test_changes.list'. + +Result: SUCCESS + +====END OF GAEAC6 REGRESSION TESTING LOG==== diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 39284f5f36..12152e2aeb 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,20 +1,20 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,386 +38,385 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /work2/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_1935327 +BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_3930529 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 14:28] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [49:26, 15:23](2134 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:11, 18:49] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [53:43, 18:18](1990 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:50, 18:03](2333 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [09:35, 06:48](1369 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [54:40, 19:07](1896 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [32:12, 20:48] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [26:52, 17:51](1988 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [17:11, 09:58] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [44:34, 25:37](1961 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 14:53] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [49:13, 15:12](2198 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [49:28, 15:00](2203 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:28, 07:44](1986 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [49:17, 15:33](2226 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:24, 07:47](1737 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [51:17, 17:25](2568 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [49:11, 15:17](2196 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [46:20, 12:47](2089 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [48:29, 14:46](2213 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [51:12, 16:51](2985 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [10:55, 06:31](2919 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [57:18, 18:11](3866 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [20:25, 10:02](3650 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [41:18, 07:47](2109 MB) - -PASS -- COMPILE 's2sw_intel' [14:11, 12:22] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:09, 14:41](2012 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [32:16, 11:24](2114 MB) - -PASS -- COMPILE 's2swa_debug_intel' [17:11, 09:57] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [59:23, 21:16](2238 MB) - -PASS -- COMPILE 's2sw_debug_intel' [17:11, 05:36] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [45:12, 08:20](2045 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [18:11, 11:43] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [41:24, 04:45](2057 MB) - -PASS -- COMPILE 's2s_intel' [20:11, 13:32] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [42:00, 07:00](3033 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [38:03, 03:02](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [15:55, 02:19](2471 MB) - -PASS -- COMPILE 's2swa_faster_intel' [14:11, 11:34] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [42:26, 15:22](2219 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [21:11, 16:02] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:19, 23:46](2074 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:20, 12:15](1426 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [31:16, 27:31](1993 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [09:10, 04:39] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [57:14, 28:13](2008 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [14:11, 09:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [16:23, 02:55](712 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [14:36, 02:48](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:41, 02:48](1614 MB) -PASS -- TEST 'control_latlon_intel' [12:32, 02:51](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:38, 02:48](1577 MB) -PASS -- TEST 'control_c48_intel' [19:40, 10:16](1692 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [15:36, 05:51](823 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [19:41, 10:16](1705 MB) -PASS -- TEST 'control_c192_intel' [18:56, 10:13](1775 MB) -PASS -- TEST 'control_c384_intel' [21:39, 12:05](2023 MB) -PASS -- TEST 'control_c384gdas_intel' [19:19, 08:55](1495 MB) -PASS -- TEST 'control_stochy_intel' [10:25, 01:27](662 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:30, 00:53](544 MB) -PASS -- TEST 'control_lndp_intel' [06:24, 01:23](664 MB) -PASS -- TEST 'control_iovr4_intel' [04:22, 02:07](654 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:08](653 MB) -PASS -- TEST 'control_p8_intel' [06:00, 03:57](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [05:58, 03:01](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:56, 03:11](1887 MB) -PASS -- TEST 'control_restart_p8_intel' [03:56, 01:47](1151 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:49, 03:05](1867 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:45](1213 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:04, 03:36](1888 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:15, 03:00](1963 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:38, 05:35](1884 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [07:01, 04:33](1964 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:09, 03:43](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [07:08, 03:48](1893 MB) -PASS -- TEST 'regional_control_intel' [06:32, 04:39](1223 MB) -PASS -- TEST 'regional_restart_intel' [06:30, 03:15](1177 MB) -PASS -- TEST 'regional_decomp_intel' [06:28, 04:57](1213 MB) -PASS -- TEST 'regional_2threads_intel' [04:28, 03:07](1189 MB) -PASS -- TEST 'regional_noquilt_intel' [06:31, 04:33](1545 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:36, 04:44](1221 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:36](1230 MB) -PASS -- TEST 'regional_wofs_intel' [07:36, 05:56](2071 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 08:37] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [32:48, 06:51](1208 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [27:54, 03:44](1380 MB) -PASS -- TEST 'rap_decomp_intel' [32:49, 07:04](1142 MB) -PASS -- TEST 'rap_2threads_intel' [32:01, 06:34](1381 MB) -PASS -- TEST 'rap_restart_intel' [06:05, 03:33](1146 MB) -PASS -- TEST 'rap_sfcdiff_intel' [32:54, 06:37](1228 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [32:54, 07:02](1159 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:15, 05:02](1204 MB) -PASS -- TEST 'hrrr_control_intel' [29:04, 03:32](1107 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:48, 03:35](1037 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [05:48, 03:11](1103 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:38, 02:02](1016 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:06, 06:40](1188 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:21, 08:18](2011 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:21, 07:58](2182 MB) - -PASS -- COMPILE 'csawmg_intel' [10:11, 08:17] -PASS -- TEST 'control_csawmg_intel' [09:28, 06:31](1053 MB) -PASS -- TEST 'control_ras_intel' [06:20, 02:53](839 MB) - -PASS -- COMPILE 'wam_intel' [10:11, 08:03] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 09:58](1660 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 09:02] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:05, 03:42](1903 MB) -PASS -- TEST 'regional_control_faster_intel' [08:32, 05:15](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [16:11, 10:15] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:37, 01:54](1615 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 01:50](1633 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:13](842 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:21, 02:33](834 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:34](1148 MB) -PASS -- TEST 'control_ras_debug_intel' [04:18, 02:49](846 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:23](1691 MB) -PASS -- TEST 'control_debug_p8_intel' [04:36, 02:19](1907 MB) -PASS -- TEST 'regional_debug_intel' [16:33, 14:40](1153 MB) -PASS -- TEST 'rap_control_debug_intel' [06:20, 04:53](1233 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:23, 04:43](1218 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:19, 04:22](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:44](1221 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:53](1226 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:26, 05:01](1310 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:31](1223 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:19, 04:46](1221 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:19, 04:47](1224 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:22, 04:22](1224 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:21, 04:37](1222 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:21, 04:19](1230 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:27](1225 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:22, 04:29](1214 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:25](1221 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 04:29](1238 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:56, 07:08](1227 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 03:47] -PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:11](1038 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 03:54] ( 837 warnings 1 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 08:18] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:49, 03:19](1251 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:53, 05:31](1178 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:05, 02:55](1040 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:36, 05:21](1293 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:40, 02:47](1039 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:40, 03:05](985 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:56, 04:09](1096 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:36, 01:36](953 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:25] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:49, 01:41](1296 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:39, 00:50](1185 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [08:33, 01:03](1143 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:10, 08:28] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:33, 03:47](1083 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:12, 04:05] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:31](1101 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:34](1104 MB) -PASS -- TEST 'conus13km_debug_intel' [14:37, 12:42](1351 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:40, 13:00](1001 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [11:35, 10:07](1248 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:45, 13:01](1423 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 03:59] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:23, 04:24](1170 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 10:46] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:11, 05:24](854 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:24, 05:09](1263 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:18, 06:37](912 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:14, 15:04](959 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:18, 17:35](992 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:58, 05:40](584 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:20, 07:07](605 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [04:48, 02:40](434 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:15, 07:48](544 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:48, 03:58](612 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:49, 03:39](604 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [10:58, 04:53](662 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:27, 01:12](446 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [11:10, 04:32] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:50, 11:44](628 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [16:12, 10:20] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [26:03, 18:55](734 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [25:03, 18:33](832 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [15:12, 10:27] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:44, 11:58](813 MB) - -PASS -- COMPILE 'hafs_all_intel' [14:12, 10:06] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:19, 05:46](924 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:09, 05:47](908 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [21:51, 16:31](1340 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:11, 06:47] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:17, 02:09](1161 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:21](1112 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:16, 02:06](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:17, 02:10](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:10](1018 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:12](1169 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:16, 02:11](1140 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:19, 02:09](1015 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:04, 05:01](1159 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:06, 04:58](1161 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:16, 02:11](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 03:03](2394 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:20, 03:05](2450 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:23] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:17, 05:11](1084 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 06:48] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 03:03](1152 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:11, 00:45] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:32, 00:55](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:53](570 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:25, 00:37](573 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 08:52] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:00, 04:46](2025 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:11, 08:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:01, 08:56](2018 MB) - -PASS -- COMPILE 'atml_intel' [13:11, 08:52] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:13, 05:46](1891 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:13, 05:51](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [10:55, 03:57](1154 MB) - -PASS -- COMPILE 'atml_debug_intel' [10:11, 05:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:12, 05:53](1925 MB) - -PASS -- COMPILE 'atmw_intel' [13:11, 10:02] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:02, 01:43](1931 MB) - -PASS -- COMPILE 'atmaero_intel' [12:11, 09:17] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:58, 03:49](2019 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:06, 04:27](1780 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:53, 04:37](1804 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:11, 04:19] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [21:50, 16:55](4559 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 08:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:29, 09:43](1111 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [19:11, 17:14] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [06:22, 02:21](1156 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [05:11, 03:09] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [09:19, 06:05](1076 MB) - -PASS -- COMPILE 'atm_gnu' [18:11, 11:58] -PASS -- TEST 'control_c48_gnu' [11:51, 07:42](1548 MB) -PASS -- TEST 'control_stochy_gnu' [05:28, 02:24](721 MB) -PASS -- TEST 'control_ras_gnu' [07:29, 04:02](725 MB) -PASS -- TEST 'control_p8_gnu' [09:10, 05:37](1720 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [07:04, 04:08](1718 MB) -PASS -- TEST 'control_flake_gnu' [06:28, 04:41](803 MB) - -PASS -- COMPILE 'rrfs_gnu' [15:11, 11:25] -PASS -- TEST 'rap_control_gnu' [10:58, 08:12](1072 MB) -PASS -- TEST 'rap_decomp_gnu' [10:55, 08:25](1071 MB) -PASS -- TEST 'rap_2threads_gnu' [10:06, 07:18](1109 MB) -PASS -- TEST 'rap_restart_gnu' [09:20, 04:17](876 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [10:02, 07:59](1071 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [11:11, 08:18](1073 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [09:36, 06:06](876 MB) -PASS -- TEST 'hrrr_control_gnu' [07:04, 04:11](1058 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:02, 04:07](1128 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [11:11, 03:43](1024 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [12:03, 04:14](1059 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [06:39, 02:06](874 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:42, 02:07](924 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [15:17, 07:54](1068 MB) - -PASS -- COMPILE 'csawmg_gnu' [09:11, 07:13] -PASS -- TEST 'control_csawmg_gnu' [13:37, 07:47](1056 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [12:11, 05:41] -PASS -- TEST 'control_diag_debug_gnu' [07:43, 01:21](1620 MB) -PASS -- TEST 'regional_debug_gnu' [13:37, 07:56](1112 MB) -PASS -- TEST 'rap_control_debug_gnu' [07:25, 02:17](1088 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [07:28, 02:13](1082 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [06:27, 02:12](1088 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [05:26, 02:12](1084 MB) -PASS -- TEST 'rap_diag_debug_gnu' [06:41, 02:14](1258 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [07:25, 03:23](1085 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [06:32, 02:07](1094 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [06:31, 02:13](1087 MB) -PASS -- TEST 'control_ras_debug_gnu' [04:24, 01:24](721 MB) -PASS -- TEST 'control_stochy_debug_gnu' [04:21, 01:25](721 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:44, 01:22](1715 MB) -PASS -- TEST 'rap_flake_debug_gnu' [05:29, 02:12](1091 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [05:28, 02:16](1093 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [07:06, 03:38](1094 MB) - -PASS -- COMPILE 'wam_debug_gnu' [08:11, 02:18] -PASS -- TEST 'control_wam_debug_gnu' [07:46, 05:38](1553 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [10:11, 04:04] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:00, 08:01](951 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:15, 03:53](941 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [10:02, 06:51](961 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [06:04, 03:28](885 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:54, 04:00](940 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [08:13, 05:43](856 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:44, 02:05](853 MB) -PASS -- TEST 'conus13km_control_gnu' [06:54, 02:41](1256 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:42, 01:07](1164 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:36, 01:35](925 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 08:48] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:49, 04:37](984 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [14:13, 06:53] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [05:20, 02:06](972 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [05:29, 02:10](963 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:52, 05:48](1275 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [09:49, 06:13](944 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [06:49, 03:43](1179 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [07:42, 05:55](1342 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [13:15, 06:52] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:25, 02:08](992 MB) - -PASS -- COMPILE 's2swa_gnu' [20:12, 17:18] - -PASS -- COMPILE 's2s_gnu' [20:12, 17:22] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [20:49, 15:49](2692 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:10, 03:26] - -PASS -- COMPILE 's2sw_pdlib_gnu' [21:14, 19:38] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [44:15, 40:26](2908 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [08:12, 06:42] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [20:27, 15:45](2919 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [16:12, 14:16] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:20, 02:21](772 MB) +* (-r) - USE ROCOTO + +PASS -- COMPILE 's2swa_32bit_intel' [10:53, 10:53] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:43, 14:56](2125 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:16, 17:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [18:40, 17:54](1988 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:27, 18:25](2342 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 10:06](1349 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:10, 19:21](1913 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [16:40, 16:40] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:48, 17:28](1988 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:00, 07:00] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:36, 24:44](1967 MB) + +PASS -- COMPILE 's2swa_intel' [12:32, 12:32] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [16:30, 15:38](2200 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:56, 14:14](2187 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:40, 07:49](1996 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [15:02, 14:14](2236 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:41, 07:46](1736 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:51, 20:09](2467 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:18, 14:35](2190 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:05, 12:21](2101 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [15:08, 14:24](2196 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:11, 15:51](2991 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:39, 08:03](2917 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [21:11, 16:41](3880 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [16:36, 10:07](3704 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:22, 06:53](2105 MB) + +PASS -- COMPILE 's2sw_intel' [12:04, 12:04] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:23, 13:45](2001 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [13:20, 12:38](2105 MB) + +PASS -- COMPILE 's2swa_debug_intel' [07:00, 07:00] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [20:03, 19:16](2229 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:48, 06:48] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:20, 08:39](2045 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:04, 12:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [04:54, 04:11](2071 MB) + +PASS -- COMPILE 's2s_intel' [12:03, 12:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:29, 06:02](3012 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [02:59, 02:32](3021 MB) +PASS -- TEST 'cpld_restart_c48_intel' [01:41, 01:27](2474 MB) + +PASS -- COMPILE 's2swa_faster_intel' [11:49, 11:48] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:17, 15:39](2200 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [16:16, 16:16] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:52, 23:08](2068 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:21, 11:28](1397 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [27:27, 26:42](1996 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:34, 04:34] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:13, 27:31](2005 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:00, 09:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:25, 04:12](712 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:15, 02:58](1594 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:21, 02:57](1592 MB) +PASS -- TEST 'control_latlon_intel' [03:20, 03:00](1590 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:28, 03:01](1595 MB) +PASS -- TEST 'control_c48_intel' [11:09, 10:47](1693 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:23, 06:12](835 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [11:12, 10:55](1707 MB) +PASS -- TEST 'control_c192_intel' [11:29, 10:58](1777 MB) +PASS -- TEST 'control_c384_intel' [14:18, 13:13](2022 MB) +PASS -- TEST 'control_c384gdas_intel' [09:58, 08:29](1502 MB) +PASS -- TEST 'control_stochy_intel' [01:38, 01:27](660 MB) +PASS -- TEST 'control_stochy_restart_intel' [01:25, 01:08](531 MB) +PASS -- TEST 'control_lndp_intel' [01:36, 01:25](662 MB) +PASS -- TEST 'control_iovr4_intel' [02:25, 02:11](654 MB) +PASS -- TEST 'control_iovr5_intel' [02:27, 02:18](651 MB) +PASS -- TEST 'control_p8_intel' [04:03, 03:20](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:26, 02:47](1898 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [03:57, 03:16](1875 MB) +PASS -- TEST 'control_restart_p8_intel' [02:34, 02:02](1149 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:49, 03:16](1874 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [02:33, 01:57](1202 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:01, 03:25](1873 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:49, 04:10](1949 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:22, 05:58](1886 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:22, 03:39](1974 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:38, 02:57](1895 MB) +PASS -- TEST 'merra2_thompson_intel' [03:47, 03:00](1912 MB) +PASS -- TEST 'regional_control_intel' [04:56, 04:42](1231 MB) +PASS -- TEST 'regional_restart_intel' [02:52, 02:40](1179 MB) +PASS -- TEST 'regional_decomp_intel' [05:17, 04:57](1212 MB) +PASS -- TEST 'regional_2threads_intel' [04:52, 04:31](1112 MB) +PASS -- TEST 'regional_noquilt_intel' [06:04, 05:47](1543 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:02, 04:43](1232 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [04:55, 04:39](1234 MB) +PASS -- TEST 'regional_wofs_intel' [06:33, 06:17](2090 MB) + +PASS -- COMPILE 'rrfs_intel' [09:03, 09:03] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [07:21, 06:46](1202 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [03:59, 03:26](1386 MB) +PASS -- TEST 'rap_decomp_intel' [07:40, 07:04](1137 MB) +PASS -- TEST 'rap_2threads_intel' [09:25, 08:46](1219 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 03:39](1134 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:18, 06:45](1214 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:50, 07:14](1134 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:54, 05:15](1202 MB) +PASS -- TEST 'hrrr_control_intel' [04:10, 03:33](1089 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:09, 03:33](1038 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:17, 04:37](1151 MB) +PASS -- TEST 'hrrr_control_restart_intel' [02:16, 02:01](1030 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:08, 06:32](1186 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [08:28, 08:18](2011 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:18, 08:09](2187 MB) + +PASS -- COMPILE 'csawmg_intel' [08:14, 08:14] +PASS -- TEST 'control_csawmg_intel' [05:51, 05:35](1040 MB) +PASS -- TEST 'control_ras_intel' [03:00, 02:54](841 MB) + +PASS -- COMPILE 'wam_intel' [08:24, 08:24] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:22, 10:02](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:19, 09:19] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:09, 02:27](1898 MB) +PASS -- TEST 'regional_control_faster_intel' [04:38, 04:22](1229 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:35, 06:35] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [02:21, 02:03](1622 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [02:26, 01:59](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [02:49, 02:39](846 MB) +PASS -- TEST 'control_lndp_debug_intel' [02:28, 02:22](829 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:13, 03:59](1144 MB) +PASS -- TEST 'control_ras_debug_intel' [02:33, 02:22](857 MB) +PASS -- TEST 'control_diag_debug_intel' [02:41, 02:18](1700 MB) +PASS -- TEST 'control_debug_p8_intel' [03:09, 02:48](1917 MB) +PASS -- TEST 'regional_debug_intel' [15:47, 15:33](1145 MB) +PASS -- TEST 'rap_control_debug_intel' [04:16, 04:09](1217 MB) +PASS -- TEST 'hrrr_control_debug_intel' [04:14, 04:05](1210 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [04:32, 04:13](1231 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [04:19, 04:05](1217 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [04:29, 04:16](1235 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:02, 04:41](1310 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [04:33, 04:22](1235 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [04:35, 04:24](1214 MB) +PASS -- TEST 'rap_lndp_debug_intel' [04:20, 04:10](1226 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [04:26, 04:14](1231 MB) +PASS -- TEST 'rap_noah_debug_intel' [04:23, 04:10](1226 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [04:18, 04:09](1222 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:05, 06:50](1212 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [04:19, 04:10](1212 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [04:34, 04:23](1229 MB) +PASS -- TEST 'rap_flake_debug_intel' [04:29, 04:19](1221 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:51, 07:15](1228 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:20, 04:20] +PASS -- TEST 'control_csawmg_debug_gnu' [02:21, 02:06](1045 MB) + +PASS -- COMPILE 'wam_debug_intel' [03:57, 03:57] ( 837 warnings 1 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [08:34, 08:34] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [03:54, 03:20](1245 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:14, 05:40](1144 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:47, 02:55](1022 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:38, 08:05](1132 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:55, 04:08](1068 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [03:57, 03:11](997 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:03, 04:19](1096 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [02:02, 01:39](962 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:44, 08:43] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [02:07, 01:41](1284 MB) +PASS -- TEST 'conus13km_2threads_intel' [01:20, 00:59](1186 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [01:26, 01:04](1130 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:25, 08:25] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:10, 03:53](1067 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:25, 04:25] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [04:26, 04:19](1095 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:17, 04:07](1101 MB) +PASS -- TEST 'conus13km_debug_intel' [12:23, 12:02](1343 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [12:47, 12:23](998 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [13:18, 12:59](1241 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [12:13, 11:53](1424 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [03:40, 03:40] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [04:35, 04:22](1158 MB) + +PASS -- COMPILE 'hafsw_intel' [10:00, 09:59] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:25, 05:29](851 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:49, 05:39](1257 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:50, 06:48](925 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 14:26](958 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [19:21, 17:58](979 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:40, 05:56](600 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:51, 07:42](605 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 02:57](435 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:22, 08:40](549 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:39, 04:05](606 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:40, 04:04](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:01, 06:16](659 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [01:35, 01:21](450 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [04:10, 04:10] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [12:38, 11:53](639 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [09:52, 09:52] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [18:05, 17:16](714 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:57, 18:06](841 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [10:36, 10:35] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:32, 12:06](810 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:07, 10:07] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:13, 06:18](931 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:05, 06:09](890 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [17:27, 16:55](1340 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:00, 06:00] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [02:17, 02:11](1165 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [01:24, 01:18](1093 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [02:13, 02:07](1019 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [02:15, 02:09](1016 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [02:15, 02:10](1017 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [02:19, 02:14](1159 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:12, 03:04](1119 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [02:26, 02:19](1023 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [05:47, 05:08](1157 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:31, 04:52](1161 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [02:13, 02:09](1155 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [03:08, 03:03](2452 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [03:06, 03:01](2388 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [03:25, 03:25] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:22, 05:17](1062 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [05:14, 05:14] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [02:14, 02:09](1155 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [00:53, 00:53] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [01:19, 01:01](340 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [01:15, 01:01](577 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [00:46, 00:34](573 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [10:04, 10:04] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:39, 04:02](2021 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:38, 09:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:58, 07:22](2026 MB) + +PASS -- COMPILE 'atml_intel' [09:41, 09:40] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [06:46, 06:05](1892 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:47, 07:44](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:26, 03:59](1150 MB) + +PASS -- COMPILE 'atml_debug_intel' [04:55, 04:55] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:42, 05:50](1919 MB) + +PASS -- COMPILE 'atmw_intel' [09:36, 09:36] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [02:47, 02:00](1935 MB) + +PASS -- COMPILE 'atmaero_intel' [09:03, 09:03] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:29, 03:51](2006 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:05, 04:28](1777 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:06, 04:34](1798 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [03:51, 03:51] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [18:58, 17:46](4503 MB) + +PASS -- COMPILE 'atm_fbh_intel' [08:15, 08:15] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [16:07, 15:54](1111 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [10:28, 10:28] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:21, 03:17](1145 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [01:44, 01:44] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [12:03, 11:59](1082 MB) + +PASS -- COMPILE 'atm_gnu' [04:17, 04:17] +PASS -- TEST 'control_c48_gnu' [08:35, 08:13](1522 MB) +PASS -- TEST 'control_stochy_gnu' [02:38, 02:28](719 MB) +PASS -- TEST 'control_ras_gnu' [04:01, 03:51](726 MB) +PASS -- TEST 'control_p8_gnu' [04:54, 04:20](1697 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:56, 06:21](1716 MB) +PASS -- TEST 'control_flake_gnu' [05:03, 04:49](800 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:33, 04:32] +PASS -- TEST 'rap_control_gnu' [09:48, 09:15](1075 MB) +PASS -- TEST 'rap_decomp_gnu' [09:41, 09:09](1073 MB) +PASS -- TEST 'rap_2threads_gnu' [12:02, 11:25](974 MB) +PASS -- TEST 'rap_restart_gnu' [05:34, 04:53](877 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [09:35, 09:00](1070 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [10:03, 09:25](1078 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [07:23, 06:54](878 MB) +PASS -- TEST 'hrrr_control_gnu' [05:31, 04:56](1059 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:20, 04:52](1131 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [05:21, 04:43](1036 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:42, 05:03](1064 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [02:51, 02:36](877 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:02, 02:43](925 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [10:34, 09:52](1069 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:20, 04:20] +PASS -- TEST 'control_csawmg_gnu' [07:23, 07:08](1053 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [05:58, 05:58] +PASS -- TEST 'control_diag_debug_gnu' [01:48, 01:21](1624 MB) +PASS -- TEST 'regional_debug_gnu' [06:53, 06:38](1148 MB) +PASS -- TEST 'rap_control_debug_gnu' [02:09, 02:02](1093 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [02:12, 02:03](1081 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [02:15, 02:08](1087 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [02:18, 02:07](1085 MB) +PASS -- TEST 'rap_diag_debug_gnu' [02:32, 02:17](1259 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [03:38, 03:31](1088 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [02:22, 02:10](1091 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [02:14, 02:07](1084 MB) +PASS -- TEST 'control_ras_debug_gnu' [01:30, 01:18](719 MB) +PASS -- TEST 'control_stochy_debug_gnu' [01:31, 01:23](720 MB) +PASS -- TEST 'control_debug_p8_gnu' [01:52, 01:30](1698 MB) +PASS -- TEST 'rap_flake_debug_gnu' [02:23, 02:11](1091 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [02:15, 02:08](1092 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:02, 03:26](1093 MB) + +PASS -- COMPILE 'wam_debug_gnu' [02:47, 02:47] +PASS -- TEST 'control_wam_debug_gnu' [05:54, 05:30](1557 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 04:11] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [08:16, 07:43](955 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:49, 04:04](943 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [07:44, 07:08](917 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [07:49, 07:02](892 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:18, 05:34](941 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [06:32, 05:51](855 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [02:26, 02:09](852 MB) +PASS -- TEST 'conus13km_control_gnu' [03:02, 02:36](1256 MB) +PASS -- TEST 'conus13km_2threads_gnu' [07:24, 07:05](1106 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [01:51, 01:30](921 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:59, 08:58] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [04:58, 04:36](982 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:06, 06:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [02:05, 01:59](965 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [02:14, 02:04](959 MB) +PASS -- TEST 'conus13km_debug_gnu' [05:50, 05:26](1270 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [06:08, 05:43](946 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [13:12, 12:52](1133 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [05:44, 05:24](1340 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [05:44, 05:44] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [02:18, 02:10](990 MB) + +PASS -- COMPILE 's2swa_gnu' [16:27, 16:27] + +PASS -- COMPILE 's2s_gnu' [18:42, 18:42] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [16:09, 15:24](2712 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:40, 03:40] + +PASS -- COMPILE 's2sw_pdlib_gnu' [16:05, 16:05] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [40:16, 39:36](2901 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:01, 03:01] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [15:38, 14:58](3048 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [15:43, 15:43] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [02:23, 02:18](768 MB) SYNOPSIS: -Starting Date/Time: 20241122 09:00:58 -Ending Date/Time: 20241122 11:53:24 -Total Time: 02h:53m:42s +Starting Date/Time: 20250104 06:57:17 +Ending Date/Time: 20250104 13:07:15 +Total Time: 06h:10m:31s Compiles Completed: 60/60 Tests Completed: 248/248 diff --git a/tests/logs/RegressionTests_jet.log b/tests/logs/RegressionTests_jet.log index 1e918516d5..574acb17b7 100644 --- a/tests/logs/RegressionTests_jet.log +++ b/tests/logs/RegressionTests_jet.log @@ -1,20 +1,20 @@ ====START OF JET REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,329 +38,260 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3069869 +BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_447506 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: h-nems * (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [44:15, 43:06] ( 1 warnings 1396 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:16, 13:28](2005 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [50:15, 49:09] ( 1 warnings 1443 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:09, 22:54](1889 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [26:16, 23:21](2024 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:07, 09:37](1137 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:03, 25:53](1852 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [50:15, 48:16] ( 1 warnings 1440 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [24:47, 22:23](1873 MB) - -PASS -- COMPILE 's2swa_intel' [45:15, 44:05] ( 1 warnings 1415 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [19:10, 17:04](2068 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:24, 17:05](2061 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:22, 08:54](1711 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [19:09, 17:05](2078 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [12:19, 09:00](1733 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [19:04, 16:28](2340 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [20:08, 17:13](2050 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 14:02](1999 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:20, 17:00](2061 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:11, 09:19](2018 MB) - -PASS -- COMPILE 's2sw_intel' [43:15, 41:54] ( 1 warnings 1300 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [12:21, 09:54](1907 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [17:30, 14:06](1982 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:04] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [30:16, 27:31](2086 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:53] ( 1410 warnings 1216 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 11:32](1936 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [38:13, 36:46] ( 1018 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 05:31](1965 MB) - -PASS -- COMPILE 's2s_intel' [39:14, 38:05] ( 1 warnings 1041 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [12:52, 10:17](3019 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:53, 03:02](3010 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:50, 01:45](2462 MB) - -PASS -- COMPILE 's2swa_faster_intel' [34:19, 32:59] ( 1 warnings 1631 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [19:38, 16:23](2057 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [49:14, 47:17] ( 1 warnings 1360 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [36:16, 33:18](1928 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [19:19, 16:25](1144 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [42:21, 39:06](1916 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:11, 05:05] ( 1520 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [41:11, 38:36](1940 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [39:13, 37:38] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_flake_intel' [06:30, 04:23](651 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [06:59, 04:22](1533 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:01, 04:38](1544 MB) -PASS -- TEST 'control_latlon_intel' [06:57, 04:23](1533 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:05, 04:35](1529 MB) -PASS -- TEST 'control_c48_intel' [21:04, 18:10](1707 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:14](833 MB) -FAILED: UNABLE TO COMPLETE COMPARISON -- TEST 'control_c48_lnd_iau_intel' [, ]( MB) -PASS -- TEST 'control_c192_intel' [18:17, 15:53](1684 MB) -PASS -- TEST 'control_c384_intel' [26:08, 23:05](1811 MB) -PASS -- TEST 'control_c384gdas_intel' [18:58, 13:26](1003 MB) -PASS -- TEST 'control_stochy_intel' [04:29, 02:11](605 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:26, 01:14](443 MB) -PASS -- TEST 'control_lndp_intel' [03:29, 02:03](602 MB) -PASS -- TEST 'control_iovr4_intel' [05:30, 03:16](599 MB) -PASS -- TEST 'control_iovr5_intel' [05:29, 03:17](601 MB) -PASS -- TEST 'control_p8_intel' [07:18, 04:54](1828 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:25, 04:08](1839 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:08, 04:50](1833 MB) -PASS -- TEST 'control_restart_p8_intel' [04:51, 02:37](1064 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:12, 04:48](1819 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1078 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:10, 04:59](1815 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:09, 04:42](1911 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:01, 08:45](1828 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:13, 05:17](1896 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:12, 04:08](1854 MB) -PASS -- TEST 'merra2_thompson_intel' [07:05, 04:30](1845 MB) -PASS -- TEST 'regional_control_intel' [09:54, 07:14](1034 MB) -PASS -- TEST 'regional_restart_intel' [05:38, 03:46](1018 MB) -PASS -- TEST 'regional_decomp_intel' [09:34, 07:28](1038 MB) -PASS -- TEST 'regional_2threads_intel' [06:36, 04:24](1033 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:43, 07:05](1037 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:34, 07:00](1044 MB) - -PASS -- COMPILE 'rrfs_intel' [36:14, 34:48] ( 3 warnings 1100 remarks ) -PASS -- TEST 'rap_control_intel' [12:43, 10:12](987 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:13, 05:29](1185 MB) -PASS -- TEST 'rap_decomp_intel' [12:43, 10:47](981 MB) -PASS -- TEST 'rap_2threads_intel' [11:46, 09:43](1070 MB) -PASS -- TEST 'rap_restart_intel' [07:44, 05:13](994 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:44, 10:04](990 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:42, 10:41](980 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:45, 07:31](1004 MB) -PASS -- TEST 'hrrr_control_intel' [07:44, 05:14](989 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:44, 05:20](976 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:47, 04:49](1051 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:28, 02:45](907 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:57, 10:01](984 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:31, 13:10](1936 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:31, 13:03](1936 MB) - -PASS -- COMPILE 'csawmg_intel' [36:13, 35:00] ( 1098 remarks ) -PASS -- TEST 'control_csawmg_intel' [10:42, 08:05](963 MB) -PASS -- TEST 'control_ras_intel' [06:27, 04:20](671 MB) - -PASS -- COMPILE 'wam_intel' [37:14, 35:32] ( 1002 remarks ) -PASS -- TEST 'control_wam_intel' [16:55, 14:16](1622 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [39:13, 37:29] ( 1302 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:54, 03:35](1842 MB) -PASS -- TEST 'regional_control_faster_intel' [08:36, 06:35](1035 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [10:11, 08:25] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:44, 02:58](1568 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:50, 02:58](1562 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:27, 03:59](797 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:36](783 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:41, 05:39](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [05:27, 03:37](786 MB) -PASS -- TEST 'control_diag_debug_intel' [05:47, 03:33](1628 MB) -PASS -- TEST 'control_debug_p8_intel' [05:46, 03:28](1851 MB) -PASS -- TEST 'regional_debug_intel' [24:47, 22:16](1051 MB) -PASS -- TEST 'rap_control_debug_intel' [08:29, 06:21](1158 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:11](1156 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:29, 06:26](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:29, 06:19](1160 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:21](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:40, 06:38](1248 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:29, 06:28](1163 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:29, 06:31](1157 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:26, 06:08](1161 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:25, 06:06](1159 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:25, 06:00](1161 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:23, 06:05](1160 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:24, 09:58](1159 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:26, 06:00](1160 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:28, 06:05](1160 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:25, 06:05](1163 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [12:47, 10:37](1176 MB) - -PASS -- COMPILE 'wam_debug_intel' [07:11, 05:09] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [19:42, 16:32](1652 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [26:12, 24:30] ( 3 warnings 1032 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:03, 05:14](1063 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:35, 08:19](906 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 04:19](872 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [09:42, 07:58](963 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:40, 04:01](903 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:37, 04:36](851 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:35, 06:10](897 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:20](839 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:11] ( 3 warnings 1206 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:38](1103 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:11](1045 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:44, 01:28](1012 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [33:13, 31:23] ( 3 warnings 1052 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:44, 05:22](908 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 05:03] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:26, 06:02](1036 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:27, 05:53](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [19:55, 17:37](1149 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [20:53, 17:41](859 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [12:47, 10:13](1101 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:48, 17:41](1221 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:55] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 06:09](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [42:14, 39:54] ( 1 warnings 1434 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:27, 06:51](697 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:39, 06:10](1080 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:35, 09:10](748 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:32, 15:44](784 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [22:47, 19:08](799 MB) -PASS -- TEST 'gnv1_nested_intel' [09:42, 06:30](1661 MB) - -PASS -- COMPILE 'hafs_all_intel' [38:14, 36:24] ( 1280 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:21, 08:27](753 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:18, 08:24](735 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:08] ( 67 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:35](1074 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:07](1048 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 03:29](931 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:32](933 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:32](943 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:25, 03:36](1075 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:22, 03:36](1072 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:23, 03:29](932 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:14, 07:37](896 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:15, 07:35](849 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:36](1068 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:23, 04:59](2423 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:22, 05:03](2425 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:10, 03:21] ( 2 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:21, 08:08](1029 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:11, 08:10] ( 70 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:29](1058 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:47] ( 68 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:17](242 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:30, 01:04](264 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](260 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [39:13, 37:09] ( 1023 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:10, 04:45](1913 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:13, 36:29] ( 1 warnings 1028 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:06, 10:25](1909 MB) - -PASS -- COMPILE 'atml_intel' [40:14, 38:10] ( 8 warnings 1173 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [09:13, 05:50](1855 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [08:14, 05:44](1853 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1072 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:11, 06:13] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:07, 07:15](1890 MB) - -PASS -- COMPILE 'atmw_intel' [39:13, 37:21] ( 1276 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:55, 02:28](1861 MB) - -PASS -- COMPILE 'atmaero_intel' [38:14, 36:40] ( 1106 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:59, 05:16](1933 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:59, 06:21](1699 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:49, 06:26](1713 MB) - -PASS -- COMPILE 'atm_fbh_intel' [34:14, 31:47] ( 3 warnings 1003 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:36, 15:17](1057 MB) +PASS -- COMPILE 's2swa_32bit_intel' [50:15, 43:47] ( 1 warnings 1397 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:23, 13:37](2022 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [00:20, 53:08] ( 1 warnings 1444 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [34:15, 23:07](1883 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:26, 24:19](1990 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:13, 09:45](1115 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [37:02, 26:12](1854 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [55:16, 48:52] ( 1 warnings 1441 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:53, 22:22](1876 MB) + +PASS -- COMPILE 's2swa_intel' [51:15, 44:09] ( 1 warnings 1416 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [28:22, 17:41](2059 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:32, 16:46](2063 MB) +PASS -- TEST 'cpld_restart_p8_intel' [15:20, 08:54](1712 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [24:16, 17:11](2072 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [11:19, 09:01](1723 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [26:06, 15:50](2257 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [27:03, 17:05](2054 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 14:06](2000 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [27:30, 16:55](2057 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [20:20, 09:14](2018 MB) + +PASS -- COMPILE 's2sw_intel' [49:15, 42:04] ( 1 warnings 1301 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [12:29, 09:50](1904 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [21:40, 14:18](1976 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:16] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [37:20, 27:47](2085 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:11, 05:59] ( 1410 warnings 1216 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [20:00, 11:35](1932 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [47:14, 36:42] ( 1019 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:24, 05:39](1971 MB) + +PASS -- COMPILE 's2s_intel' [45:14, 37:57] ( 1 warnings 1042 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [12:51, 10:22](3017 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:52, 03:06](3013 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:49, 01:45](2451 MB) + +PASS -- COMPILE 's2swa_faster_intel' [39:18, 32:34] ( 1 warnings 1632 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [19:53, 16:20](2063 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [59:15, 51:43] ( 1 warnings 1361 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [49:33, 33:38](1931 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:15, 16:25](1139 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [39:23, 36:55](1912 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:11, 06:03] ( 1520 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [42:18, 38:38](1934 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [39:14, 38:01] ( 1 warnings 1125 remarks ) +PASS -- TEST 'control_flake_intel' [06:30, 04:25](651 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [07:04, 04:13](1539 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [21:10, 04:27](1549 MB) +PASS -- TEST 'control_latlon_intel' [06:59, 04:15](1538 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [21:09, 04:20](1545 MB) +PASS -- TEST 'control_c48_intel' [20:05, 18:06](1703 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [12:37, 10:15](831 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [21:04, 18:05](1706 MB) +PASS -- TEST 'control_c192_intel' [27:21, 15:54](1703 MB) +PASS -- TEST 'control_c384_intel' [30:15, 22:58](1814 MB) +PASS -- TEST 'control_c384gdas_intel' [24:04, 13:16](1007 MB) +PASS -- TEST 'control_stochy_intel' [04:29, 02:10](604 MB) +PASS -- TEST 'control_stochy_restart_intel' [17:28, 01:14](437 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 02:04](601 MB) +PASS -- TEST 'control_iovr4_intel' [05:33, 03:18](601 MB) +PASS -- TEST 'control_iovr5_intel' [05:34, 03:15](598 MB) +PASS -- TEST 'control_p8_intel' [17:24, 04:44](1836 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [21:32, 04:04](1837 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [21:17, 04:47](1827 MB) +PASS -- TEST 'control_restart_p8_intel' [06:56, 02:34](1055 MB) +PASS -- TEST 'control_noqr_p8_intel' [21:18, 04:45](1805 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:57, 02:32](1072 MB) +PASS -- TEST 'control_decomp_p8_intel' [16:23, 04:47](1810 MB) +PASS -- TEST 'control_2threads_p8_intel' [21:12, 04:31](1901 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:08, 08:39](1824 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [22:20, 05:14](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [20:23, 04:01](1852 MB) +PASS -- TEST 'merra2_thompson_intel' [07:18, 04:23](1839 MB) +PASS -- TEST 'regional_control_intel' [10:58, 06:59](1046 MB) +PASS -- TEST 'regional_restart_intel' [13:39, 03:45](1018 MB) +PASS -- TEST 'regional_decomp_intel' [11:56, 07:26](1046 MB) +PASS -- TEST 'regional_2threads_intel' [22:40, 04:12](1003 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [20:45, 07:03](1041 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [24:40, 07:07](1044 MB) + +PASS -- COMPILE 'rrfs_intel' [37:13, 35:33] ( 3 warnings 1100 remarks ) +PASS -- TEST 'rap_control_intel' [12:45, 10:10](983 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [11:12, 05:37](1181 MB) +PASS -- TEST 'rap_decomp_intel' [12:44, 10:43](992 MB) +PASS -- TEST 'rap_2threads_intel' [11:55, 09:27](1056 MB) +PASS -- TEST 'rap_restart_intel' [10:47, 05:23](993 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:54, 10:07](983 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:44, 10:40](980 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [11:57, 07:41](1004 MB) +PASS -- TEST 'hrrr_control_intel' [07:55, 05:12](987 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:55, 05:20](974 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [10:45, 04:40](1049 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:31, 02:53](912 MB) +PASS -- TEST 'rrfs_v1beta_intel' [12:15, 10:02](986 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [15:34, 13:28](1927 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:34, 13:05](1934 MB) + +PASS -- COMPILE 'csawmg_intel' [36:14, 35:00] ( 1099 remarks ) +PASS -- TEST 'control_csawmg_intel' [12:39, 08:08](960 MB) +PASS -- TEST 'control_ras_intel' [07:25, 04:18](668 MB) + +PASS -- COMPILE 'wam_intel' [37:13, 35:34] ( 1003 remarks ) +PASS -- TEST 'control_wam_intel' [18:46, 14:23](1613 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [48:14, 37:41] ( 1303 remarks ) +PASS -- TEST 'control_p8_faster_intel' [05:57, 03:35](1835 MB) +PASS -- TEST 'regional_control_faster_intel' [08:38, 06:34](1036 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 08:04] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:51, 02:54](1566 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:52, 02:59](1565 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:26, 03:52](777 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:26, 03:23](781 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:44, 05:26](1088 MB) +PASS -- TEST 'control_ras_debug_intel' [05:26, 03:25](786 MB) +PASS -- TEST 'control_diag_debug_intel' [08:51, 03:20](1639 MB) +PASS -- TEST 'control_debug_p8_intel' [08:53, 03:17](1856 MB) +PASS -- TEST 'regional_debug_intel' [27:48, 21:57](1041 MB) +PASS -- TEST 'rap_control_debug_intel' [09:28, 06:14](1164 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:28, 06:10](1159 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:28, 06:05](1159 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:28, 06:09](1161 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:29, 06:07](1176 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:39, 06:24](1246 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:29, 06:22](1165 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:29, 06:13](1162 MB) +PASS -- TEST 'rap_lndp_debug_intel' [10:26, 06:10](1166 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:25, 06:18](1163 MB) +PASS -- TEST 'rap_noah_debug_intel' [10:27, 06:07](1162 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:26, 06:06](1167 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:27, 10:03](1172 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:27, 06:00](1168 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:28, 06:07](1166 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:26, 06:06](1163 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:53, 10:40](1167 MB) + +PASS -- COMPILE 'wam_debug_intel' [07:11, 05:14] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [18:59, 16:37](1654 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [32:13, 30:46] ( 3 warnings 1032 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [15:12, 05:21](1064 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:50, 08:14](909 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [14:45, 04:29](870 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:47, 07:56](911 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [14:45, 04:11](908 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [14:45, 04:45](859 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:43, 06:11](904 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:27, 02:19](843 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [34:13, 32:14] ( 3 warnings 1207 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:57, 02:51](1099 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:09](1025 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:29](1012 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [34:13, 31:41] ( 3 warnings 1052 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:51, 05:36](905 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:11, 05:17] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:31, 06:03](1039 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:30, 05:54](1034 MB) +PASS -- TEST 'conus13km_debug_intel' [19:59, 17:47](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [19:59, 17:52](852 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:52, 10:16](1083 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:53, 17:52](1216 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:58] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:26, 06:08](1087 MB) + +PASS -- COMPILE 'hafsw_intel' [41:13, 39:55] ( 1 warnings 1435 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:30, 06:44](694 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:40, 06:19](1084 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [19:46, 09:04](758 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:36, 15:34](791 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [29:55, 18:59](791 MB) +PASS -- TEST 'gnv1_nested_intel' [15:58, 06:01](1665 MB) + +PASS -- COMPILE 'hafs_all_intel' [37:13, 36:08] ( 1281 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [18:19, 08:31](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:22, 08:37](731 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [16:11, 08:19] ( 67 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:23, 03:32](1063 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:21, 02:09](1041 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:24, 03:28](930 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:24, 03:31](938 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:23, 03:34](933 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:24, 03:34](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:24, 03:35](1079 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:24, 03:29](930 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:21, 07:43](897 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:19, 07:33](857 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:20, 03:34](1070 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 05:06](2434 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:23, 05:12](2422 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [10:11, 03:30] ( 2 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:20, 08:05](1028 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [11:11, 08:30] ( 70 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:33](1075 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:41] ( 68 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:36, 01:18](241 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 01:03](276 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:27, 00:44](261 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [38:14, 36:43] ( 1024 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:11, 04:47](1912 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [37:13, 35:49] ( 1 warnings 1029 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [13:16, 10:24](1902 MB) + +PASS -- COMPILE 'atml_intel' [39:13, 37:55] ( 8 warnings 1174 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [08:25, 05:47](1851 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [08:24, 05:46](1852 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:44, 03:14](1063 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:11, 06:32] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [14:18, 07:16](1880 MB) + +PASS -- COMPILE 'atmw_intel' [40:13, 38:18] ( 1277 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:00, 02:32](1847 MB) + +PASS -- COMPILE 'atmaero_intel' [37:13, 36:05] ( 1107 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:07, 05:18](1932 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:06, 06:25](1709 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 06:29](1724 MB) + +PASS -- COMPILE 'atm_fbh_intel' [33:13, 31:15] ( 3 warnings 1003 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:37, 15:13](1058 MB) SYNOPSIS: -Starting Date/Time: 20241122 04:48:32 -Ending Date/Time: 20241122 09:11:56 -Total Time: 04h:23m:55s +Starting Date/Time: 20250103 20:48:00 +Ending Date/Time: 20250104 01:30:22 +Total Time: 04h:43m:02s Compiles Completed: 37/37 -Tests Completed: 165/166 -Failed Tests: -* TEST control_c48_lnd_iau_intel: FAILED: UNABLE TO COMPLETE COMPARISON --- LOG: /mnt/lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/regression-testing/wm/2482/ufs-weather-model/tests/logs/log_jet/run_control_c48_lnd_iau_intel.log - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF JET REGRESSION TESTING LOG==== -====START OF JET REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 - -Submodule hashes used in testing: - 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) - be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --529f870d33b65c3b6c1aa3c3236b94efc3bd336d FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) - 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /lfs5/HFIP/hfv3gfs/role.epic/RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /lfs5/HFIP/h-nems/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2592504 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: h-nems -* (-n) - RUN SINGLE TEST: control_c48_lnd_iau -* (-e) - USE ECFLOW - -PASS -- COMPILE 'atm_dyn32_intel' [42:14, 39:25] ( 1 warnings 1124 remarks ) -PASS -- TEST 'control_c48_lnd_iau_intel' [20:57, 18:04](1706 MB) - -SYNOPSIS: -Starting Date/Time: 20241122 18:05:01 -Ending Date/Time: 20241122 19:09:32 -Total Time: 01h:04m:48s -Compiles Completed: 1/1 -Tests Completed: 1/1 +Tests Completed: 166/166 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index b4c6aa7399..b9c2c7ad6b 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,20 +1,20 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +c4ea32ee15fe4a74e5f5db6f38998068db93a5ab Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,299 +38,298 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /work/noaa/stmp/zshrader/stmp/zshrader/FV3_RT/rt_3922978 +BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_1055346 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:11, 17:56] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [30:44, 27:42](2081 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:05] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:50, 22:15](1948 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:21, 23:27](2132 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:14, 08:57](1238 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:54, 26:19](1862 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:11, 21:45] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:44, 21:59](1934 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 08:48] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [34:44, 30:32](1926 MB) - -PASS -- COMPILE 's2swa_intel' [19:11, 17:38] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [34:48, 27:45](2141 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [33:45, 27:27](2134 MB) -PASS -- TEST 'cpld_restart_p8_intel' [18:48, 14:32](1808 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [34:48, 28:10](2161 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [18:48, 14:31](1699 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [31:52, 25:28](2441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [30:39, 27:51](2127 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [26:34, 23:37](2038 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [30:42, 27:29](2142 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [22:43, 16:10](2717 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:20, 08:58](2705 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:45](3700 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [24:49, 11:35](3512 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:27, 08:08](2074 MB) - -PASS -- COMPILE 's2sw_intel' [18:11, 16:57] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [30:04, 27:27](1962 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [14:20, 12:06](2044 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 08:23] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [26:18, 22:15](2166 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 07:55] ( 1410 warnings 1218 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [15:09, 10:10](1997 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:13, 04:54](2019 MB) - -PASS -- COMPILE 's2s_intel' [16:11, 14:41] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [11:54, 08:36](3032 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [06:54, 03:02](3018 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:58, 02:01](2466 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:13, 17:18] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [32:31, 28:35](2151 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:17] ( 1 warnings 11 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [32:09, 29:28](2000 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [28:30, 14:45](1242 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [47:14, 33:58](1928 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 08:13] ( 1520 warnings 1988 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [39:27, 34:41](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [17:12, 14:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:26, 03:51](678 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:43, 03:35](1572 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:42](1575 MB) -PASS -- TEST 'control_latlon_intel' [05:51, 03:34](1572 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:04, 03:35](1571 MB) -PASS -- TEST 'control_c48_intel' [16:48, 14:45](1700 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [10:35, 08:12](834 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:49, 14:45](1704 MB) -PASS -- TEST 'control_c192_intel' [15:59, 13:15](1743 MB) -PASS -- TEST 'control_c384_intel' [19:58, 16:43](1992 MB) -PASS -- TEST 'control_c384gdas_intel' [13:35, 09:57](1333 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:50](644 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:39, 01:07](473 MB) -PASS -- TEST 'control_lndp_intel' [03:22, 01:44](643 MB) -PASS -- TEST 'control_iovr4_intel' [04:23, 02:48](637 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:43](636 MB) -PASS -- TEST 'control_p8_intel' [07:02, 04:13](1870 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:11, 03:37](1876 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:22, 04:08](1861 MB) -PASS -- TEST 'control_restart_p8_intel' [07:23, 02:24](1094 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:13, 04:09](1862 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:33, 02:24](1135 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:14](1855 MB) -PASS -- TEST 'control_2threads_p8_intel' [07:15, 04:30](1942 MB) -PASS -- TEST 'control_p8_lndp_intel' [13:41, 07:28](1865 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:23, 04:57](1940 MB) -PASS -- TEST 'control_p8_mynn_intel' [10:20, 03:32](1886 MB) -PASS -- TEST 'merra2_thompson_intel' [10:38, 03:55](1886 MB) -PASS -- TEST 'regional_control_intel' [13:51, 06:39](1110 MB) -PASS -- TEST 'regional_restart_intel' [14:42, 03:41](1084 MB) -PASS -- TEST 'regional_decomp_intel' [13:30, 07:03](1100 MB) -PASS -- TEST 'regional_2threads_intel' [11:36, 04:57](1094 MB) -PASS -- TEST 'regional_noquilt_intel' [12:40, 06:33](1412 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [11:49, 06:47](1104 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [11:37, 06:41](1106 MB) -PASS -- TEST 'regional_wofs_intel' [12:46, 08:10](1891 MB) - -PASS -- COMPILE 'rrfs_intel' [16:12, 13:11] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [11:08, 08:32](1056 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:02, 05:19](1265 MB) -PASS -- TEST 'rap_decomp_intel' [11:08, 08:49](1020 MB) -PASS -- TEST 'rap_2threads_intel' [11:08, 08:39](1164 MB) -PASS -- TEST 'rap_restart_intel' [08:42, 04:27](1042 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:07, 08:23](1060 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:07, 08:46](1016 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:51, 06:19](1079 MB) -PASS -- TEST 'hrrr_control_intel' [09:07, 04:23](1022 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:06, 04:27](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:25, 04:13](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:40, 02:25](941 MB) -PASS -- TEST 'rrfs_v1beta_intel' [13:18, 08:20](1048 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:27, 09:56](1979 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:32, 09:39](2011 MB) - -PASS -- COMPILE 'csawmg_intel' [14:12, 12:30] -PASS -- TEST 'control_csawmg_intel' [08:35, 06:39](1014 MB) -PASS -- TEST 'control_ras_intel' [05:20, 03:30](714 MB) - -PASS -- COMPILE 'wam_intel' [14:12, 13:04] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [28:50, 13:28](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [14:12, 12:59] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [19:47, 03:25](1878 MB) -PASS -- TEST 'regional_control_faster_intel' [10:38, 06:21](1103 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:13, 09:42] ( 882 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [17:45, 02:28](1605 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [17:48, 02:19](1602 MB) -PASS -- TEST 'control_stochy_debug_intel' [17:30, 03:06](816 MB) -PASS -- TEST 'control_lndp_debug_intel' [17:25, 02:51](812 MB) -PASS -- TEST 'control_csawmg_debug_intel' [19:35, 05:03](1123 MB) -PASS -- TEST 'control_ras_debug_intel' [17:28, 02:51](821 MB) -PASS -- TEST 'control_diag_debug_intel' [15:59, 02:53](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [20:52, 02:55](1896 MB) -PASS -- TEST 'regional_debug_intel' [34:50, 18:00](1097 MB) -PASS -- TEST 'rap_control_debug_intel' [22:27, 05:17](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [21:27, 05:04](1197 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [21:23, 05:04](1198 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [21:23, 05:17](1201 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [26:30, 05:02](1197 MB) -PASS -- TEST 'rap_diag_debug_intel' [26:35, 05:11](1280 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [25:26, 05:04](1206 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [24:24, 05:05](1204 MB) -PASS -- TEST 'rap_lndp_debug_intel' [23:25, 05:08](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [23:27, 05:00](1196 MB) -PASS -- TEST 'rap_noah_debug_intel' [22:25, 05:07](1192 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [46:31, 04:59](1205 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [47:32, 08:10](1201 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [44:34, 04:49](1200 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [43:33, 05:02](1210 MB) -PASS -- TEST 'rap_flake_debug_intel' [42:33, 05:00](1204 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [44:31, 08:38](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [09:11, 06:43] ( 837 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 13:08](1675 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [39:32, 05:03](1147 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [42:20, 07:15](1000 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [39:47, 03:55](920 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:16, 07:29](1083 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [39:17, 03:43](940 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [38:36, 03:58](893 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:04, 05:25](969 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:46, 02:05](869 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 13:01] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [36:11, 02:34](1166 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:44, 01:15](1107 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:51, 01:30](1064 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:12, 12:39] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [37:58, 04:35](964 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:11, 06:21] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [34:26, 04:47](1082 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [32:26, 04:47](1077 MB) -PASS -- TEST 'conus13km_debug_intel' [40:54, 13:25](1232 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [40:47, 13:48](936 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [34:45, 08:03](1166 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [41:47, 17:06](1286 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:11, 06:58] ( 785 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [30:29, 05:04](1125 MB) - -PASS -- COMPILE 'hafsw_intel' [17:14, 15:32] ( 1 warnings 10 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [29:20, 06:13](734 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [29:31, 06:52](1129 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [33:33, 07:46](818 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [54:43, 28:42](846 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [57:35, 35:07](868 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [33:07, 07:12](498 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:33, 08:39](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [18:59, 03:34](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [15:32, 09:50](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:54, 04:53](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:59, 04:32](529 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:59, 05:50](570 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:31, 01:36](398 MB) -PASS -- TEST 'gnv1_nested_intel' [08:23, 04:22](1714 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:11, 07:17] ( 1462 warnings 1490 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:51, 13:33](576 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [18:13, 15:45] ( 9 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:16, 15:03](657 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:07, 15:14](721 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [18:13, 15:47] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:41, 11:10](669 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:14, 14:21] ( 9 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:15, 07:42](812 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:17, 07:36](799 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:20](1201 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:27] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:58](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:59](1108 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:50](1023 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:54](1015 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:53](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:19, 02:58](1160 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:58](1150 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1021 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:10, 06:35](1014 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:19, 06:28](1002 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:59](1160 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:21](2386 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:18, 04:29](2454 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:10, 05:00] ( 2 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:21, 06:36](1068 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [10:12, 08:42] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:01](1155 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:10, 01:18] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 01:03](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:55](323 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:39](321 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:35] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:31, 00:37](557 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:23](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:11, 14:01] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:08, 04:09](1965 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:11, 13:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [11:03, 08:37](1973 MB) - -PASS -- COMPILE 'atml_intel' [16:11, 14:16] ( 8 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_sbs_intel' [07:38, 04:57](1860 MB) -PASS -- TEST 'control_p8_atmlnd_intel' [07:30, 04:59](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:56, 02:56](1063 MB) - -PASS -- COMPILE 'atml_debug_intel' [09:12, 07:56] ( 880 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:22, 05:56](1899 MB) - -PASS -- COMPILE 'atmw_intel' [15:12, 13:46] ( 9 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:32, 02:18](1906 MB) - -PASS -- COMPILE 'atmaero_intel' [15:11, 13:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:12, 04:52](1957 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:25](1747 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:00, 05:28](1766 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [10:10, 06:28] ( 882 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [25:03, 21:44](4492 MB) - -PASS -- COMPILE 'atm_fbh_intel' [16:13, 12:27] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:30, 13:50](1110 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [10:13, 07:54] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [11:03, 08:14](573 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [07:12, 04:52] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:54](562 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:44] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [31:44, 27:38](2083 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:49] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:39, 22:08](1956 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [27:19, 23:18](2116 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:15, 08:53](1229 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:45, 26:10](1871 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:11] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:46, 21:37](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:11, 08:43] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [34:43, 30:30](1923 MB) + +PASS -- COMPILE 's2swa_intel' [19:11, 17:58] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [33:47, 29:27](2146 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [31:37, 27:47](2140 MB) +PASS -- TEST 'cpld_restart_p8_intel' [19:48, 14:42](1799 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [31:32, 27:24](2162 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [17:51, 14:21](1702 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [24:31, 20:55](2348 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [31:32, 27:49](2139 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [26:32, 23:27](2038 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [31:40, 27:34](2143 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:24, 16:03](2713 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:10, 08:58](2710 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [29:07, 20:12](3718 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [22:08, 10:58](3546 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:22, 07:59](2076 MB) + +PASS -- COMPILE 's2sw_intel' [17:11, 15:57] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [32:07, 27:47](1961 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:16, 11:42](2047 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:11, 07:56] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [26:24, 22:23](2171 MB) + +PASS -- COMPILE 's2sw_debug_intel' [09:11, 08:02] ( 1410 warnings 1218 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [13:10, 10:16](1997 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:11, 14:14] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:13, 04:48](2033 MB) + +PASS -- COMPILE 's2s_intel' [16:11, 14:39] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [10:54, 08:42](3032 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 03:03](3025 MB) +PASS -- TEST 'cpld_restart_c48_intel' [05:03, 01:55](2478 MB) + +PASS -- COMPILE 's2swa_faster_intel' [19:11, 18:00] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [30:31, 28:04](2138 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 19:08] ( 1 warnings 11 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [33:05, 29:09](2010 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:34, 14:31](1263 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [36:17, 33:40](1923 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:11, 07:17] ( 1520 warnings 1988 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:07, 34:38](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 14:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [11:24, 03:46](685 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [08:39, 03:39](1571 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:46, 03:38](1579 MB) +PASS -- TEST 'control_latlon_intel' [05:38, 03:35](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:48, 03:38](1564 MB) +PASS -- TEST 'control_c48_intel' [16:51, 14:43](1707 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [10:33, 08:11](839 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [16:50, 14:45](1698 MB) +PASS -- TEST 'control_c192_intel' [15:55, 13:10](1744 MB) +PASS -- TEST 'control_c384_intel' [20:55, 16:38](1983 MB) +PASS -- TEST 'control_c384gdas_intel' [14:39, 09:55](1336 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:50](637 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:49, 01:03](474 MB) +PASS -- TEST 'control_lndp_intel' [05:21, 01:45](638 MB) +PASS -- TEST 'control_iovr4_intel' [06:30, 02:44](635 MB) +PASS -- TEST 'control_iovr5_intel' [06:29, 02:42](635 MB) +PASS -- TEST 'control_p8_intel' [09:01, 04:10](1860 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:13, 03:32](1881 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:21, 04:03](1865 MB) +PASS -- TEST 'control_restart_p8_intel' [06:19, 02:19](1089 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:20, 04:02](1846 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:23, 02:18](1122 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:12, 04:11](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:14, 05:01](1937 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:39, 07:26](1872 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:28, 04:55](1934 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:22, 03:27](1879 MB) +PASS -- TEST 'merra2_thompson_intel' [07:39, 03:51](1873 MB) +PASS -- TEST 'regional_control_intel' [08:43, 06:31](1107 MB) +PASS -- TEST 'regional_restart_intel' [05:43, 03:38](1092 MB) +PASS -- TEST 'regional_decomp_intel' [08:43, 06:52](1114 MB) +PASS -- TEST 'regional_2threads_intel' [10:42, 04:42](1054 MB) +PASS -- TEST 'regional_noquilt_intel' [12:40, 06:29](1413 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [12:41, 06:27](1104 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [11:35, 06:32](1113 MB) +PASS -- TEST 'regional_wofs_intel' [12:32, 08:00](1892 MB) + +PASS -- COMPILE 'rrfs_intel' [14:11, 12:50] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [12:00, 08:33](1052 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:53, 05:16](1270 MB) +PASS -- TEST 'rap_decomp_intel' [12:00, 08:47](1010 MB) +PASS -- TEST 'rap_2threads_intel' [21:27, 10:10](1085 MB) +PASS -- TEST 'rap_restart_intel' [08:35, 04:26](1036 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:59, 08:26](1055 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:59, 08:47](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [10:42, 06:19](1076 MB) +PASS -- TEST 'hrrr_control_intel' [07:59, 04:22](1019 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:59, 04:28](1009 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [16:19, 05:03](1081 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:39, 02:20](941 MB) +PASS -- TEST 'rrfs_v1beta_intel' [19:22, 08:24](1044 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:28, 09:57](1976 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:24, 09:35](2015 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:13] +PASS -- TEST 'control_csawmg_intel' [08:35, 06:37](1012 MB) +PASS -- TEST 'control_ras_intel' [05:20, 03:29](714 MB) + +PASS -- COMPILE 'wam_intel' [16:11, 14:18] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:45, 12:45](1651 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [15:10, 12:55] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:32, 03:19](1872 MB) +PASS -- TEST 'regional_control_faster_intel' [08:43, 06:19](1116 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:10, 09:16] ( 882 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:47, 02:18](1601 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:51, 02:17](1606 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:23, 03:04](814 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:26, 02:47](816 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:39, 04:24](1131 MB) +PASS -- TEST 'control_ras_debug_intel' [04:28, 02:50](819 MB) +PASS -- TEST 'control_diag_debug_intel' [04:49, 02:48](1674 MB) +PASS -- TEST 'control_debug_p8_intel' [04:44, 02:45](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:36, 17:41](1094 MB) +PASS -- TEST 'rap_control_debug_intel' [06:26, 04:56](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:25, 04:47](1194 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:55](1201 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:56](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 04:59](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:36, 05:16](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1203 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:23, 04:58](1204 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 04:56](1203 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 04:55](1201 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:26, 04:55](1200 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:22, 05:01](1197 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:24, 08:00](1192 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:24, 04:46](1202 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:26, 05:00](1209 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 05:00](1203 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:22, 08:23](1206 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:10, 06:24] ( 837 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:42, 13:23](1675 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:10, 12:24] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:58, 05:06](1153 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:18, 07:13](997 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:43, 03:47](922 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [14:15, 08:40](985 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:48, 04:24](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:39, 03:55](886 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [14:30, 05:25](970 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [11:26, 02:02](873 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:10, 12:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [08:53, 02:34](1163 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:54, 01:10](1113 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [09:50, 01:28](1069 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [16:10, 13:05] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:46, 04:35](968 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:10, 06:16] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:25, 04:53](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:23, 04:48](1078 MB) +PASS -- TEST 'conus13km_debug_intel' [20:54, 13:40](1234 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:51, 14:05](955 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [20:41, 13:28](1167 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [23:51, 13:50](1302 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:10, 05:52] ( 785 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [13:24, 05:00](1127 MB) + +PASS -- COMPILE 'hafsw_intel' [18:11, 15:07] ( 1 warnings 10 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [13:14, 05:57](726 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [14:34, 06:29](1125 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [20:27, 07:27](808 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [38:21, 27:46](834 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [44:28, 34:34](866 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [18:00, 07:08](506 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [21:30, 08:30](501 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:55, 03:31](369 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:18, 09:40](480 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:50, 04:44](524 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [14:52, 04:29](529 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [14:55, 05:40](574 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:36, 01:35](403 MB) +PASS -- TEST 'gnv1_nested_intel' [12:12, 04:17](1718 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:11, 07:01] ( 1462 warnings 1490 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [20:04, 12:55](583 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 14:21] ( 9 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [21:55, 15:15](657 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [22:05, 15:12](724 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 14:40] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [17:26, 11:14](707 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:11, 13:37] ( 9 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [13:16, 07:32](821 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:14, 07:34](796 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:00, 16:21](1204 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [10:11, 08:29] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:19, 03:00](1142 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:56](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:50](1023 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:55](1012 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:55](1020 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 02:59](1162 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 02:59](1156 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:51](1019 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:05, 06:33](1028 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:00, 06:28](1010 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:15, 02:58](1151 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:19](2404 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:24](2394 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [06:11, 04:50] ( 2 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:39](1082 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [09:11, 07:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:58](1151 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:33] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:32, 01:03](256 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:24, 00:55](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:28, 00:35](326 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:49] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:31, 00:37](557 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:21](445 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:11, 13:15] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [10:11, 04:13](1963 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [17:11, 12:58] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [15:04, 08:35](1972 MB) + +PASS -- COMPILE 'atml_intel' [18:11, 14:28] ( 8 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_sbs_intel' [11:30, 04:55](1859 MB) +PASS -- TEST 'control_p8_atmlnd_intel' [10:29, 04:56](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:57, 02:49](1070 MB) + +PASS -- COMPILE 'atml_debug_intel' [10:10, 07:04] ( 880 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:34, 05:48](1889 MB) + +PASS -- COMPILE 'atmw_intel' [16:11, 14:27] ( 9 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:24, 02:18](1910 MB) + +PASS -- COMPILE 'atmaero_intel' [15:11, 13:57] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [10:12, 04:39](1967 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:11, 05:22](1751 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:05, 05:29](1762 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:10, 06:34] ( 882 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [25:04, 20:50](4486 MB) + +PASS -- COMPILE 'atm_fbh_intel' [14:11, 12:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [17:29, 13:50](1106 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:10, 07:50] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:03, 07:52](574 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [08:10, 04:34] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [21:50, 19:30](566 MB) SYNOPSIS: -Starting Date/Time: 20241122 09:01:14 -Ending Date/Time: 20241122 11:36:28 -Total Time: 02h:36m:01s +Starting Date/Time: 20250104 06:57:02 +Ending Date/Time: 20250104 08:58:07 +Total Time: 02h:01m:42s Compiles Completed: 45/45 Tests Completed: 191/191 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index a53c306b3d..a2e57b5444 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,20 +1,20 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -946b7e2833191ab36966b64cff0f15aaddf6ea03 +e7f9b6339a4ffc11272fc5797a59f8c59b1083a7 Submodule hashes used in testing: 37cbb7d6840ae7515a9a8f0dfd4d89461b3396d1 AQM (v0.2.0-37-g37cbb7d) be5d28fd1b60522e6fc98aefeead20e6aac3530b AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-198-gbe5d28fd1) - 1f9eaaa142c8b07ed6b788c9f44ea02cc86d0bae CDEPS-interface/CDEPS (cdeps0.4.17-42-g1f9eaaa) - 5e57a89cf533fe98352bcfd1a464b1d50713274d CICE-interface/CICE (CICE6.0.0-378-g5e57a89) - 05ac0ec3ea666080eed36e67f6cf8ce1255b243f CICE-interface/CICE/icepack (Icepack1.1.0-192-g05ac0ec) - 24e9eed4ffe8138bef635c8f916f91b142595675 CMEPS-interface/CMEPS (cmeps_v0.4.1-2311-g24e9eed) + 2eccb9f74ebd8dfc09b53d15f5a96c847b77c443 CDEPS-interface/CDEPS (cdeps0.4.17-310-g2eccb9f) + ff7fd76118d47ccef6cb934b834161c6be5a9909 CICE-interface/CICE (CICE6.0.0-392-gff7fd76) + 3792520561cf9419082ef41f9f0dffd03edf2e43 CICE-interface/CICE/icepack (Icepack1.1.0-198-g3792520) + b5d1cc189fced4abcb13fc70ed2febb2aef61757 CMEPS-interface/CMEPS (cmeps_v0.4.1-2313-gb5d1cc1) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 915e44e963b804684b872c5545feb9416e742f72 FV3 (remotes/origin/rrfsv1-to-ufs/dev3) - e36e8572e7643d7e59a3979a61bdd83743ff7b00 FV3/atmos_cubed_sphere (201912_public_release-407-ge36e857) - b7d55fd07fa35c5de9b2292596d30784a800b276 FV3/ccpp/framework (2024-07-11-dev-1-gb7d55fd) - 9dffb7e1cd5fceebec065299c791e65e3a30e0c2 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5516-g9dffb7e1) + e1d7f499b8715e001453f00f14a0a6fc42d6da7d FV3 (remotes/origin/rrfsv1-to-ufs/dev8) + 9490871a616604efe9dd75608214081eef557ad6 FV3/atmos_cubed_sphere (201912_public_release-408-g9490871) + 9e1c3abe1048c0f18c53fdbb7113bc56a129bdf5 FV3/ccpp/framework (2024-07-11-dev-2-g9e1c3ab) + fa3f1ce1cbaebd30998ea16a149c2d71a41ccf82 FV3/ccpp/physics (master-tag-before-replacing-with-ipd-setup-step-fast-5537-gfa3f1ce1) 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) ce5f3b146861cf6c95e1c14c640ede1ed97e6eef FV3/upp (upp_v10.2.0-243-gce5f3b14) -179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd @@ -23,11 +23,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 5e0c21f64fa5b20efc8f29f8709766e1e6793a79 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10230-g5e0c21f64) + 8cc8b70f0143e803efb842ed871f9be3062862a4 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10231-g8cc8b70f0) 9423197f894112edfcb1502245f7d7b873d551f9 MOM6-interface/MOM6/pkg/CVMix-src (9423197) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 025043d1ad662fca05f29f88ddd88ddf46c81882 NOAHMP-interface/noahmp (v3.7.1-444-g025043d) - abe1e79e8d4241178e5d31fac1c90b8cef2ee551 WW3 (6.07.1-348-gabe1e79e) + 29063ec7b631d3a967172e8c45c5af13a18e0a82 WW3 (6.07.1-350-g29063ec7) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) fad2fe9f42f6b7f744b128b4a2a9433f91e4296f stochastic_physics (ufs-v2.0.0-219-gfad2fe9) @@ -38,240 +38,240 @@ The first time is for the full script (prep+run+finalize). The second time is specifically for the run phase. Times/Memory will be empty for failed tests. -BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241121 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_232721 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20241230 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3995097 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:17] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:34, 03:12](3085 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [13:28, 12:09] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [14:34, 02:59](1820 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [55:12, 02:59](1855 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [54:48, 02:55](963 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:35, 03:35](1789 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [13:28, 11:59] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [14:33, 02:12](1816 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:18] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [20:45, 03:22](1832 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:35] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:34, 02:28](3121 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:34, 03:10](3114 MB) -PASS -- TEST 'cpld_restart_p8_intel' [56:51, 03:26](3042 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [14:34, 02:38](3137 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [56:52, 02:14](3064 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:34, 02:57](3356 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:34, 02:06](3110 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:35, 02:34](3060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:34, 03:13](3116 MB) -PASS -- TEST 'cpld_bmark_p8_intel' [14:43, 06:43](4114 MB) -PASS -- TEST 'cpld_restart_bmark_p8_intel' [45:50, 05:47](4256 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [14:34, 02:56](3095 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 10:46] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [15:31, 02:07](1816 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [15:31, 02:48](1885 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:22] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:38, 02:57](1873 MB) - -PASS -- COMPILE 's2s_intel' [12:26, 10:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [15:30, 01:52](2862 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [15:30, 01:36](2871 MB) -PASS -- TEST 'cpld_restart_c48_intel' [11:07, 02:09](2281 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:36, 16:13] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [10:28, 03:20](3123 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [13:28, 11:40] ( 1 warnings 9 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [14:34, 02:28](1821 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [45:35, 02:02](1004 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [45:34, 01:53](1800 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:21, 05:14] ( 1500 warnings 1986 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [13:23, 02:31](1853 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:25, 09:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [02:50, 02:20](564 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [00:18, 02:11](1465 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [00:13, 02:04](1461 MB) -PASS -- TEST 'control_latlon_intel' [59:47, 01:57](1470 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [59:43, 02:11](1467 MB) -PASS -- TEST 'control_c48_intel' [59:37, 02:17](1568 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [59:36, 01:48](690 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [59:36, 02:21](1571 MB) -PASS -- TEST 'control_c192_intel' [59:36, 01:57](1586 MB) -PASS -- TEST 'control_c384_intel' [59:26, 03:13](1886 MB) -PASS -- TEST 'control_c384gdas_intel' [59:20, 03:39](1067 MB) -PASS -- TEST 'control_stochy_intel' [58:22, 01:24](522 MB) -PASS -- TEST 'control_stochy_restart_intel' [54:23, 01:56](330 MB) -PASS -- TEST 'control_lndp_intel' [57:40, 01:26](520 MB) -PASS -- TEST 'control_iovr4_intel' [57:39, 01:47](520 MB) -PASS -- TEST 'control_iovr5_intel' [57:34, 01:47](516 MB) -PASS -- TEST 'control_p8_intel' [56:26, 02:20](1750 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [56:22, 03:03](1753 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [56:15, 02:39](1749 MB) -PASS -- TEST 'control_restart_p8_intel' [49:50, 02:41](914 MB) -PASS -- TEST 'control_noqr_p8_intel' [56:15, 02:16](1761 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [49:49, 02:46](923 MB) -PASS -- TEST 'control_decomp_p8_intel' [56:13, 02:08](1746 MB) -PASS -- TEST 'control_2threads_p8_intel' [54:20, 02:29](1842 MB) -PASS -- TEST 'control_p8_lndp_intel' [54:14, 01:53](1764 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [54:04, 02:44](1808 MB) -PASS -- TEST 'control_p8_mynn_intel' [53:47, 02:55](1773 MB) -PASS -- TEST 'merra2_thompson_intel' [53:00, 02:24](1758 MB) -PASS -- TEST 'regional_control_intel' [52:57, 01:56](873 MB) -PASS -- TEST 'regional_restart_intel' [45:11, 01:24](853 MB) -PASS -- TEST 'regional_decomp_intel' [52:22, 01:40](856 MB) -PASS -- TEST 'regional_2threads_intel' [51:58, 01:39](928 MB) -PASS -- TEST 'regional_noquilt_intel' [51:45, 02:11](1200 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [51:12, 02:10](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [50:47, 02:11](877 MB) -PASS -- TEST 'regional_wofs_intel' [49:49, 01:19](1565 MB) - -PASS -- COMPILE 'rrfs_intel' [11:24, 09:11] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [49:37, 02:56](903 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [49:29, 01:53](1058 MB) -PASS -- TEST 'rap_decomp_intel' [48:52, 02:08](906 MB) -PASS -- TEST 'rap_2threads_intel' [47:47, 02:03](989 MB) -PASS -- TEST 'rap_restart_intel' [38:58, 03:14](778 MB) -PASS -- TEST 'rap_sfcdiff_intel' [47:12, 02:57](900 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [46:43, 02:14](899 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [36:43, 02:32](778 MB) -PASS -- TEST 'hrrr_control_intel' [46:32, 02:08](901 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [46:30, 02:01](900 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [46:30, 02:29](975 MB) -PASS -- TEST 'hrrr_control_restart_intel' [40:13, 01:59](733 MB) -PASS -- TEST 'rrfs_v1beta_intel' [46:20, 02:59](897 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [45:43, 01:31](1852 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [45:26, 01:53](1843 MB) - -PASS -- COMPILE 'csawmg_intel' [10:24, 08:21] -PASS -- TEST 'control_csawmg_intel' [05:00, 01:21](855 MB) -PASS -- TEST 'control_ras_intel' [45:23, 01:52](551 MB) - -PASS -- COMPILE 'wam_intel' [10:24, 08:14] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [45:00, 01:25](1547 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:24, 08:26] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [44:35, 02:58](1753 MB) -PASS -- TEST 'regional_control_faster_intel' [44:30, 01:17](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:23, 07:39] ( 867 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:10, 01:40](1493 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:10, 01:46](1492 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:10, 01:43](695 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:10, 02:03](695 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:10, 01:24](999 MB) -PASS -- TEST 'control_ras_debug_intel' [05:10, 02:00](703 MB) -PASS -- TEST 'control_diag_debug_intel' [05:10, 02:12](1556 MB) -PASS -- TEST 'control_debug_p8_intel' [05:10, 02:15](1789 MB) -PASS -- TEST 'regional_debug_intel' [05:09, 01:19](882 MB) -PASS -- TEST 'rap_control_debug_intel' [05:10, 01:38](1078 MB) -PASS -- TEST 'hrrr_control_debug_intel' [43:58, 01:45](1070 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [43:54, 01:38](1075 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [43:54, 01:35](1078 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [43:25, 01:42](1078 MB) -PASS -- TEST 'rap_diag_debug_intel' [43:21, 01:33](1157 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [42:57, 01:29](1077 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [42:10, 01:27](1078 MB) -PASS -- TEST 'rap_lndp_debug_intel' [41:02, 01:43](1077 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [40:52, 01:37](1075 MB) -PASS -- TEST 'rap_noah_debug_intel' [40:25, 01:42](1070 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [40:24, 01:36](1075 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [40:13, 01:28](1072 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [40:13, 02:34](1069 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [39:51, 02:34](1073 MB) -PASS -- TEST 'rap_flake_debug_intel' [38:46, 02:34](1078 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [38:37, 02:50](1078 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 04:26] ( 823 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [08:14, 02:04](1572 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 08:07] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [37:56, 02:06](935 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [37:40, 02:50](777 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [36:34, 03:25](777 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [36:19, 01:56](840 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [36:19, 03:19](825 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [36:18, 03:47](776 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [28:22, 02:32](683 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [29:29, 02:19](663 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:23, 08:13] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [35:53, 01:59](988 MB) -PASS -- TEST 'conus13km_2threads_intel' [30:49, 01:52](989 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [30:40, 01:41](863 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:24, 08:15] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [35:46, 02:17](804 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:20, 04:44] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [35:42, 01:53](954 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [35:38, 01:59](953 MB) -PASS -- TEST 'conus13km_debug_intel' [35:17, 01:35](1041 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [34:37, 01:32](710 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [34:33, 01:40](1043 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [33:59, 01:30](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 04:29] ( 771 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [33:40, 01:47](981 MB) - -PASS -- COMPILE 'hafsw_intel' [11:31, 10:01] ( 1 warnings 9 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [33:18, 03:00](596 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [33:16, 01:37](958 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [32:55, 02:37](647 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:54, 02:43](669 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [31:40, 02:49](690 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [31:25, 02:08](379 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [31:15, 03:11](389 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [30:52, 02:29](454 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:15, 03:16](370 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [29:36, 02:21](402 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [29:35, 02:02](401 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [29:32, 02:41](472 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [28:52, 02:22](436 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:19, 04:47] ( 1444 warnings 1489 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [28:34, 02:19](502 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:26, 09:43] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:25, 02:01](511 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [28:20, 01:59](698 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:26, 09:36] ( 8 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [28:12, 02:17](706 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:31, 09:16] ( 8 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [27:55, 02:58](638 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [26:51, 02:59](612 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [26:48, 01:35](878 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:30, 10:07] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [25:59, 01:42](1825 MB) - -PASS -- COMPILE 'atml_intel' [11:31, 09:38] ( 8 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [07:24, 05:26] ( 866 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [10:27, 08:42] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [25:58, 02:20](3015 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [24:55, 02:56](2894 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [24:47, 02:42](2900 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:22, 04:22] ( 868 warnings 6 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [24:16, 03:07](4371 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:34] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [15:39, 11:25](3195 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:39, 22:17] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:33, 16:23](1909 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:05, 17:13](1946 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:46, 08:08](1069 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:30, 18:50](1886 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [23:39, 21:48] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:28, 15:49](1908 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:27] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [33:53, 28:29](1951 MB) + +PASS -- COMPILE 's2swa_intel' [18:33, 17:01] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [18:12, 14:43](3227 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:33, 14:46](3225 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:33, 08:12](3152 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:08, 14:49](3244 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:38, 08:15](3171 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [34:48, 30:23](3445 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:49, 14:34](3221 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [16:18, 12:05](3166 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:32, 14:56](3228 MB) +PASS -- TEST 'cpld_bmark_p8_intel' [30:08, 20:30](4233 MB) +PASS -- TEST 'cpld_restart_bmark_p8_intel' [26:04, 13:09](4376 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:08, 08:41](3199 MB) + +PASS -- COMPILE 's2sw_intel' [12:28, 10:53] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [11:45, 08:01](1921 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [16:17, 12:50](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:28, 10:18] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:07, 05:05](1969 MB) + +PASS -- COMPILE 's2s_intel' [13:29, 11:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:40, 06:20](2884 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:36, 02:23](2890 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:59, 01:35](2307 MB) + +PASS -- COMPILE 's2swa_faster_intel' [35:54, 34:19] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:47, 14:28](3231 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:42, 22:56] ( 1 warnings 9 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [30:40, 26:17](1920 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [17:44, 13:30](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [34:26, 30:51](1898 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:24, 08:41] ( 1500 warnings 1986 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [33:05, 30:15](1971 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [23:46, 22:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:39, 04:08](664 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [06:10, 03:25](1562 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [06:13, 03:36](1574 MB) +PASS -- TEST 'control_latlon_intel' [06:02, 03:16](1567 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [06:16, 03:24](1565 MB) +PASS -- TEST 'control_c48_intel' [13:34, 10:38](1587 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:04, 06:00](709 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:34, 10:26](1587 MB) +PASS -- TEST 'control_c192_intel' [14:40, 11:37](1687 MB) +PASS -- TEST 'control_c384_intel' [18:57, 14:23](1974 MB) +PASS -- TEST 'control_c384gdas_intel' [14:48, 09:37](1167 MB) +PASS -- TEST 'control_stochy_intel' [04:34, 02:02](618 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:35, 01:14](424 MB) +PASS -- TEST 'control_lndp_intel' [04:37, 02:01](616 MB) +PASS -- TEST 'control_iovr4_intel' [04:43, 02:45](614 MB) +PASS -- TEST 'control_iovr5_intel' [05:41, 02:56](613 MB) +PASS -- TEST 'control_p8_intel' [08:25, 04:04](1864 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:38, 03:28](1858 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [08:13, 04:06](1863 MB) +PASS -- TEST 'control_restart_p8_intel' [05:57, 02:28](997 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:40, 04:05](1847 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:43, 02:20](1023 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:28, 04:10](1859 MB) +PASS -- TEST 'control_2threads_p8_intel' [12:30, 08:05](1926 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:01, 06:52](1864 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:16, 04:38](1912 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:58, 03:32](1861 MB) +PASS -- TEST 'merra2_thompson_intel' [08:44, 03:57](1857 MB) +PASS -- TEST 'regional_control_intel' [08:01, 05:36](892 MB) +PASS -- TEST 'regional_restart_intel' [05:58, 03:42](877 MB) +PASS -- TEST 'regional_decomp_intel' [07:56, 05:52](896 MB) +PASS -- TEST 'regional_2threads_intel' [11:00, 08:17](1022 MB) +PASS -- TEST 'regional_noquilt_intel' [08:11, 05:38](1220 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:14, 05:34](894 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 05:30](894 MB) +PASS -- TEST 'regional_wofs_intel' [09:02, 07:00](1582 MB) + +PASS -- COMPILE 'rrfs_intel' [24:42, 23:21] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:27, 07:30](1001 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:23, 04:43](1155 MB) +PASS -- TEST 'rap_decomp_intel' [11:18, 07:47](1006 MB) +PASS -- TEST 'rap_2threads_intel' [19:28, 16:05](1078 MB) +PASS -- TEST 'rap_restart_intel' [08:18, 03:55](879 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:17](1000 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:29, 07:34](1001 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:26, 05:42](885 MB) +PASS -- TEST 'hrrr_control_intel' [08:30, 03:58](997 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [08:22, 04:20](994 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:33, 08:10](1066 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:20](831 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:30, 07:26](995 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 09:46](1957 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:45, 09:27](1948 MB) + +PASS -- COMPILE 'csawmg_intel' [21:36, 20:13] +PASS -- TEST 'control_csawmg_intel' [10:04, 07:20](955 MB) +PASS -- TEST 'control_ras_intel' [05:38, 03:41](652 MB) + +PASS -- COMPILE 'wam_intel' [16:34, 14:19] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:14, 12:17](1643 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [20:36, 18:36] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:44, 03:20](1858 MB) +PASS -- TEST 'regional_control_faster_intel' [08:01, 05:22](895 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [34:53, 32:38] ( 867 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:06, 02:47](1599 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:12, 02:52](1607 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:32, 03:33](800 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:36, 03:21](802 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:57, 05:08](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:34, 03:31](810 MB) +PASS -- TEST 'control_diag_debug_intel' [06:03, 03:22](1662 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:18](1892 MB) +PASS -- TEST 'regional_debug_intel' [21:15, 18:34](919 MB) +PASS -- TEST 'rap_control_debug_intel' [07:39, 05:44](1189 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:42, 05:34](1185 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:38, 05:48](1183 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:36, 05:53](1187 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:34, 05:44](1189 MB) +PASS -- TEST 'rap_diag_debug_intel' [08:50, 06:07](1269 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:37, 05:58](1186 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:35, 05:42](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:38, 05:41](1190 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:47](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:38, 05:44](1181 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:36, 05:39](1188 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:42, 09:08](1184 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:36, 05:39](1180 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:38, 05:36](1186 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:37, 05:37](1191 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [13:46, 09:29](1186 MB) + +PASS -- COMPILE 'wam_debug_intel' [12:27, 10:37] ( 823 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:22, 14:27](1682 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:42, 23:01] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:23, 04:25](1028 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 06:16](881 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:49, 03:33](878 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:28, 13:54](932 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:31, 07:09](923 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:28, 03:42](873 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:39, 04:34](791 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:47, 02:09](760 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [25:43, 23:42] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:20, 02:22](1080 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:16, 02:09](1068 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:15, 01:32](958 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [20:38, 19:13] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:07, 04:17](898 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [10:24, 09:04] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:39, 05:32](1063 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:35, 05:31](1060 MB) +PASS -- TEST 'conus13km_debug_intel' [18:20, 15:08](1152 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [18:16, 15:27](855 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:24, 23:23](1136 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [17:22, 15:04](1219 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [14:30, 12:57] ( 771 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:40, 05:33](1090 MB) + +PASS -- COMPILE 'hafsw_intel' [17:32, 15:35] ( 1 warnings 9 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [09:47, 06:36](684 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:48, 08:01](1054 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:08, 08:03](742 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:56, 13:25](769 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:21, 14:35](788 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:19, 06:02](463 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:54, 07:40](483 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:28, 03:19](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:11, 09:04](437 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:27](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:25, 04:11](499 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:21, 05:27](562 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:44, 02:02](409 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [15:32, 13:28] ( 1444 warnings 1489 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:26, 14:49](614 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:34, 17:53] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:28, 08:33](605 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:35, 08:45](791 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 12:21] ( 8 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [10:57, 07:12](784 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:30, 13:22] ( 8 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:48, 07:48](734 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:46, 07:59](717 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:47, 16:11](903 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:31, 16:05] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:03, 04:12](1913 MB) + +PASS -- COMPILE 'atml_intel' [15:30, 13:54] ( 8 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [08:22, 06:59] ( 866 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [11:28, 09:34] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:30, 04:45](3115 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:19, 05:22](2997 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:55, 05:31](3005 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [09:25, 07:27] ( 868 warnings 6 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [28:02, 23:20](4497 MB) SYNOPSIS: -Starting Date/Time: 20241122 13:31:38 -Ending Date/Time: 20241122 15:04:37 -Total Time: 01h:33m:40s +Starting Date/Time: 20250106 15:24:45 +Ending Date/Time: 20250106 17:23:45 +Total Time: 02h:00m:00s Compiles Completed: 33/33 Tests Completed: 157/157 diff --git a/tests/module-setup.sh b/tests/module-setup.sh index 5bbba3e465..d39bbeb95c 100755 --- a/tests/module-setup.sh +++ b/tests/module-setup.sh @@ -65,7 +65,7 @@ elif [[ ${MACHINE_ID} = frontera ]] ; then fi module purge -elif [[ ${MACHINE_ID} = gaea ]] ; then +elif [[ ${MACHINE_ID} = gaeac5 ]] ; then # We are on GAEA if ( ! eval module help > /dev/null 2>&1 ) ; then # We cannot simply load the module command. The GAEA @@ -76,7 +76,12 @@ elif [[ ${MACHINE_ID} = gaea ]] ; then source /etc/profile fi module reset - +elif [[ ${MACHINE_ID} = gaeac6 ]]; then + if ( ! eval module help > /dev/null 2>&1 ) ; then + source /opt/cray/pe/lmod/lmod/init/bash + fi + module reset + elif [[ ${MACHINE_ID} = expanse ]]; then # We are on SDSC Expanse if ( ! eval module help > /dev/null 2>&1 ) ; then diff --git a/tests/parm/datm_cdeps_configure.IN b/tests/parm/datm_cdeps_configure.IN index 1b38eb9a5f..3d159eb5b7 100644 --- a/tests/parm/datm_cdeps_configure.IN +++ b/tests/parm/datm_cdeps_configure.IN @@ -7,3 +7,4 @@ start_second: 0 nhours_fcst: @[FHMAX] dt_atmos: @[DT_ATMOS] fhrot: @[FHROT] +restart_fh: @[RESTART_FH] diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index aeb1c11b2e..77f3c513ae 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -251,15 +251,15 @@ ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] -@[HIDE_NEST] lcnorm = @[LCNORM] -@[HIDE_SPPT] pert_mp = @[PERT_MP] -@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] -@[HIDE_SPPT] pert_clds = @[PERT_CLDS] -@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] -@[HIDE_IAU] iau_drymassfixer = .false. -@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] + lndp_type = @[LNDP_TYPE] + n_var_lndp = @[N_VAR_LNDP] + lcnorm = @[LCNORM] + pert_mp = @[PERT_MP] + pert_radtend = @[PERT_RADTEND] + pert_clds = @[PERT_CLDS] + iau_inc_files= @[IAU_INC_FILES] + iau_drymassfixer = .false. + iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &cires_ugwp_nml @@ -391,43 +391,43 @@ / &nam_stochy -@[HIDE_SKEB] skeb = @[SKEB] -@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] -@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] -@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] -@[HIDE_SKEB] skebnorm = @[SKEBNORM] -@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] -@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] -@[HIDE_SHUM] shum = @[SHUM] -@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] -@[HIDE_SHUM] shum_tau = @[SHUM_TAU] -@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] -@[HIDE_SPPT] sppt = @[SPPT] -@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] -@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] -@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] -@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] -@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] -@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] -@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] -@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] -@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] -@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] -@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] -@[HIDE_EPBL] EPBL = @[EPBL] -@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] -@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] -@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] + skeb = @[SKEB] + iseed_skeb = @[ISEED_SKEB] + skeb_tau = @[SKEB_TAU] + skeb_lscale = @[SKEB_LSCALE] + skebnorm = @[SKEBNORM] + skeb_npass = @[SKEB_NPASS] + skeb_vdof = @[SKEB_VDOF] + shum = @[SHUM] + iseed_shum = @[ISEED_SHUM] + shum_tau = @[SHUM_TAU] + shum_lscale = @[SHUM_LSCALE] + sppt = @[SPPT] + iseed_sppt = @[ISEED_SPPT] + sppt_tau = @[SPPT_TAU] + sppt_lscale = @[SPPT_LSCALE] + sppt_logit = @[SPPT_LOGIT] + sppt_sfclimit = @[SPPT_SFCLIMIT] + use_zmtnblck = @[USE_ZMTNBLCK] + pbl_taper = @[PBL_TAPER] + OCNSPPT = @[OCNSPPT] + OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] + OCNSPPT_TAU = @[OCNSPPT_TAU] + ISEED_OCNSPPT =@[ISEED_OCNSPPT] + EPBL = @[EPBL] + EPBL_LSCALE = @[EPBL_LSCALE] + EPBL_TAU = @[EPBL_TAU] + ISEED_EPBL = @[ISEED_EPBL] / &nam_sfcperts -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] -@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] -@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] -@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] -@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] -@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml diff --git a/tests/parm/global_control_lnd_iau.nml.IN b/tests/parm/global_control_lnd_iau.nml.IN index 170230dc63..c781e0d6b3 100644 --- a/tests/parm/global_control_lnd_iau.nml.IN +++ b/tests/parm/global_control_lnd_iau.nml.IN @@ -251,15 +251,6 @@ ca_trigger = @[CA_TRIGGER] nspinup = @[NSPINUP] iseed_ca = @[ISEED_CA] -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] n_var_lndp = @[N_VAR_LNDP] -@[HIDE_NEST] lcnorm = @[LCNORM] -@[HIDE_SPPT] pert_mp = @[PERT_MP] -@[HIDE_SPPT] pert_radtend = @[PERT_RADTEND] -@[HIDE_SPPT] pert_clds = @[PERT_CLDS] -@[HIDE_IAU] iau_inc_files= @[IAU_INC_FILES] -@[HIDE_IAU] iau_drymassfixer = .false. -@[HIDE_IAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &land_iau_nml @@ -403,44 +394,14 @@ grid_file = 'INPUT/grid_spec.nc' / -&nam_stochy -@[HIDE_SKEB] skeb = @[SKEB] -@[HIDE_SKEB] iseed_skeb = @[ISEED_SKEB] -@[HIDE_SKEB] skeb_tau = @[SKEB_TAU] -@[HIDE_SKEB] skeb_lscale = @[SKEB_LSCALE] -@[HIDE_SKEB] skebnorm = @[SKEBNORM] -@[HIDE_SKEB] skeb_npass = @[SKEB_NPASS] -@[HIDE_SKEB] skeb_vdof = @[SKEB_VDOF] -@[HIDE_SHUM] shum = @[SHUM] -@[HIDE_SHUM] iseed_shum = @[ISEED_SHUM] -@[HIDE_SHUM] shum_tau = @[SHUM_TAU] -@[HIDE_SHUM] shum_lscale = @[SHUM_LSCALE] -@[HIDE_SPPT] sppt = @[SPPT] -@[HIDE_SPPT] iseed_sppt = @[ISEED_SPPT] -@[HIDE_SPPT] sppt_tau = @[SPPT_TAU] -@[HIDE_SPPT] sppt_lscale = @[SPPT_LSCALE] -@[HIDE_SPPT] sppt_logit = @[SPPT_LOGIT] -@[HIDE_SPPT] sppt_sfclimit = @[SPPT_SFCLIMIT] -@[HIDE_SPPT] use_zmtnblck = @[USE_ZMTNBLCK] -@[HIDE_SPPT] pbl_taper = @[PBL_TAPER] -@[HIDE_OCNSPPT] OCNSPPT = @[OCNSPPT] -@[HIDE_OCNSPPT] OCNSPPT_LSCALE = @[OCNSPPT_LSCALE] -@[HIDE_OCNSPPT] OCNSPPT_TAU = @[OCNSPPT_TAU] -@[HIDE_OCNSPPT] ISEED_OCNSPPT =@[ISEED_OCNSPPT] -@[HIDE_EPBL] EPBL = @[EPBL] -@[HIDE_EPBL] EPBL_LSCALE = @[EPBL_LSCALE] -@[HIDE_EPBL] EPBL_TAU = @[EPBL_TAU] -@[HIDE_EPBL] ISEED_EPBL = @[ISEED_EPBL] -/ - &nam_sfcperts -@[HIDE_LAND_PERT] lndp_type = @[LNDP_TYPE] -@[HIDE_LAND_PERT] lndp_model_type = @[LNDP_MODEL_TYPE] -@[HIDE_LAND_PERT] LNDP_TAU=@[LNDP_TAU] -@[HIDE_LAND_PERT] LNDP_LSCALE=@[LNDP_LSCALE] -@[HIDE_LAND_PERT] ISEED_LNDP=@[ISEED_LNDP] -@[HIDE_LAND_PERT] lndp_var_list = @[LNDP_VAR_LIST] -@[HIDE_LAND_PERT] lndp_prt_list = @[LNDP_PRT_LIST] + lndp_type = @[LNDP_TYPE] + lndp_model_type = @[LNDP_MODEL_TYPE] + LNDP_TAU=@[LNDP_TAU] + LNDP_LSCALE=@[LNDP_LSCALE] + ISEED_LNDP=@[ISEED_LNDP] + lndp_var_list = @[LNDP_VAR_LIST] + lndp_prt_list = @[LNDP_PRT_LIST] / &MOM_input_nml diff --git a/tests/parm/ice_in.IN b/tests/parm/ice_in.IN index 6203e69a89..3afec47ce9 100644 --- a/tests/parm/ice_in.IN +++ b/tests/parm/ice_in.IN @@ -50,6 +50,7 @@ histfreq = 'm','d','h','1','x' histfreq_n = @[CICE_HISTFREQ_N] hist_avg = @[CICE_HIST_AVG] + hist_suffix = @[CICE_hist_suffix] history_dir = '@[CICE_HISTORY_DIR]' history_file = 'iceh' write_ic = .true. diff --git a/tests/parm/model_configure.IN b/tests/parm/model_configure.IN index a112bc0a01..cb7637225a 100644 --- a/tests/parm/model_configure.IN +++ b/tests/parm/model_configure.IN @@ -9,6 +9,7 @@ fhrot: @[FHROT] dt_atmos: @[DT_ATMOS] restart_interval: @[RESTART_INTERVAL] +restart_fh: @[RESTART_FH] quilting: @[QUILTING] quilting_restart: @[QUILTING_RESTART] diff --git a/tests/parm/params_grib2_tbl_new b/tests/parm/params_grib2_tbl_new old mode 100755 new mode 100644 diff --git a/tests/parm/rrfs_conus13km_hrrr.nml.IN b/tests/parm/rrfs_conus13km_hrrr.nml.IN index b582d1d357..be6cf3d6fb 100644 --- a/tests/parm/rrfs_conus13km_hrrr.nml.IN +++ b/tests/parm/rrfs_conus13km_hrrr.nml.IN @@ -115,7 +115,6 @@ regional = .true. regional_bcs_from_gsi = .false. res_latlon_dynamics = @[RES_LATLON_DYNAMICS] - increment_file_on_native_grid = @[INCREMENT_FILE_ON_NATIVE_GRID] reset_eta = .false. rf_cutoff = 20000.0 sg_cutoff = 10000.0 @@ -150,7 +149,7 @@ dust_opt = 5 drydep_opt = 1 coarsepm_settling = 1 - smoke_forecast = @[SMOKE_FORECAST] + hwp_method = @[SMOKE_FORECAST] aero_ind_fdb = .false. aero_dir_fdb = .false. addsmoke_flag = 1 diff --git a/tests/parm/ufs.configure.atm.IN b/tests/parm/ufs.configure.atm.IN index 3b6a305247..44dd5667b8 100644 --- a/tests/parm/ufs.configure.atm.IN +++ b/tests/parm/ufs.configure.atm.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM @@ -15,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 Diagnostic = 0 diff --git a/tests/parm/ufs.configure.atm_esmf.IN b/tests/parm/ufs.configure.atm_esmf.IN deleted file mode 100644 index 8eb7b94dc7..0000000000 --- a/tests/parm/ufs.configure.atm_esmf.IN +++ /dev/null @@ -1,27 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM -EARTH_attributes:: - Verbosity = 0 -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - Diagnostic = 0 -:: - -# Run Sequence # -runSeq:: - ATM -:: diff --git a/tests/parm/ufs.configure.atm_lm4.IN b/tests/parm/ufs.configure.atm_lm4.IN index 16bc68285d..2eaa5111c7 100644 --- a/tests/parm/ufs.configure.atm_lm4.IN +++ b/tests/parm/ufs.configure.atm_lm4.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM LND diff --git a/tests/parm/ufs.configure.atm_lnd.IN b/tests/parm/ufs.configure.atm_lnd.IN index 4210c3bf0f..6a01acf8cf 100644 --- a/tests/parm/ufs.configure.atm_lnd.IN +++ b/tests/parm/ufs.configure.atm_lnd.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM LND diff --git a/tests/parm/ufs.configure.atmaero.IN b/tests/parm/ufs.configure.atmaero.IN index 6c60333e07..a23b750941 100644 --- a/tests/parm/ufs.configure.atmaero.IN +++ b/tests/parm/ufs.configure.atmaero.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM CHM @@ -15,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 :: @@ -22,6 +23,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.atmaero_esmf.IN b/tests/parm/ufs.configure.atmaero_esmf.IN deleted file mode 100644 index 0c20f20905..0000000000 --- a/tests/parm/ufs.configure.atmaero_esmf.IN +++ /dev/null @@ -1,40 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM CHM -EARTH_attributes:: - Verbosity = 0 -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# Run Sequence # -runSeq:: - @@[coupling_interval_sec] - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - @ -:: diff --git a/tests/parm/ufs.configure.atmaq.IN b/tests/parm/ufs.configure.atmaq.IN index 7c725ec158..bd7d712e98 100644 --- a/tests/parm/ufs.configure.atmaq.IN +++ b/tests/parm/ufs.configure.atmaq.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM AQM diff --git a/tests/parm/ufs.configure.atmw.IN b/tests/parm/ufs.configure.atmw.IN index 3d9caa18e7..7a5b142ee3 100644 --- a/tests/parm/ufs.configure.atmw.IN +++ b/tests/parm/ufs.configure.atmw.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM WAV diff --git a/tests/parm/ufs.configure.blocked_atm_wav.IN b/tests/parm/ufs.configure.blocked_atm_wav.IN index b0354b287c..8ee55464bd 100644 --- a/tests/parm/ufs.configure.blocked_atm_wav.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV diff --git a/tests/parm/ufs.configure.blocked_atm_wav_2way.IN b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN index d66d77eede..7b502f567e 100644 --- a/tests/parm/ufs.configure.blocked_atm_wav_2way.IN +++ b/tests/parm/ufs.configure.blocked_atm_wav_2way.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV diff --git a/tests/parm/ufs.configure.cpld_atm_fbh.IN b/tests/parm/ufs.configure.cpld_atm_fbh.IN index 6b586d6585..60d464c9e0 100644 --- a/tests/parm/ufs.configure.cpld_atm_fbh.IN +++ b/tests/parm/ufs.configure.cpld_atm_fbh.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM FBH diff --git a/tests/parm/ufs.configure.datm_cdeps.IN b/tests/parm/ufs.configure.datm_cdeps.IN index afaa2f98cf..01e016fce4 100644 --- a/tests/parm/ufs.configure.datm_cdeps.IN +++ b/tests/parm/ufs.configure.datm_cdeps.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE diff --git a/tests/parm/ufs.configure.hafs_atm.IN b/tests/parm/ufs.configure.hafs_atm.IN index 2d4ab6996b..3f98d6d693 100644 --- a/tests/parm/ufs.configure.hafs_atm.IN +++ b/tests/parm/ufs.configure.hafs_atm.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM diff --git a/tests/parm/ufs.configure.hafs_atm_docn.IN b/tests/parm/ufs.configure.hafs_atm_docn.IN index 09e469b5b9..2a65426232 100644 --- a/tests/parm/ufs.configure.hafs_atm_docn.IN +++ b/tests/parm/ufs.configure.hafs_atm_docn.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/ufs.configure.hafs_atm_ocn.IN b/tests/parm/ufs.configure.hafs_atm_ocn.IN index 91dd787e69..89f67b57a2 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN index 9b089d556a..62d28b351f 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN index 47f36bad1f..b289a36b4d 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_inline.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN index 81930e3209..eb023c2570 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN WAV diff --git a/tests/parm/ufs.configure.hafs_atm_wav.IN b/tests/parm/ufs.configure.hafs_atm_wav.IN index bd0192db36..4d0a38511f 100644 --- a/tests/parm/ufs.configure.hafs_atm_wav.IN +++ b/tests/parm/ufs.configure.hafs_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI_ON -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM WAV diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav.IN b/tests/parm/ufs.configure.leapfrog_atm_wav.IN index fe33f5da9f..89079607af 100644 --- a/tests/parm/ufs.configure.leapfrog_atm_wav.IN +++ b/tests/parm/ufs.configure.leapfrog_atm_wav.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: ATM WAV @@ -15,6 +15,7 @@ EARTH_attributes:: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -23,6 +24,7 @@ ATM_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 :: diff --git a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN b/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN deleted file mode 100644 index c4b6055fd1..0000000000 --- a/tests/parm/ufs.configure.leapfrog_atm_wav_esmf.IN +++ /dev/null @@ -1,41 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: ATM WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 -:: - - - -# Run Sequence # -runSeq:: - @@[coupling_interval_sec] - ATM - ATM -> WAV - WAV - @ -:: diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index 9ff939a6c7..f70b837c7a 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -43,6 +46,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -93,6 +97,20 @@ MED_attributes:: coupling_mode = @[CPLMODE] pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] + histaux_ice2med_file1_auxname = ice.1h.aux + histaux_ice2med_file1_doavg = .false. + histaux_ice2med_file1_enabled = @[histaux_enabled] + histaux_ice2med_file1_flds = all + histaux_ice2med_file1_history_n = @[MED_history_n] + histaux_ice2med_file1_history_option = nhours + histaux_ice2med_file1_ntperfile = 9999 + histaux_ocn2med_file1_auxname = ocn.1h.aux + histaux_ocn2med_file1_doavg = .false. + histaux_ocn2med_file1_enabled = @[histaux_enabled] + histaux_ocn2med_file1_flds = all + histaux_ocn2med_file1_history_n = @[MED_history_n] + histaux_ocn2med_file1_history_option = nhours + histaux_ocn2med_file1_ntperfile = 9999 :: ALLCOMP_attributes:: diff --git a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN b/tests/parm/ufs.configure.s2s_aoflux.IN similarity index 98% rename from tests/parm/ufs.configure.s2s_aoflux_esmf.IN rename to tests/parm/ufs.configure.s2s_aoflux.IN index c5c2705e03..f2e416f931 100644 --- a/tests/parm/ufs.configure.s2s_aoflux_esmf.IN +++ b/tests/parm/ufs.configure.s2s_aoflux.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE diff --git a/tests/parm/ufs.configure.s2s_esmf.IN b/tests/parm/ufs.configure.s2s_esmf.IN deleted file mode 100644 index 999731d927..0000000000 --- a/tests/parm/ufs.configure.s2s_esmf.IN +++ /dev/null @@ -1,139 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM OCN ICE -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: - -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] - histaux_ice2med_file1_auxname = ice.1h.aux - histaux_ice2med_file1_doavg = .false. - histaux_ice2med_file1_enabled = .true. - histaux_ice2med_file1_flds = all - histaux_ice2med_file1_history_n = @[MED_history_n] - histaux_ice2med_file1_history_option = nhours - histaux_ice2med_file1_ntperfile = 9999 - histaux_ocn2med_file1_auxname = ocn.1h.aux - histaux_ocn2med_file1_doavg = .false. - histaux_ocn2med_file1_enabled = .true. - histaux_ocn2med_file1_flds = all - histaux_ocn2med_file1_history_n = @[MED_history_n] - histaux_ocn2med_file1_history_option = nhours - histaux_ocn2med_file1_ntperfile = 9999 -:: - -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index f49831094c..db685a49bc 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -37,6 +40,7 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -50,6 +54,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] diff --git a/tests/parm/ufs.configure.s2sa_esmf.IN b/tests/parm/ufs.configure.s2sa_esmf.IN deleted file mode 100644 index 3921f3881b..0000000000 --- a/tests/parm/ufs.configure.s2sa_esmf.IN +++ /dev/null @@ -1,137 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM CHM OCN ICE -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_ocn_avg - MED -> OCN :remapMethod=redist - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - @ - OCN -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: - -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: - -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index 9ba2a9c2e1..38b6ab9a76 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE WAV @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -43,6 +46,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -58,6 +62,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false @@ -109,7 +114,6 @@ runSeq:: DRIVER_attributes:: :: - MED_attributes:: ATM_model = @[atm_model] ICE_model = @[ice_model] @@ -119,7 +123,6 @@ MED_attributes:: pio_rearranger = @[pio_rearranger] ocean_albedo_limit = @[ocean_albedo_limit] :: - ALLCOMP_attributes:: ScalarFieldCount = 3 ScalarFieldIdxGridNX = 1 diff --git a/tests/parm/ufs.configure.s2sw_esmf.IN b/tests/parm/ufs.configure.s2sw_esmf.IN deleted file mode 100644 index 0bfd8dc3d7..0000000000 --- a/tests/parm/ufs.configure.s2sw_esmf.IN +++ /dev/null @@ -1,149 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM OCN ICE WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - mesh_wav = @[MESH_WAV] - user_histname = @[WW3_user_histname] - use_historync = @[WW3_historync] - use_restartnc = @[WW3_restartnc] - restart_from_binary = @[WW3_restart_from_binary] - pio_typename = @[WW3_PIO_FORMAT] - pio_numiotasks = @[WW3_PIO_IOTASKS] - pio_stride = @[WW3_PIO_STRIDE] - pio_rearranger = @[WW3_PIO_REARR] - pio_root = @[WW3_PIO_ROOT] -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_wav_avg - MED med_phases_prep_ocn_avg - MED -> WAV :remapMethod=redist - MED -> OCN :remapMethod=redist - WAV - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - MED med_phases_prep_wav_accum - @ - OCN -> MED :remapMethod=redist - WAV -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_post_wav - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - WAV_model = @[wav_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2sw_fast_esmf.IN b/tests/parm/ufs.configure.s2sw_fast.IN similarity index 98% rename from tests/parm/ufs.configure.s2sw_fast_esmf.IN rename to tests/parm/ufs.configure.s2sw_fast.IN index 623fab0124..a4ac78def4 100644 --- a/tests/parm/ufs.configure.s2sw_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2sw_fast.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM OCN ICE WAV diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 2fa6ac40c3..cb930fd4b3 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: @[esmf_logkind] -globalResourceControl: false +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -15,11 +15,13 @@ EARTH_attributes:: # MED # MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] +MED_omp_num_threads: @[med_omp_num_threads] :: # ATM # ATM_model: @[atm_model] ATM_petlist_bounds: @[atm_petlist_bounds] +ATM_omp_num_threads: @[atm_omp_num_threads] ATM_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -30,6 +32,7 @@ ATM_attributes:: # CHM # CHM_model: @[chm_model] CHM_petlist_bounds: @[chm_petlist_bounds] +CHM_omp_num_threads: @[chm_omp_num_threads] CHM_attributes:: Verbosity = 0 :: @@ -37,6 +40,7 @@ CHM_attributes:: # OCN # OCN_model: @[ocn_model] OCN_petlist_bounds: @[ocn_petlist_bounds] +OCN_omp_num_threads: @[ocn_omp_num_threads] OCN_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -50,6 +54,7 @@ OCN_attributes:: # ICE # ICE_model: @[ice_model] ICE_petlist_bounds: @[ice_petlist_bounds] +ICE_omp_num_threads: @[ice_omp_num_threads] ICE_attributes:: Verbosity = 0 DumpFields = @[DumpFields] @@ -65,6 +70,7 @@ ICE_attributes:: # WAV # WAV_model: @[wav_model] WAV_petlist_bounds: @[wav_petlist_bounds] +WAV_omp_num_threads: @[wav_omp_num_threads] WAV_attributes:: Verbosity = 0 OverwriteSlice = false diff --git a/tests/parm/ufs.configure.s2swa_esmf.IN b/tests/parm/ufs.configure.s2swa_esmf.IN deleted file mode 100644 index 91410741de..0000000000 --- a/tests/parm/ufs.configure.s2swa_esmf.IN +++ /dev/null @@ -1,161 +0,0 @@ -############################################# -#### UFS Run-Time Configuration File ###### -############################################# - -# ESMF # -logKindFlag: @[esmf_logkind] -globalResourceControl: true - -# EARTH # -EARTH_component_list: MED ATM CHM OCN ICE WAV -EARTH_attributes:: - Verbosity = 0 -:: - -# MED # -MED_model: @[med_model] -MED_petlist_bounds: @[med_petlist_bounds] -MED_omp_num_threads: @[med_omp_num_threads] -:: - -# ATM # -ATM_model: @[atm_model] -ATM_petlist_bounds: @[atm_petlist_bounds] -ATM_omp_num_threads: @[atm_omp_num_threads] -ATM_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true -:: - -# CHM # -CHM_model: @[chm_model] -CHM_petlist_bounds: @[chm_petlist_bounds] -CHM_omp_num_threads: @[chm_omp_num_threads] -CHM_attributes:: - Verbosity = 0 -:: - -# OCN # -OCN_model: @[ocn_model] -OCN_petlist_bounds: @[ocn_petlist_bounds] -OCN_omp_num_threads: @[ocn_omp_num_threads] -OCN_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ocn = @[MESH_OCN] - use_coldstart = @[use_coldstart] - use_mommesh = @[use_mommesh] -:: - -# ICE # -ICE_model: @[ice_model] -ICE_petlist_bounds: @[ice_petlist_bounds] -ICE_omp_num_threads: @[ice_omp_num_threads] -ICE_attributes:: - Verbosity = 0 - DumpFields = @[DumpFields] - ProfileMemory = false - OverwriteSlice = true - mesh_ice = @[MESH_ICE] - eps_imesh = @[eps_imesh] - stop_n = @[RESTART_N] - stop_option = nhours - stop_ymd = -999 -:: - -# WAV # -WAV_model: @[wav_model] -WAV_petlist_bounds: @[wav_petlist_bounds] -WAV_omp_num_threads: @[wav_omp_num_threads] -WAV_attributes:: - Verbosity = 0 - OverwriteSlice = false - mesh_wav = @[MESH_WAV] - user_histname = @[WW3_user_histname] - use_historync = @[WW3_historync] - use_restartnc = @[WW3_restartnc] - restart_from_binary = @[WW3_restart_from_binary] - pio_typename = @[WW3_PIO_FORMAT] - pio_numiotasks = @[WW3_PIO_IOTASKS] - pio_stride = @[WW3_PIO_STRIDE] - pio_rearranger = @[WW3_PIO_REARR] - pio_root = @[WW3_PIO_ROOT] -:: - -# CMEPS warm run sequence -runSeq:: -@@[coupling_interval_slow_sec] - MED med_phases_prep_wav_avg - MED med_phases_prep_ocn_avg - MED -> WAV :remapMethod=redist - MED -> OCN :remapMethod=redist - WAV - OCN - @@[coupling_interval_fast_sec] - MED med_phases_prep_atm - MED med_phases_prep_ice - MED -> ATM :remapMethod=redist - MED -> ICE :remapMethod=redist - ATM phase1 - ATM -> CHM - CHM - CHM -> ATM - ATM phase2 - ICE - ATM -> MED :remapMethod=redist - MED med_phases_post_atm - ICE -> MED :remapMethod=redist - MED med_phases_post_ice - MED med_phases_ocnalb_run - MED med_phases_prep_ocn_accum - MED med_phases_prep_wav_accum - @ - OCN -> MED :remapMethod=redist - WAV -> MED :remapMethod=redist - MED med_phases_post_ocn - MED med_phases_post_wav - MED med_phases_restart_write -@ -:: - -# CMEPS variables - -DRIVER_attributes:: -:: -MED_attributes:: - ATM_model = @[atm_model] - ICE_model = @[ice_model] - OCN_model = @[ocn_model] - WAV_model = @[wav_model] - coupling_mode = @[CPLMODE] - pio_rearranger = @[pio_rearranger] - ocean_albedo_limit = @[ocean_albedo_limit] -:: -ALLCOMP_attributes:: - ScalarFieldCount = 3 - ScalarFieldIdxGridNX = 1 - ScalarFieldIdxGridNY = 2 - ScalarFieldIdxGridNTile = 3 - ScalarFieldName = cpl_scalars - start_type = @[RUNTYPE] - restart_dir = @[CMEPS_RESTART_DIR] - case_name = ufs.cpld - restart_n = @[RESTART_N] - restart_option = nhours - restart_ymd = -999 - write_restart_at_endofrun = @[WRITE_ENDOFRUN_RESTART] - dbug_flag = @[cap_dbug_flag] - stop_n = @[FHMAX] - stop_option = nhours - stop_ymd = -999 - orb_eccen = 1.e36 - orb_iyear = 2000 - orb_iyear_align = 2000 - orb_mode = fixed_year - orb_mvelp = 1.e36 - orb_obliq = 1.e36 -:: diff --git a/tests/parm/ufs.configure.s2swa_fast_esmf.IN b/tests/parm/ufs.configure.s2swa_fast.IN similarity index 98% rename from tests/parm/ufs.configure.s2swa_fast_esmf.IN rename to tests/parm/ufs.configure.s2swa_fast.IN index 5ded338a95..e5ed589d7f 100644 --- a/tests/parm/ufs.configure.s2swa_fast_esmf.IN +++ b/tests/parm/ufs.configure.s2swa_fast.IN @@ -4,7 +4,7 @@ # ESMF # logKindFlag: ESMF_LOGKIND_MULTI -globalResourceControl: true +globalResourceControl: @[ESMF_THREADING] # EARTH # EARTH_component_list: MED ATM CHM OCN ICE WAV @@ -16,6 +16,7 @@ EARTH_attributes:: MED_model: @[med_model] MED_petlist_bounds: @[med_petlist_bounds] MED_omp_num_threads: @[med_omp_num_threads] +:: # ATM # ATM_model: @[atm_model] diff --git a/tests/rt.conf b/tests/rt.conf index 6c1b30a747..1ed8c56eae 100644 --- a/tests/rt.conf +++ b/tests/rt.conf @@ -293,9 +293,9 @@ RUN | datm_cdeps_lnd_era5 | - wcoss2 RUN | datm_cdeps_lnd_era5_rst | - wcoss2 noaacloud | | datm_cdeps_lnd_era5 ### CDEPS Data Atmosphere tests with LM4 ### -COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaea | fv3 | -RUN | datm_cdeps_lm4_gswp3 | + hera orion gaea | baseline | -RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaea | | datm_cdeps_lm4_gswp3 +COMPILE | datm_cdeps_lm4 | intel | -DAPP=LND-LM4 | + hera orion gaeac5 | fv3 | +RUN | datm_cdeps_lm4_gswp3 | + hera orion gaeac5 | baseline | +RUN | datm_cdeps_lm4_gswp3_rst | + hera orion gaeac5 | | datm_cdeps_lm4_gswp3 ### AMIP+ tests ### COMPILE | atm_ds2s_docn_pcice | intel | -DAPP=ATM_DS2S-PCICE -DCCPP_SUITES=FV3_GFS_v17_coupled_p8 | | fv3 | @@ -342,17 +342,17 @@ RUN | cpld_regional_atm_fbh | - wcoss2 noaacloud aco # Coupled gfs17 tests on Gaea -COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaea | fv3 | -RUN | cpld_debug_gfsv17 | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_debug | intelllvm | -DAPP=S2SWA -D32BIT=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON -DDEBUG=ON | + gaeac5 | fv3 | +RUN | cpld_debug_gfsv17 | + gaeac5 | baseline | -COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaea | fv3 | -RUN | cpld_control_sfs | + gaea | baseline | +COMPILE | s2swa_32bit_pdlib_sfs | intelllvm | -DAPP=S2SWA -D32BIT=ON -DHYDRO=ON -DCCPP_SUITES=FV3_GFS_v17_coupled_p8_ugwpv1 -DPDLIB=ON | + gaeac5 | fv3 | +RUN | cpld_control_sfs | + gaeac5 | baseline | -COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaea | fv3 | -RUN | cpld_control_p8 | + gaea | baseline | +COMPILE | s2swa | intelllvm | -DAPP=S2SWA -DCCPP_SUITES=FV3_GFS_v17_coupled_p8,FV3_GFS_v17_coupled_p8_ugwpv1 | + gaeac5 | fv3 | +RUN | cpld_control_p8 | + gaeac5 | baseline | # Regional RRFS tests on Hera COMPILE | rrfs_dyn32_phy32 | intelllvm | -DAPP=ATM -DCCPP_SUITES=FV3_RAP -D32BIT=ON -DCCPP_32BIT=ON | + hera | fv3 | diff --git a/tests/rt.sh b/tests/rt.sh index 672c876e53..275ec03510 100755 --- a/tests/rt.sh +++ b/tests/rt.sh @@ -709,8 +709,8 @@ case ${MACHINE_ID} in PTMP="/lfs/h2/emc/ptmp" SCHEDULER="pbs" ;; - gaea) - echo "rt.sh: Setting up gaea..." + gaeac5) + echo "rt.sh: Setting up gaea c5..." if [[ "${ROCOTO:-false}" == true ]] ; then module use /ncrc/proj/epic/rocoto/modulefiles module load rocoto @@ -738,6 +738,37 @@ case ${MACHINE_ID} in STMP=${STMP:-${dprefix}/RT_BASELINE} PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" + ;; + gaeac6) + echo "rt.sh: Setting up gaea c6..." + if [[ "${ROCOTO:-false}" == true ]] ; then + module use /ncrc/proj/epic/c6/modulefiles + module load rocoto/1.3.7 + ROCOTO_SCHEDULER="slurm" + fi + + export LD_PRELOAD=/usr/lib64/libstdc++.so.6 + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + module load stack-intel/2023.2.0 + module load cray-mpich/8.1.29 + module load python/3.10.13 + if [[ "${ECFLOW:-false}" == true ]] ; then + module use /ncrc/proj/epic/spack-stack/modulefiles + module load ecflow/5.8.4 + ECF_HOST=$(hostname) + ECF_PORT=$(( $(id -u) + 1500 )) + export ECF_PORT ECF_HOST + fi + + DISKNM=/gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT + QUEUE=normal + COMPILE_QUEUE=normal + PARTITION=c6 + dprefix=${dprefix:-/gpfs/f6/${ACCNR}/proj-shared/${USER}} + STMP=${STMP:-${dprefix}/RT_BASELINE} + PTMP=${PTMP:-${dprefix}/RT_RUNDIRS} + SCHEDULER="slurm" ;; hera) @@ -1266,7 +1297,11 @@ EOF ( source "${PATHRT}/tests/${TEST_NAME}" - compute_petbounds_and_tasks + if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading + else + compute_petbounds_and_tasks_traditional_threading + fi TPN=$(( TPN / THRD )) NODES=$(( TASKS / TPN )) diff --git a/tests/rt_utils.sh b/tests/rt_utils.sh index ecf4259421..fa3dcfeebe 100755 --- a/tests/rt_utils.sh +++ b/tests/rt_utils.sh @@ -21,7 +21,122 @@ redirect_out_err() { # redirect_out_err command will return non-zero if "$@" or tee return non-zero. } -function compute_petbounds_and_tasks() { +function compute_petbounds_and_tasks_traditional_threading() { + + # each test MUST define ${COMPONENT}_tasks variable for all components it is using + # and MUST NOT define those that it's not using or set the value to 0. + + # ATM is a special case since it is running on the sum of compute and io tasks. + # CHM component and mediator are running on ATM compute tasks only. + + if [[ ${DATM_CDEPS} = 'false' ]]; then + if [[ ${ATM_compute_tasks:-0} -eq 0 ]]; then + ATM_compute_tasks=$((INPES * JNPES * NTILES)) + fi + if [[ ${QUILTING} = '.true.' ]]; then + ATM_io_tasks=$((WRITE_GROUP * WRTTASK_PER_GROUP)) + else + ATM_io_tasks=0 + fi + ATM_tasks=$((ATM_compute_tasks + ATM_io_tasks)) + fi + + local n=0 + unset atm_petlist_bounds ocn_petlist_bounds ice_petlist_bounds wav_petlist_bounds chm_petlist_bounds med_petlist_bounds aqm_petlist_bounds fbh_petlist_bounds + + local _tasks + + # ATM + if [[ ${ATM_tasks:-0} -gt 0 ]]; then + atm_petlist_bounds="${n} $((n + ATM_tasks - 1))" + n=$((n + ATM_tasks)) + _tasks=$(( ATM_tasks*atm_omp_num_threads )) + atm_nodes=$(( _tasks / TPN )) + if (( atm_nodes * TPN < _tasks )); then + atm_nodes=$(( atm_nodes + 1 )) + fi + fi + + # OCN + if [[ ${OCN_tasks:-0} -gt 0 ]]; then + ocn_petlist_bounds="${n} $((n + OCN_tasks - 1))" + n=$((n + OCN_tasks)) + _tasks=$(( OCN_tasks*ocn_omp_num_threads )) + ocn_nodes=$(( _tasks / TPN )) + if (( ocn_nodes * TPN < _tasks )); then + ocn_nodes=$(( ocn_nodes + 1 )) + fi + fi + + # ICE + if [[ ${ICE_tasks:-0} -gt 0 ]]; then + ice_petlist_bounds="${n} $((n + ICE_tasks - 1))" + n=$((n + ICE_tasks)) + _tasks=$(( ICE_tasks*ice_omp_num_threads )) + ice_nodes=$(( _tasks / TPN )) + if (( ice_nodes * TPN < _tasks )); then + ice_nodes=$(( ice_nodes + 1 )) + fi + fi + + # WAV + if [[ ${WAV_tasks:-0} -gt 0 ]]; then + wav_petlist_bounds="${n} $((n + WAV_tasks - 1))" + n=$((n + WAV_tasks)) + _tasks=$(( WAV_tasks*wav_omp_num_threads )) + wav_nodes=$(( _tasks / TPN )) + if (( wav_nodes * TPN < _tasks )); then + wav_nodes=$(( wav_nodes + 1 )) + fi + fi + + # CHM + chm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # MED - mediator (CMEPS) runs on at most 300 tasks. + MED_compute_tasks=$((ATM_compute_tasks<=300 ? ATM_compute_tasks : 300)) + med_petlist_bounds="0 $((MED_compute_tasks - 1))" + + # AQM + aqm_petlist_bounds="0 $((ATM_compute_tasks - 1))" + + # LND + if [[ ${lnd_model:-} = "lm4" ]]; then + # set lnd_petlist_bounds to be same as ATM_compute_tasks + lnd_petlist_bounds="0 $((ATM_compute_tasks - 1))" + elif [[ ${LND_tasks:-0} -gt 0 ]]; then # noahmp component or other + lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" + n=$((n + LND_tasks)) + fi + + # FBH + if [[ ${FBH_tasks:-0} -gt 0 ]]; then + fbh_petlist_bounds="${n} $((n + FBH_tasks - 1))" + n=$((n + FBH_tasks)) + fi + + unset _tasks + + UFS_tasks=${n} + + if [[ ${RTVERBOSE} == true ]]; then + echo "ATM_petlist_bounds: ${atm_petlist_bounds:-}" + echo "OCN_petlist_bounds: ${ocn_petlist_bounds:-}" + echo "ICE_petlist_bounds: ${ice_petlist_bounds:-}" + echo "WAV_petlist_bounds: ${wav_petlist_bounds:-}" + echo "CHM_petlist_bounds: ${chm_petlist_bounds:-}" + echo "MED_petlist_bounds: ${med_petlist_bounds:-}" + echo "AQM_petlist_bounds: ${aqm_petlist_bounds:-}" + echo "LND_petlist_bounds: ${lnd_petlist_bounds:-}" + echo "FBH_petlist_bounds: ${fbh_petlist_bounds:-}" + echo "UFS_tasks : ${UFS_tasks:-}" + fi + + # TASKS is now set to UFS_TASKS + export TASKS=${UFS_tasks} +} + +function compute_petbounds_and_tasks_esmf_threading() { # each test MUST define ${COMPONENT}_tasks variable for all components it is using # and MUST NOT define those that it's not using or set the value to 0. @@ -72,8 +187,9 @@ function compute_petbounds_and_tasks() { # CHM chm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" - # MED - med_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" + # MED - mediator (CMEPS) runs on at most 300 tasks. + MED_compute_tasks=$((ATM_compute_tasks<=300 ? ATM_compute_tasks : 300)) + med_petlist_bounds="0 $((MED_compute_tasks * atm_omp_num_threads - 1))" # AQM aqm_petlist_bounds="0 $((ATM_compute_tasks * atm_omp_num_threads - 1))" @@ -82,8 +198,8 @@ function compute_petbounds_and_tasks() { if [[ ${lnd_model:-} = "lm4" ]]; then # set lnd_petlist_bounds to be same as ATM_compute_tasks lnd_petlist_bounds="0 $((ATM_compute_tasks - 1))" - elif [[ ${LND_tasks:-0} -gt 0 ]]; then # noahmp component or other - LND_tasks=$((LND_tasks * lnd_omp_num_threads)) + elif [[ ${LND_tasks:-0} -gt 0 ]]; then # noahmp component or other + LND_tasks=$((LND_tasks * lnd_omp_num_threads)) lnd_petlist_bounds="${n} $((n + LND_tasks - 1))" n=$((n + LND_tasks)) fi @@ -312,7 +428,10 @@ rocoto_create_compile_task() { if [[ ${MACHINE_ID} == s4 ]]; then BUILD_WALLTIME="01:00:00" fi - if [[ ${MACHINE_ID} == gaea ]]; then + if [[ ${MACHINE_ID} == gaeac5 ]]; then + BUILD_WALLTIME="01:00:00" + fi + if [[ ${MACHINE_ID} == gaeac6 ]]; then BUILD_WALLTIME="01:00:00" fi @@ -325,10 +444,15 @@ rocoto_create_compile_task() { ${COMPILE_QUEUE} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=es eslogin_c5 +EOF + elif [[ "${MACHINE_ID}" == gaeac6 ]] ; then + cat << EOF >> "${ROCOTO_XML}" + --clusters=es + eslogin_c6 EOF elif [[ -n "${PARTITION}" || ${MACHINE_ID} != hera ]] ; then cat << EOF >> "${ROCOTO_XML}" @@ -369,7 +493,7 @@ rocoto_create_run_task() { ${ROCOTO_NODESIZE:+${ROCOTO_NODESIZE}} EOF - if [[ "${MACHINE_ID}" == gaea ]] ; then + if [[ "${MACHINE_ID}" == gaeac5 || "${MACHINE_ID}" == gaeac6 ]] ; then cat << EOF >> "${ROCOTO_XML}" --clusters=${PARTITION} --partition=batch diff --git a/tests/run_test.sh b/tests/run_test.sh index 8e8e7c34d3..cd46804607 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -116,11 +116,19 @@ case ${MACHINE_ID} in stampede|expanse|noaacloud) echo "No special nccmp load necessary" ;; - gaea) + gaeac5) module use /ncrc/proj/epic/spack-stack/spack-stack-1.6.0/envs/unified-env/install/modulefiles/Core module load stack-intel/2023.2.0 stack-cray-mpich/8.1.28 module load nccmp/1.9.0.1 ;; + gaeac6) + module use /ncrc/proj/epic/spack-stack/c6/spack-stack-1.6.0/envs/fms-2024.01/install/modulefiles/Core + module load stack-intel/2023.2.0 stack-cray-mpich/8.1.29 + module load nccmp/1.9.0.1 + #module use modulefiles + #module load modules.fv3 + #module load gcc-native/12.3 + ;; derecho) module load nccmp ;; @@ -163,10 +171,19 @@ else exit 1 fi -compute_petbounds_and_tasks +if [[ ${ESMF_THREADING} == true ]]; then + compute_petbounds_and_tasks_esmf_threading +else + compute_petbounds_and_tasks_traditional_threading +fi if [[ -f ${PATHRT}/parm/${UFS_CONFIGURE} ]]; then - atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure + ( + atparse < "${PATHRT}/parm/${UFS_CONFIGURE}" > ufs.configure + if [[ ${ESMF_THREADING} != true ]]; then + sed -i -e "/_omp_num_threads:/d" ufs.configure + fi + ) else echo "Cannot find file ${UFS_CONFIGURE} set by variable UFS_CONFIGURE" exit 1 @@ -240,7 +257,7 @@ fi if [[ "Q${FIELD_TABLE:-}" != Q ]]; then cp "${PATHRT}/parm/field_table/${FIELD_TABLE}" field_table fi - + # fix files if [[ ${FV3} == true ]]; then cp "${INPUTDATA_ROOT}"/FV3_fix/*.txt . @@ -378,6 +395,10 @@ fi export PPN export UFS_TASKS +if [[ ${ESMF_THREADING} != true ]]; then + PPN=${TPN} +fi + if [[ ${SCHEDULER} = 'pbs' ]]; then if [[ -e ${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID} ]]; then atparse < "${PATHRT}/fv3_conf/fv3_qsub.IN_${MACHINE_ID}" > job_card @@ -462,7 +483,7 @@ if [[ ${skip_check_results} == false ]]; then else if [[ ${i##*.} == nc* ]] ; then - if [[ " orion hercules hera wcoss2 acorn derecho gaea jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then + if [[ " orion hercules hera wcoss2 acorn derecho gaeac5 gaeac6 jet s4 noaacloud " =~ ${MACHINE_ID} ]]; then printf "USING NCCMP.." >> "${RT_LOG}" printf "USING NCCMP.." if [[ ${CMP_DATAONLY} == false ]]; then diff --git a/tests/tests/atm_ds2s_docn_dice b/tests/tests/atm_ds2s_docn_dice index cd477d3bc1..dc1e33896f 100644 --- a/tests/tests/atm_ds2s_docn_dice +++ b/tests/tests/atm_ds2s_docn_dice @@ -127,7 +127,7 @@ export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_thompson_noaero_tke export INPUT_NML=global_control.nml.IN export MODEL_CONFIGURE=model_configure.IN -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN="cpld_control_run.IN cpld_docn_dice.IN" if [[ $MACHINE_ID = hera ]] || [[ $MACHINE_ID = hercules ]] || [[ $MACHINE_ID = orion ]] || [[ $MACHINE_ID = gaea ]]; then diff --git a/tests/tests/atm_ds2s_docn_pcice b/tests/tests/atm_ds2s_docn_pcice index fef8e3cdf3..4f6204e6fc 100644 --- a/tests/tests/atm_ds2s_docn_pcice +++ b/tests/tests/atm_ds2s_docn_pcice @@ -124,5 +124,5 @@ export DIAG_TABLE=diag_table_gfsv16 export FIELD_TABLE=field_table_thompson_noaero_tke export INPUT_NML=global_control.nml.IN export MODEL_CONFIGURE=model_configure.IN -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN="cpld_control_run.IN cpld_docn_pcice.IN" diff --git a/tests/tests/atmaero_control_p8 b/tests/tests/atmaero_control_p8 index 6d4012d580..2d83d58d26 100644 --- a/tests/tests/atmaero_control_p8 +++ b/tests/tests/atmaero_control_p8 @@ -67,7 +67,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' @@ -180,3 +180,7 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/atmaero_control_p8_rad b/tests/tests/atmaero_control_p8_rad index 4eac5a3303..b384a7ff4a 100644 --- a/tests/tests/atmaero_control_p8_rad +++ b/tests/tests/atmaero_control_p8_rad @@ -66,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/atmaero_control_p8_rad_micro b/tests/tests/atmaero_control_p8_rad_micro index 1c4bbe4478..9a57bbc9ac 100644 --- a/tests/tests/atmaero_control_p8_rad_micro +++ b/tests/tests/atmaero_control_p8_rad_micro @@ -66,7 +66,7 @@ export WRITE_DOPOST=.true. export CPL=.true. export CPLCHM=.true. -export UFS_CONFIGURE=ufs.configure.atmaero_esmf.IN +export UFS_CONFIGURE=ufs.configure.atmaero.IN export atm_model='fv3' export chm_model='gocart' diff --git a/tests/tests/control_2threads_p8 b/tests/tests/control_2threads_p8 index d48022f634..22b5a8f3f5 100644 --- a/tests/tests/control_2threads_p8 +++ b/tests/tests/control_2threads_p8 @@ -154,3 +154,6 @@ export DOGP_LWSCAT=.true. export DOGP_SGS_CNV=.true. export SATMEDMF=.true. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/control_c48_lnd_iau b/tests/tests/control_c48_lnd_iau index 702c908d93..9852b68dbd 100644 --- a/tests/tests/control_c48_lnd_iau +++ b/tests/tests/control_c48_lnd_iau @@ -75,6 +75,8 @@ export IOVR=3 export IMO=192 export JMO=94 +export PERT_CLDS=.true. + export FNSMCC_control="'global_soilmgldas.statsgo.t92.192.94.grb'" export FNMSKH_control="'global_slmask.t62.192.94.grb'" export FNSMCC=${FNSMCC_control} diff --git a/tests/tests/control_p8.v2.sfc b/tests/tests/control_p8.v2.sfc index d08987ae87..d1afdbc4ca 100644 --- a/tests/tests/control_p8.v2.sfc +++ b/tests/tests/control_p8.v2.sfc @@ -153,6 +153,6 @@ export DOGP_SGS_CNV=.true. export SATMEDMF=.true. -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam b/tests/tests/control_wam index 5018e6208c..d70921938b 100644 --- a/tests/tests/control_wam +++ b/tests/tests/control_wam @@ -106,6 +106,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/control_wam_debug b/tests/tests/control_wam_debug index 4c1852e2e0..c52d742268 100644 --- a/tests/tests/control_wam_debug +++ b/tests/tests/control_wam_debug @@ -107,6 +107,6 @@ export DIAG_TABLE=diag_table_wam export INPUT_NML=wam_v17.nml.IN -if [[ " hera orion hercules gaea jet " =~ " ${MACHINE_ID} " ]] ; then +if [[ " hera orion hercules gaeac5 gaeac6 jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi diff --git a/tests/tests/conus13km_2threads b/tests/tests/conus13km_2threads index 9d8620c42a..f37809fdc1 100644 --- a/tests/tests/conus13km_2threads +++ b/tests/tests/conus13km_2threads @@ -25,3 +25,6 @@ export INPES=12 export JNPES=12 export WRTTASK_PER_GROUP=6 export QUILTING_RESTART=.false. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/conus13km_debug_2threads b/tests/tests/conus13km_debug_2threads index 9daadc7dd6..b565c216a5 100644 --- a/tests/tests/conus13km_debug_2threads +++ b/tests/tests/conus13km_debug_2threads @@ -24,3 +24,6 @@ export INPES=12 export JNPES=12 export WRTTASK_PER_GROUP=6 export QUILTING_RESTART=.false. + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/cpld_2threads_p8 b/tests/tests/cpld_2threads_p8 index 21346f4a09..6a4e74b061 100644 --- a/tests/tests/cpld_2threads_p8 +++ b/tests/tests/cpld_2threads_p8 @@ -93,7 +93,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ ${MACHINE_ID} = derecho ]]; then TPN=96 fi @@ -103,3 +103,10 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +ESMF_THREADING=false +THRD=$THRD_cpl_thrd + +if [[ ${MACHINE_ID} = orion || ${MACHINE_ID} = wcoss2 ]]; then + WLCLK=40 +fi diff --git a/tests/tests/cpld_control_c192_p8 b/tests/tests/cpld_control_c192_p8 index b70352aee0..a41a65e0fb 100644 --- a/tests/tests/cpld_control_c192_p8 +++ b/tests/tests/cpld_control_c192_p8 @@ -143,6 +143,9 @@ export FV3_RUN=cpld_control_run.IN if [[ $MACHINE_ID = derecho ]]; then TPN=96 fi +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=144 +fi # HR4 GFSv17 GWD update export DO_UGWP_V0=.false. diff --git a/tests/tests/cpld_control_c48 b/tests/tests/cpld_control_c48 index 0f86ec5d5b..7a9de35986 100644 --- a/tests/tests/cpld_control_c48 +++ b/tests/tests/cpld_control_c48 @@ -137,7 +137,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_ciceC_p8 b/tests/tests/cpld_control_ciceC_p8 index 07057d8073..20aeff2e64 100644 --- a/tests/tests/cpld_control_ciceC_p8 +++ b/tests/tests/cpld_control_ciceC_p8 @@ -93,3 +93,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_noaero_p8 b/tests/tests/cpld_control_noaero_p8 index 58853ae7d0..70c4be0283 100644 --- a/tests/tests/cpld_control_noaero_p8 +++ b/tests/tests/cpld_control_noaero_p8 @@ -65,7 +65,7 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.MOM.res.nc \ RESTART/iced.2021-03-23-21600.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - ufs.cpld.ww3.r.2021-03-23-21600.nc \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " @@ -86,7 +86,7 @@ export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_noaero_p8_agrid b/tests/tests/cpld_control_noaero_p8_agrid index 5036092ba4..6c294b3abd 100644 --- a/tests/tests/cpld_control_noaero_p8_agrid +++ b/tests/tests/cpld_control_noaero_p8_agrid @@ -93,7 +93,7 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s_aoflux_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s_aoflux.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_nowave_noaero_p8 b/tests/tests/cpld_control_nowave_noaero_p8 index 240b03d2d2..4599c895b3 100644 --- a/tests/tests/cpld_control_nowave_noaero_p8 +++ b/tests/tests/cpld_control_nowave_noaero_p8 @@ -104,7 +104,7 @@ export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN @@ -114,3 +114,5 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +export histaux_enabled=.true. diff --git a/tests/tests/cpld_control_p8 b/tests/tests/cpld_control_p8 index f3cb8da89c..843f2828e3 100644 --- a/tests/tests/cpld_control_p8 +++ b/tests/tests/cpld_control_p8 @@ -63,10 +63,14 @@ export LIST_FILES="sfcf021.tile1.nc \ RESTART/20210323.060000.sfc_data.tile4.nc \ RESTART/20210323.060000.sfc_data.tile5.nc \ RESTART/20210323.060000.sfc_data.tile6.nc \ + RESTART/20210322.090000.MOM.res.nc \ RESTART/20210323.060000.MOM.res.nc \ + RESTART/iced.2021-03-22-32400.nc \ RESTART/iced.2021-03-23-21600.nc \ + RESTART/ufs.cpld.cpl.r.2021-03-22-32400.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-21600.nc \ - ufs.cpld.ww3.r.2021-03-23-21600.nc \ + ufs.cpld.ww3.r.2021-03-22-32400.nc \ + ufs.cpld.ww3.r.2021-03-23-21600.nc \ 20210323.060000.out_pnt.ww3 \ 20210323.060000.out_grd.ww3 " export DT_ATMOS=720 @@ -78,6 +82,7 @@ export CCPP_SUITE=FV3_GFS_v17_coupled_p8_ugwpv1 export RESTART_N=12 export RESTART_INTERVAL="${RESTART_N} -1" export OUTPUT_FH='0 21 24' +export RESTART_FH="0.5 3" export MOM6_TOPOEDITS=ufs.topo_edits_011818.nc export MOM6_ALLOW_LANDMASK_CHANGES=True @@ -85,7 +90,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8.v2.sfc b/tests/tests/cpld_control_p8.v2.sfc index bc6e073c61..14bec35bf2 100644 --- a/tests/tests/cpld_control_p8.v2.sfc +++ b/tests/tests/cpld_control_p8.v2.sfc @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN export V2_SFC_FILE=true -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_control_p8_faster b/tests/tests/cpld_control_p8_faster index 4e972c16aa..69cb7525a5 100644 --- a/tests/tests/cpld_control_p8_faster +++ b/tests/tests/cpld_control_p8_faster @@ -96,3 +96,7 @@ export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. export DO_GSL_DRAG_TOFD=.true. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_p8_mixedmode b/tests/tests/cpld_control_p8_mixedmode index 0d35ba3114..e23f9a0bc2 100644 --- a/tests/tests/cpld_control_p8_mixedmode +++ b/tests/tests/cpld_control_p8_mixedmode @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_control_pdlib_p8 b/tests/tests/cpld_control_pdlib_p8 index 120504e818..a2ca423a56 100644 --- a/tests/tests/cpld_control_pdlib_p8 +++ b/tests/tests/cpld_control_pdlib_p8 @@ -102,7 +102,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_control_qr_p8 b/tests/tests/cpld_control_qr_p8 index 48bb88f2ab..4ede95ef1f 100644 --- a/tests/tests/cpld_control_qr_p8 +++ b/tests/tests/cpld_control_qr_p8 @@ -92,3 +92,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_debug_gfsv17 b/tests/tests/cpld_debug_gfsv17 index 63328b4d97..457a73b303 100644 --- a/tests/tests/cpld_debug_gfsv17 +++ b/tests/tests/cpld_debug_gfsv17 @@ -112,7 +112,10 @@ export N_SPLIT=5 if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi -if [[ $MACHINE_ID = gaea ]] && [[ $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 ]] && [[ $RT_COMPILER = intelllvm ]]; then + WLCLK=40 +fi +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=40 fi if [[ $MACHINE_ID = orion ]]; then diff --git a/tests/tests/cpld_debug_noaero_p8 b/tests/tests/cpld_debug_noaero_p8 index f703ad51cd..0e566adeef 100644 --- a/tests/tests/cpld_debug_noaero_p8 +++ b/tests/tests/cpld_debug_noaero_p8 @@ -77,7 +77,7 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_debug_p8 b/tests/tests/cpld_debug_p8 index 663e21eccf..4c1ca3a24a 100644 --- a/tests/tests/cpld_debug_p8 +++ b/tests/tests/cpld_debug_p8 @@ -81,6 +81,10 @@ if [[ $MACHINE_ID = hera ]] && [[ $RT_COMPILER = gnu ]]; then WLCLK=40 fi +if [[ $MACHINE_ID = gaeac6 ]] ; then + TPN=96 +fi + export K_SPLIT=4 export N_SPLIT=5 diff --git a/tests/tests/cpld_debug_pdlib_p8 b/tests/tests/cpld_debug_pdlib_p8 index e2d0ea77c7..685c8d4b57 100644 --- a/tests/tests/cpld_debug_pdlib_p8 +++ b/tests/tests/cpld_debug_pdlib_p8 @@ -96,7 +96,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN @@ -109,7 +109,10 @@ fi if [[ $MACHINE_ID = orion ]]; then WLCLK=50 fi -if [[ $MACHINE_ID = gaea ]]; then +if [[ $MACHINE_ID = gaeac5 ]]; then + WLCLK=50 +fi +if [[ $MACHINE_ID = gaeac6 ]] && [[ $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi if [[ $MACHINE_ID = wcoss2 ]]; then @@ -122,9 +125,5 @@ export K_SPLIT=2 export N_SPLIT=5 # HR4 GFSv17 GWD update -export DO_UGWP_V0=.false. -export DO_UGWP_V1=.true. -export DO_GSL_DRAG_LS_BL=.true. export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. -export DO_GSL_DRAG_TOFD=.true. diff --git a/tests/tests/cpld_decomp_p8 b/tests/tests/cpld_decomp_p8 index 382960bfc1..515b922ea4 100644 --- a/tests/tests/cpld_decomp_p8 +++ b/tests/tests/cpld_decomp_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_mpi_p8 b/tests/tests/cpld_mpi_p8 index 8c9244e675..884acdd47f 100644 --- a/tests/tests/cpld_mpi_p8 +++ b/tests/tests/cpld_mpi_p8 @@ -87,7 +87,7 @@ export eps_imesh=2.5e-1 export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_mpi_pdlib_p8 b/tests/tests/cpld_mpi_pdlib_p8 index 5afb46a3de..2c0b91ac34 100644 --- a/tests/tests/cpld_mpi_pdlib_p8 +++ b/tests/tests/cpld_mpi_pdlib_p8 @@ -104,7 +104,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_c48 b/tests/tests/cpld_restart_c48 index 4803fd5f46..7507d0f492 100644 --- a/tests/tests/cpld_restart_c48 +++ b/tests/tests/cpld_restart_c48 @@ -168,7 +168,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_p8 b/tests/tests/cpld_restart_p8 index 0409d3d20d..fc7d2348fb 100644 --- a/tests/tests/cpld_restart_p8 +++ b/tests/tests/cpld_restart_p8 @@ -93,7 +93,7 @@ export CICE_DIAGFREQ=`expr $((FHMAX-$FHROT)) \* 3600 / $DT_CICE` export FV3_RUN=cpld_control_run.IN -if [[ $MACHINE_ID = derecho ]]; then +if [[ $MACHINE_ID = derecho ]] || [[ $MACHINE_ID = gaeac6 ]]; then TPN=96 fi diff --git a/tests/tests/cpld_restart_pdlib_p8 b/tests/tests/cpld_restart_pdlib_p8 index 8ca61d4e3a..9a3ea199d5 100644 --- a/tests/tests/cpld_restart_pdlib_p8 +++ b/tests/tests/cpld_restart_pdlib_p8 @@ -108,7 +108,7 @@ export WW3_MODDEF=mod_def.exp.${WW3_DOMAIN} export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2sw_fast_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sw_fast.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_restart_qr_p8 b/tests/tests/cpld_restart_qr_p8 index e1d8b85d16..cf0967282a 100644 --- a/tests/tests/cpld_restart_qr_p8 +++ b/tests/tests/cpld_restart_qr_p8 @@ -100,3 +100,7 @@ export N_SPLIT=5 # HR4 GFSv17 GWD update export DO_GWD_OPT_PSL=.true. export DO_GSL_DRAG_SS=.false. + +if [[ $MACHINE_ID = gaeac6 ]]; then + TPN=96 +fi diff --git a/tests/tests/cpld_s2sa_p8 b/tests/tests/cpld_s2sa_p8 index a9fba26d01..80fc63eb56 100644 --- a/tests/tests/cpld_s2sa_p8 +++ b/tests/tests/cpld_s2sa_p8 @@ -75,7 +75,7 @@ export MOM6_ALLOW_LANDMASK_CHANGES=True export eps_imesh=2.5e-1 export DIAG_TABLE=diag_table_template -export UFS_CONFIGURE=ufs.configure.s2sa_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2sa.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/cpld_warmstart_c48 b/tests/tests/cpld_warmstart_c48 index 8f65c964de..0ba17be79d 100644 --- a/tests/tests/cpld_warmstart_c48 +++ b/tests/tests/cpld_warmstart_c48 @@ -165,7 +165,7 @@ export eps_imesh=4.0e-1 export DIAG_TABLE=diag_table_template export FIELD_TABLE=field_table_thompson_noaero_tke -export UFS_CONFIGURE=ufs.configure.s2s_esmf.IN +export UFS_CONFIGURE=ufs.configure.s2s.IN export FV3_RUN=cpld_control_run.IN diff --git a/tests/tests/hrrr_control_2threads b/tests/tests/hrrr_control_2threads index a74ab76253..f326a8bb72 100644 --- a/tests/tests/hrrr_control_2threads +++ b/tests/tests/hrrr_control_2threads @@ -61,3 +61,8 @@ export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' + +ESMF_THREADING=false +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/hrrr_control_2threads_dyn32_phy32 b/tests/tests/hrrr_control_2threads_dyn32_phy32 index a92253d796..9ad003f954 100644 --- a/tests/tests/hrrr_control_2threads_dyn32_phy32 +++ b/tests/tests/hrrr_control_2threads_dyn32_phy32 @@ -62,3 +62,8 @@ export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 export RESTART_INTERVAL="6 -1" export OUTPUT_FH='0 09 12' + +ESMF_THREADING=false +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/rap_2threads b/tests/tests/rap_2threads index ab5fdac9d6..0d0f72bb52 100644 --- a/tests/tests/rap_2threads +++ b/tests/tests/rap_2threads @@ -61,3 +61,11 @@ export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true + WLCLK=50 + TPN=28 +fi diff --git a/tests/tests/rap_2threads_dyn32_phy32 b/tests/tests/rap_2threads_dyn32_phy32 index 8642231ad1..ba91e53a11 100644 --- a/tests/tests/rap_2threads_dyn32_phy32 +++ b/tests/tests/rap_2threads_dyn32_phy32 @@ -62,3 +62,9 @@ export atm_omp_num_threads=2 export INPES=$INPES_thrd export JNPES=$JNPES_thrd export WRTTASK_PER_GROUP=6 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads +if [[ $MACHINE_ID = hercules ]] && [[ $RT_COMPILER = gnu ]]; then + ESMF_THREADING=true +fi diff --git a/tests/tests/regional_2threads b/tests/tests/regional_2threads index 9d3e3d5ce3..0dbf5efc75 100644 --- a/tests/tests/regional_2threads +++ b/tests/tests/regional_2threads @@ -43,3 +43,6 @@ export OUTPUT_FH="3 -1" WRITE_GROUP=1 WRTTASK_PER_GROUP=10 NTILES=1 + +ESMF_THREADING=false +THRD=$atm_omp_num_threads diff --git a/tests/tests/regional_atmaq b/tests/tests/regional_atmaq index df4603f299..68d0f30739 100644 --- a/tests/tests/regional_atmaq +++ b/tests/tests/regional_atmaq @@ -99,6 +99,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 fi diff --git a/tests/tests/regional_atmaq_debug b/tests/tests/regional_atmaq_debug index 30783d3b52..e45187a264 100644 --- a/tests/tests/regional_atmaq_debug +++ b/tests/tests/regional_atmaq_debug @@ -98,6 +98,8 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 WLCLK=60 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=16 +elif [[ $MACHINE_ID = gaeac6 ]]; then + TPN=128 fi diff --git a/tests/tests/regional_atmaq_faster b/tests/tests/regional_atmaq_faster index 6ccb25375a..17491bc515 100644 --- a/tests/tests/regional_atmaq_faster +++ b/tests/tests/regional_atmaq_faster @@ -93,6 +93,6 @@ export CCPP_SUITE=FV3_GFS_v15p2 if [[ $MACHINE_ID = hera ]]; then TPN=30 -elif [[ $MACHINE_ID = gaea ]]; then +elif [[ $MACHINE_ID = gaeac5 ]]; then TPN=18 fi diff --git a/tests/tests/regional_debug b/tests/tests/regional_debug index f4f6326b90..13f2e328cd 100644 --- a/tests/tests/regional_debug +++ b/tests/tests/regional_debug @@ -41,6 +41,11 @@ if [[ " hera orion hercules jet " =~ " ${MACHINE_ID} " ]] ; then ZSTANDARD_LEVEL=5 fi -if [[ $MACHINE_ID = gaea && $RT_COMPILER = intelllvm ]]; then +if [[ $MACHINE_ID = gaeac5 && $RT_COMPILER = intelllvm ]]; then WLCLK=50 fi + +if [[ $MACHINE_ID = gaeac6 && $RT_COMPILER = intelllvm ]]; then + WLCLK=50 +fi +