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 index 71a305f7ff..234040e0f1 100644 --- a/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 +++ b/CDEPS-interface/ufs/cdeps_share/shr_is_restart_fh_mod.F90 @@ -122,49 +122,81 @@ end subroutine is_restart_fh !! !> @details Write a log file for a named component when a restart file is written !! - !! @param[in] nextTime the ESMF time at the end of a ModelAdvance - !! @param[in] startTime the ESMF time at the Model Start - !! @param[in] complog the named component + !! @param[in] nextTime the ESMF time at the end of a ModelAdvance + !! @param[in] startTime the ESMF time at the Model Start + !! @param[in] complog the named component + !! @param[in] prefixtime optional, if true log filename has time prefix + !! @param[in] lastrestart optional, if present, write the time of the last restart + !! @param[in] lastoutput optional, if present, write the filename written at this FH !! @param[out] rc return code !! !> @authorDenise.Worthen@noaa.gov !> @date 04-14-2025 - subroutine log_restart_fh(nextTime, startTime, complog, rc) + subroutine log_restart_fh(myTime, startTime, complog, prefixtime, lastrestart, lastoutput, rc) use ESMF, only : ESMF_SUCCESS, ESMF_MAXSTR, ESMF_Time, ESMF_TimeInterval use ESMF, only : ESMF_TimeGet, ESMF_TimeIntervalGet use ESMF, only : operator(==), operator(-) - type(ESMF_Time), intent(in) :: nextTime, startTime - character(len=*), intent(in) :: complog - integer, intent(out) :: rc + type(ESMF_Time), intent(in) :: myTime, startTime + character(len=*), intent(in) :: complog + logical, intent(in), optional :: prefixtime + type(ESMF_Time), intent(in), optional :: lastrestart + character(len=*), intent(in), optional :: lastoutput + integer, intent(out) :: rc ! local variables type(ESMF_TimeInterval) :: elapsedTime real(ESMF_KIND_R8) :: fhour character(ESMF_MAXSTR) :: filename character(ESMF_MAXSTR) :: nexttimestring + character(ESMF_MAXSTR) :: timestring integer :: fh_logunit integer :: yr,mon,day,hour,minute,sec ! time units + logical :: lprefix + character(ESMF_MAXSTR) :: lastout character(len=*), parameter :: subname='(log_restart_fh)' !----------------------------------------------------------------------- call ESMF_LogWrite(trim(subname)//": called", ESMF_LOGMSG_INFO) rc = ESMF_SUCCESS - elapsedTime = nextTime - startTime + lprefix = .false. + if (present(prefixtime)) then + lprefix = prefixtime + end if + lastout = '' + if (present(lastoutput)) then + lastout = trim(lastoutput) + end if + + elapsedTime = myTime - startTime call ESMF_TimeIntervalGet(elapsedTime, h_r8=fhour,rc=rc) if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return - - call ESMF_TimeGet(nexttime, yy=yr, mm=mon, dd=day, h=hour, m=minute, s=sec, rc=rc) + call ESMF_TimeGet(myTime, yy=yr, mm=mon, dd=day, h=hour, m=minute, s=sec, rc=rc) if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return write(nexttimestring,'(6i8)')yr,mon,day,hour,minute,sec + if (lprefix) then + write(filename,'(i4.4,2(i2.2),A,3(i2.2),A)') yr, mon, day,'.', hour, minute, sec,'.'//trim(complog) + else + write(filename,'(a,i4.4)')'log.'//trim(complog)//'.f',int(fhour) + end if + if (present(lastrestart)) then + call ESMF_TimeGet(lastrestart, yy=yr, mm=mon, dd=day, h=hour, m=minute, s=sec, rc=rc) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + write(timestring,'(6i8)')yr,mon,day,hour,minute,sec + end if - write(filename,'(a,i4.4)')'log.'//trim(complog)//'.f',int(fhour) open(newunit=fh_logunit,file=trim(filename)) write(fh_logunit,'(a)')'completed: '//trim(complog) write(fh_logunit,'(a,f10.3)')'forecast hour:',fhour write(fh_logunit,'(a)')'valid time: '//trim(nexttimestring) + if (len_trim(lastout) > 0) then + write(fh_logunit,'(a)')'last output: '//trim(lastout) + end if + if (present(lastrestart)) then + write(fh_logunit,'(a)')'last restart: '//trim(timestring) + end if close(fh_logunit) end subroutine log_restart_fh diff --git a/MOM6-interface/MOM6 b/MOM6-interface/MOM6 index 9c8b26c2d8..41f39db799 160000 --- a/MOM6-interface/MOM6 +++ b/MOM6-interface/MOM6 @@ -1 +1 @@ -Subproject commit 9c8b26c2d870636f359f2ef62ef775639132b3ba +Subproject commit 41f39db7990b82ae037b632ca3feb4d79762af62 diff --git a/MOM6-interface/mom6_files.cmake b/MOM6-interface/mom6_files.cmake index 4357cdedb3..7f5decc0b5 100644 --- a/MOM6-interface/mom6_files.cmake +++ b/MOM6-interface/mom6_files.cmake @@ -335,6 +335,7 @@ list(APPEND mom6_nuopc_src_files MOM6/config_src/drivers/nuopc_cap/mom_cap_time.F90 MOM6/config_src/drivers/nuopc_cap/mom_ocean_model_nuopc.F90 MOM6/config_src/drivers/nuopc_cap/mom_surface_forcing_nuopc.F90 + MOM6/config_src/drivers/nuopc_cap/mom_cap_outputlog.F90 MOM6/config_src/drivers/unit_tests/test_MOM_file_parser.F90 MOM6/config_src/drivers/unit_tests/test_MOM_mixedlayer_restrat.F90 MOM6/config_src/drivers/unit_tests/test_MOM_string_functions.F90 diff --git a/tests/bl_date.conf b/tests/bl_date.conf index bdf07c6b0e..ad47bc7c8f 100644 --- a/tests/bl_date.conf +++ b/tests/bl_date.conf @@ -1 +1 @@ -export BL_DATE=20251204 +export BL_DATE=20251211 diff --git a/tests/default_vars.sh b/tests/default_vars.sh index fecdd4f76f..c87b4100a1 100644 --- a/tests/default_vars.sh +++ b/tests/default_vars.sh @@ -1398,6 +1398,7 @@ export CHOUR=06 export MOM6_OUTPUT_DIR=./MOM6_OUTPUT export MOM6_RESTART_DIR=./RESTART/ export MOM6_RESTART_SETTING=n +export MOM6_OUTPUT_FH=6 # Following not used for standalone export USE_CICE_ALB=.false. diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 8e0e663013..0c4277f747 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Wed Dec 10 23:19:06 UTC 2025 +Fri Dec 12 01:57:34 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/bit_base_bit_base Checking test bit_base results .... Moving baseline bit_base files .... Moving sfcf000.nc .........OK @@ -51,14 +51,14 @@ Moving baseline bit_base files .... 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 = 261.650748 - 0: The maximum resident set size (KB) = 1532248 + 0: The total amount of wall time = 259.886628 + 0: The maximum resident set size (KB) = 1554012 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/dbg_base_dbg_base Checking test dbg_base results .... Moving baseline dbg_base files .... Moving sfcf000.nc .........OK @@ -106,14 +106,14 @@ Moving baseline dbg_base files .... 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 = 894.267249 - 0: The maximum resident set size (KB) = 1525316 + 0: The total amount of wall time = 863.198699 + 0: The maximum resident set size (KB) = 1526276 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/dcp_dcp Checking test dcp results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -160,14 +160,14 @@ Checking test dcp results .... 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 = 232.090795 - 0: The maximum resident set size (KB) = 1505836 + 0: The total amount of wall time = 232.228539 + 0: The maximum resident set size (KB) = 1524632 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/mpi_mpi +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/mpi_mpi Checking test mpi results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -214,14 +214,14 @@ Checking test mpi results .... 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 = 232.546106 - 0: The maximum resident set size (KB) = 1505032 + 0: The total amount of wall time = 231.630225 + 0: The maximum resident set size (KB) = 1537340 Test mpi PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/rst_rst Checking test rst results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -268,14 +268,14 @@ Checking test rst results .... 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 = 230.874508 - 0: The maximum resident set size (KB) = 1546676 + 0: The total amount of wall time = 236.316792 + 0: The maximum resident set size (KB) = 1526712 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/std_base_std_base Checking test std_base results .... Moving baseline std_base files .... Moving sfcf000.nc .........OK @@ -323,14 +323,14 @@ Moving baseline std_base files .... 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 = 230.746165 - 0: The maximum resident set size (KB) = 1524708 + 0: The total amount of wall time = 236.068435 + 0: The maximum resident set size (KB) = 1536584 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2257990/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2782280/thr_thr Checking test thr results .... Comparing sfcf000.nc .....USING NCCMP......OK Comparing sfcf021.nc .....USING NCCMP......OK @@ -377,11 +377,11 @@ Checking test thr results .... 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 = 234.457542 - 0: The maximum resident set size (KB) = 1537004 + 0: The total amount of wall time = 232.700810 + 0: The maximum resident set size (KB) = 1526152 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Dec 11 00:29:35 UTC 2025 -Elapsed time: 01h:10m:29s. Have a nice day! +Fri Dec 12 03:03:25 UTC 2025 +Elapsed time: 01h:05m:52s. 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 d49a19ae71..70601d7e8d 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 @@ -Wed Dec 10 21:51:42 UTC 2025 +Fri Dec 12 00:33:21 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1572526/dbg_base_dbg_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2421191/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 = 2289.100653 - 0: The maximum resident set size (KB) = 1639804 + 0: The total amount of wall time = 2287.613387 + 0: The maximum resident set size (KB) = 1627408 Test dbg_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1572526/rst_rst +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2421191/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 = 587.902901 - 0: The maximum resident set size (KB) = 1636388 + 0: The total amount of wall time = 584.586746 + 0: The maximum resident set size (KB) = 1619408 Test rst PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1572526/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2421191/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 = 588.648106 - 0: The maximum resident set size (KB) = 1636224 + 0: The total amount of wall time = 588.503526 + 0: The maximum resident set size (KB) = 1632140 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Dec 10 23:19:06 UTC 2025 -Elapsed time: 01h:27m:24s. Have a nice day! +Fri Dec 12 01:57:33 UTC 2025 +Elapsed time: 01h:24m:12s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index 122c4ee5bc..c20d1e7b6b 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Wed Dec 10 20:57:58 UTC 2025 +Thu Dec 11 23:39:42 UTC 2025 Start Operation Requirement Test baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1466400/bit_base_bit_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2143820/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 = 611.902586 - 0: The maximum resident set size (KB) = 890648 + 0: The total amount of wall time = 619.196221 + 0: The maximum resident set size (KB) = 889664 Test bit_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1466400/dcp_dcp +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2143820/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 = 502.095487 - 0: The maximum resident set size (KB) = 862840 + 0: The total amount of wall time = 501.766802 + 0: The maximum resident set size (KB) = 860848 Test dcp PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1466400/std_base_std_base +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2143820/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 = 504.715041 - 0: The maximum resident set size (KB) = 863284 + 0: The total amount of wall time = 503.690798 + 0: The maximum resident set size (KB) = 856260 Test std_base PASS baseline dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-stmp/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_1466400/thr_thr +working dir = /scratch3/NCEPDEV/stmp/role.epic/ORT-ptmp/role.epic/FV3_OPNREQ_TEST/opnReqTest_2143820/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 = 504.724938 - 0: The maximum resident set size (KB) = 875072 + 0: The total amount of wall time = 507.919821 + 0: The maximum resident set size (KB) = 861772 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Wed Dec 10 21:51:42 UTC 2025 -Elapsed time: 00h:53m:44s. Have a nice day! +Fri Dec 12 00:33:21 UTC 2025 +Elapsed time: 00h:53m:41s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 42421ef3cd..03b83534f6 100644 --- a/tests/logs/RegressionTests_acorn.log +++ b/tests/logs/RegressionTests_acorn.log @@ -1,7 +1,7 @@ ====START OF ACORN REGRESSION TESTING LOG==== UFSWM hash used in testing: -332b4f927f511d45798dece9fd418e4b899f89c9 +339b0606b8f8267f995f8e0992f7d895c2586a75 Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -15,11 +15,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -40,288 +40,288 @@ 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-20251204 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1602547 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1271797 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:33, 17:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:41, 06:41](3323 MB) -PASS -- TEST 'cpld_control_gefs_intel' [49:50, 17:06](4103 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [25:14, 07:48](3904 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 17:11] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [21:18, 13:13](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:24, 14:04](1942 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:03, 06:16](1071 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:17, 06:28](1932 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:35, 15:16](1873 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [16:30, 14:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:39, 11:50](2195 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [20:40, 06:06](1355 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:18, 04:40] ( 334 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [18:31, 13:03](2232 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:20, 05:15] ( 334 warnings 1784 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [24:59, 20:22](1941 MB) - -PASS -- COMPILE 's2swa_intel' [18:33, 16:55] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [21:15, 08:27](3357 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [22:35, 08:17](3358 MB) -PASS -- TEST 'cpld_restart_p8_intel' [12:58, 04:46](3238 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [20:24, 08:25](3377 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [11:18, 04:53](3254 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:11, 07:50](3563 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [15:57, 08:09](3346 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [20:24, 06:49](3291 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [16:41, 08:25](3357 MB) - -PASS -- COMPILE 's2swal_intel' [18:31, 17:11] ( 1 warnings 2 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [14:37, 08:35](3358 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [14:37, 04:51](3238 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:09, 08:28](3327 MB) - -PASS -- COMPILE 's2sw_intel' [17:32, 15:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:33, 04:47](1916 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:58, 07:18](1968 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:31, 15:00] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:01, 05:08](1968 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:40] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [23:37, 08:11](3359 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [17:30, 15:33] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [24:06, 13:06](1920 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:59, 06:19](1103 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [30:09, 15:38](1891 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:41, 06:00](2886 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:30, 02:02](2891 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:23, 01:13](2296 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [05:57, 01:25](2109 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:57, 00:57](2116 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:51, 00:43](1452 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [05:56, 01:15](2117 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:55, 00:58](2111 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [05:49, 00:49](1454 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [04:54, 00:57](2039 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [05:50, 00:35](2044 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:47, 00:30](1399 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:43] ( 334 warnings 1784 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:49, 24:24](1961 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:25, 10:46] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:42, 03:58](684 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [12:43, 02:25](1564 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [13:52, 02:30](1577 MB) -PASS -- TEST 'control_latlon_intel' [11:40, 02:37](1575 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:48, 02:36](1572 MB) -PASS -- TEST 'control_c48_intel' [10:49, 06:22](1589 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:45, 05:43](722 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [12:56, 06:15](1591 MB) -PASS -- TEST 'control_c192_intel' [14:01, 07:02](1701 MB) -PASS -- TEST 'control_c384_intel' [34:35, 08:34](1995 MB) -PASS -- TEST 'control_c384gdas_intel' [46:19, 09:36](1135 MB) -PASS -- TEST 'control_stochy_intel' [08:38, 01:51](635 MB) -PASS -- TEST 'control_stochy_restart_intel' [07:37, 01:09](400 MB) -PASS -- TEST 'control_lndp_intel' [08:36, 01:47](636 MB) -PASS -- TEST 'control_iovr4_intel' [08:38, 02:40](630 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:56, 03:00](916 MB) -PASS -- TEST 'control_iovr5_intel' [08:40, 02:34](633 MB) -PASS -- TEST 'control_p8_intel' [09:27, 02:56](1853 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:39, 03:05](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:15, 02:55](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [10:22, 02:56](1875 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [10:44, 03:06](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [10:49, 02:25](2429 MB) -PASS -- TEST 'control_restart_p8_intel' [08:17, 01:49](1010 MB) -PASS -- TEST 'control_noqr_p8_intel' [10:21, 02:57](1852 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:38, 02:02](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:35, 03:09](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [11:36, 02:48](1930 MB) -PASS -- TEST 'control_p8_lndp_intel' [12:04, 05:03](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:14, 04:07](1906 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:07, 03:05](1868 MB) -PASS -- TEST 'merra2_thompson_intel' [12:37, 03:36](1855 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [11:16, 04:27](1863 MB) -PASS -- TEST 'regional_control_intel' [07:54, 05:02](877 MB) -PASS -- TEST 'regional_restart_intel' [04:53, 02:50](879 MB) -PASS -- TEST 'regional_decomp_intel' [07:51, 05:21](879 MB) -PASS -- TEST 'regional_2threads_intel' [07:50, 03:17](993 MB) -PASS -- TEST 'regional_noquilt_intel' [06:52, 04:55](1171 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:51, 05:08](876 MB) -PASS -- TEST 'regional_wofs_intel' [08:54, 06:36](1610 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:24, 09:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:11, 04:04](1883 MB) - -PASS -- COMPILE 'rrfs_intel' [10:24, 08:50] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:29, 03:58](1012 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:22, 04:13](1187 MB) -PASS -- TEST 'rap_decomp_intel' [07:26, 04:04](1012 MB) -PASS -- TEST 'rap_2threads_intel' [06:41, 03:30](1077 MB) -PASS -- TEST 'rap_restart_intel' [07:17, 02:08](765 MB) -PASS -- TEST 'rap_sfcdiff_intel' [08:16, 03:51](1003 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:31, 04:01](1008 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:15, 02:12](763 MB) -PASS -- TEST 'hrrr_control_intel' [07:33, 03:54](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:32, 03:47](1006 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:19, 03:26](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [07:39, 02:06](759 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:06, 06:58](1001 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:42, 08:38](1966 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 08:13](1960 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:39] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [08:57, 06:28](962 MB) -PASS -- TEST 'control_ras_intel' [06:33, 03:23](669 MB) - -PASS -- COMPILE 'wam_intel' [09:22, 08:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:16, 12:43](1649 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:23, 08:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:07, 03:03](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 05:03](869 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 05:01] ( 415 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [12:47, 02:33](1603 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:47, 02:46](1613 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:38, 03:36](819 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:18](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:53, 04:55](1109 MB) -PASS -- TEST 'control_ras_debug_intel' [05:34, 03:15](825 MB) -PASS -- TEST 'control_diag_debug_intel' [05:37, 03:18](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [08:10, 03:08](1898 MB) -PASS -- TEST 'regional_debug_intel' [21:13, 18:28](960 MB) -PASS -- TEST 'rap_control_debug_intel' [08:36, 05:44](1188 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:42, 05:47](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:38, 05:53](1190 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:39, 05:48](1189 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:34, 05:41](1184 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:46, 06:07](1273 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:38, 05:50](1188 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:37, 06:00](1190 MB) -PASS -- TEST 'rap_lndp_debug_intel' [10:39, 05:51](1196 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:38, 05:40](1188 MB) -PASS -- TEST 'rap_noah_debug_intel' [12:40, 05:34](1186 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [12:39, 05:45](1186 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [15:45, 09:08](1190 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [12:41, 05:46](1191 MB) -PASS -- TEST 'rap_flake_debug_intel' [11:39, 05:40](1188 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [18:32, 09:57](1196 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:18, 03:29] ( 377 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [21:19, 14:37](1695 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:20] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [16:26, 03:56](1029 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [11:09, 03:11](887 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [11:41, 03:07](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:22, 02:59](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [10:49, 02:52](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:48, 03:23](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:04, 01:50](731 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:34, 01:53](720 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 08:07] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:30, 03:00](1014 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:06, 01:19](1142 MB) -PASS -- TEST 'conus13km_decomp_intel' [08:12, 02:56](1024 MB) -PASS -- TEST 'conus13km_restart_intel' [05:06, 01:50](683 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:25, 08:29] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [11:05, 04:05](913 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:21, 03:37] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:38, 05:36](1069 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:41, 05:27](1062 MB) -PASS -- TEST 'conus13km_debug_intel' [30:35, 23:56](1099 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [29:33, 24:16](793 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [19:16, 13:35](1221 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [29:19, 24:48](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:25, 23:55](1166 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 03:32] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:37, 05:38](1098 MB) - -PASS -- COMPILE 'hafsw_intel' [15:30, 12:06] ( 1 warnings 1 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [10:04, 04:38](700 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [15:14, 04:50](907 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [10:45, 03:44](1049 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:13, 11:50](899 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [12:04, 05:33](463 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:14, 06:45](501 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:03, 03:09](374 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [30:16, 07:50](423 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [14:02, 03:52](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [16:07, 03:38](495 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [12:41, 01:31](403 MB) -PASS -- TEST 'gnv1_nested_intel' [08:07, 03:40](1697 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [13:28, 10:26] ( 1 warnings ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:32, 05:27](775 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:26, 09:04] ( 1 warnings ) -PASS -- TEST 'hafs_regional_docn_intel' [17:13, 06:49](742 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [18:13, 06:54](724 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [17:31, 13:46] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:27, 03:03](1564 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:29, 02:01](1567 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:25, 02:57](684 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:28, 02:49](684 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:27, 02:47](681 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:29, 03:06](1565 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [07:28, 03:07](1567 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:27, 02:42](683 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:30, 07:08](1366 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [14:28, 06:58](704 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:24, 03:04](1567 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:28, 05:12](4521 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [08:32, 05:16](4521 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:32, 13:48] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:27, 03:05](1568 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [05:18, 00:54] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:43, 01:15](303 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [06:37, 00:50](436 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:37, 00:49](438 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:30, 14:29] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:35, 03:58](1907 MB) - -PASS -- COMPILE 'atml_intel' [13:25, 10:12] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [09:22, 03:27](1861 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:06](1031 MB) - -PASS -- COMPILE 'atml_debug_intel' [11:24, 04:35] ( 420 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:19, 05:44](1909 MB) - -PASS -- COMPILE 'atmw_intel' [15:29, 08:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [08:10, 02:07](1872 MB) - -PASS -- COMPILE 'atmaero_intel' [21:35, 15:15] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [10:01, 04:36](3226 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:38, 05:11](3108 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:40, 05:23](3114 MB) - -PASS -- COMPILE 'atmaq_intel' [10:23, 08:42] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [22:04, 15:02](2398 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [23:45, 17:46](2441 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [07:21, 03:38] ( 394 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [47:09, 40:35](1890 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:33, 16:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:52, 06:31](3322 MB) +PASS -- TEST 'cpld_control_gefs_intel' [49:48, 17:14](4101 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [24:55, 07:55](3906 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:32, 16:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [23:41, 13:27](1896 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:30, 14:12](1941 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:13, 06:20](1071 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [14:19, 06:30](1929 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [22:32, 15:29](1872 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:29, 14:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:29, 11:55](2196 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [21:41, 06:09](1353 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:19, 04:38] ( 334 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [18:19, 13:15](2231 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 05:03] ( 334 warnings 1784 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:19, 20:27](1940 MB) + +PASS -- COMPILE 's2swa_intel' [18:33, 16:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:15, 08:24](3358 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:41, 08:19](3358 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:55, 04:46](3238 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [13:32, 08:26](3376 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [15:28, 04:46](3255 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:00, 07:44](3563 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [15:00, 08:15](3349 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [19:25, 06:53](3296 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [21:45, 08:18](3358 MB) + +PASS -- COMPILE 's2swal_intel' [18:31, 16:46] ( 1 warnings 2 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [23:41, 08:36](3357 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:35, 04:59](3239 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [13:24, 08:27](3328 MB) + +PASS -- COMPILE 's2sw_intel' [17:31, 15:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:31, 04:39](1916 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:00, 07:11](1968 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:31, 14:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:57, 05:07](1968 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:35, 08:15](3360 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:30, 15:46] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:00, 13:04](1919 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:55, 06:21](1111 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [29:06, 15:13](1891 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [11:48, 05:58](2889 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [08:30, 02:08](2895 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:26, 01:18](2296 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [05:56, 01:16](2107 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [05:57, 00:39](2116 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:51, 00:52](1452 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:56, 01:19](2109 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:56, 00:50](2112 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [06:51, 00:51](1455 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [05:56, 00:51](2041 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [05:49, 00:47](2043 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:48, 00:32](1398 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:18, 04:40] ( 334 warnings 1784 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:05, 24:15](1960 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:25, 10:39] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [17:47, 04:01](683 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [13:46, 02:25](1563 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:53, 02:38](1574 MB) +PASS -- TEST 'control_latlon_intel' [12:40, 02:31](1574 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:49, 02:33](1575 MB) +PASS -- TEST 'control_c48_intel' [10:49, 06:16](1598 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:46, 05:40](720 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [13:53, 06:29](1594 MB) +PASS -- TEST 'control_c192_intel' [16:04, 07:12](1703 MB) +PASS -- TEST 'control_c384_intel' [49:56, 08:38](1992 MB) +PASS -- TEST 'control_c384gdas_intel' [59:36, 09:46](1131 MB) +PASS -- TEST 'control_stochy_intel' [09:41, 02:04](635 MB) +PASS -- TEST 'control_stochy_restart_intel' [06:37, 01:06](401 MB) +PASS -- TEST 'control_lndp_intel' [08:39, 01:51](635 MB) +PASS -- TEST 'control_iovr4_intel' [09:41, 02:46](631 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [08:57, 03:00](912 MB) +PASS -- TEST 'control_iovr5_intel' [07:38, 02:39](633 MB) +PASS -- TEST 'control_p8_intel' [09:23, 02:59](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:37, 03:05](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:11, 02:56](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [09:12, 02:55](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [09:35, 03:08](1884 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [09:54, 02:33](2429 MB) +PASS -- TEST 'control_restart_p8_intel' [07:16, 01:51](1012 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:40, 03:01](1853 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [06:48, 01:45](1011 MB) +PASS -- TEST 'control_decomp_p8_intel' [09:00, 03:08](1845 MB) +PASS -- TEST 'control_2threads_p8_intel' [09:50, 02:43](1932 MB) +PASS -- TEST 'control_p8_lndp_intel' [11:01, 04:55](1857 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [11:19, 04:07](1906 MB) +PASS -- TEST 'control_p8_mynn_intel' [10:06, 03:11](1870 MB) +PASS -- TEST 'merra2_thompson_intel' [11:34, 03:29](1856 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [12:19, 04:35](1862 MB) +PASS -- TEST 'regional_control_intel' [08:00, 05:04](871 MB) +PASS -- TEST 'regional_restart_intel' [04:53, 02:48](879 MB) +PASS -- TEST 'regional_decomp_intel' [07:51, 05:16](878 MB) +PASS -- TEST 'regional_2threads_intel' [08:50, 03:07](993 MB) +PASS -- TEST 'regional_noquilt_intel' [07:52, 05:07](1168 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:52, 05:01](877 MB) +PASS -- TEST 'regional_wofs_intel' [09:01, 06:36](1607 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:26, 09:54] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [09:13, 04:06](1882 MB) + +PASS -- COMPILE 'rrfs_intel' [11:25, 08:54] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [09:13, 03:58](1010 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:20, 04:22](1174 MB) +PASS -- TEST 'rap_decomp_intel' [08:26, 03:58](1017 MB) +PASS -- TEST 'rap_2threads_intel' [08:25, 03:36](1074 MB) +PASS -- TEST 'rap_restart_intel' [06:20, 02:08](763 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:02, 03:54](1004 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:27, 04:03](1010 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:15, 02:12](760 MB) +PASS -- TEST 'hrrr_control_intel' [07:44, 03:55](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:23, 03:54](997 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:25, 03:21](1071 MB) +PASS -- TEST 'hrrr_control_restart_intel' [05:35, 02:12](756 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:05, 06:56](1001 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:41, 08:31](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:42, 08:17](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [10:24, 08:39] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [10:01, 06:37](959 MB) +PASS -- TEST 'control_ras_intel' [06:32, 03:23](663 MB) + +PASS -- COMPILE 'wam_intel' [09:22, 08:07] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:13, 12:32](1657 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:08] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:10, 03:12](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [06:56, 05:02](877 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 05:05] ( 415 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:39, 02:40](1604 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:40, 02:53](1615 MB) +PASS -- TEST 'control_stochy_debug_intel' [06:33, 03:33](818 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:31, 03:12](818 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:53, 04:58](1111 MB) +PASS -- TEST 'control_ras_debug_intel' [05:31, 03:12](827 MB) +PASS -- TEST 'control_diag_debug_intel' [05:44, 03:13](1675 MB) +PASS -- TEST 'control_debug_p8_intel' [07:04, 03:16](1900 MB) +PASS -- TEST 'regional_debug_intel' [21:10, 18:33](933 MB) +PASS -- TEST 'rap_control_debug_intel' [08:37, 06:02](1190 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:39, 05:33](1184 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [09:36, 05:40](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 05:45](1192 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:34, 05:39](1191 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:43, 06:10](1276 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:36, 05:49](1190 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [09:34, 05:56](1193 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:37, 05:57](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:34, 05:45](1190 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:35, 05:44](1189 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [08:36, 05:36](1190 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:37, 09:05](1189 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [08:35, 05:41](1192 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:39, 05:47](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:29, 09:41](1194 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:33] ( 377 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [29:29, 14:36](1698 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:24, 08:17] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [11:22, 03:58](1029 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:03, 03:20](886 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [09:06, 03:05](885 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:28, 03:04](938 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:51, 02:52](927 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [09:51, 03:17](889 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:59, 01:49](730 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:34, 01:52](722 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 08:04] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:32, 02:53](1014 MB) +PASS -- TEST 'conus13km_2threads_intel' [05:01, 01:25](1135 MB) +PASS -- TEST 'conus13km_decomp_intel' [07:09, 02:57](1024 MB) +PASS -- TEST 'conus13km_restart_intel' [05:08, 01:50](682 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:23, 08:30] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:55, 04:07](919 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:20, 03:34] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [08:34, 05:34](1068 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [08:37, 05:33](1066 MB) +PASS -- TEST 'conus13km_debug_intel' [26:29, 24:01](1098 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [26:25, 24:16](791 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:11, 13:41](1204 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [27:26, 24:55](1106 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [27:26, 24:13](1167 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [07:20, 03:33] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [09:37, 05:49](1103 MB) + +PASS -- COMPILE 'hafsw_intel' [14:28, 12:21] ( 1 warnings 1 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [25:19, 04:42](701 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [27:30, 04:52](907 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [25:01, 03:42](1045 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [16:12, 11:45](786 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:16, 05:34](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:06, 06:41](472 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:56, 03:10](378 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [33:18, 07:52](423 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:53, 03:55](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:57, 03:35](497 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:37, 01:32](407 MB) +PASS -- TEST 'gnv1_nested_intel' [07:22, 03:50](1692 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:27, 10:23] ( 1 warnings ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [26:42, 05:24](773 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:25, 09:06] ( 1 warnings ) +PASS -- TEST 'hafs_regional_docn_intel' [13:10, 06:55](743 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:07, 06:49](767 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [19:34, 13:53] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:28, 03:03](1565 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:28, 02:11](1567 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [06:27, 02:46](683 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:27, 02:47](681 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [05:26, 02:50](682 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [08:29, 03:08](1564 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [08:30, 03:10](1564 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:28, 02:47](682 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:39, 07:09](1366 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:33, 06:56](708 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:25, 03:03](1564 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:30, 05:16](4521 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:29, 05:16](4520 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:33, 14:02] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [06:28, 03:15](1565 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:19, 00:54] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [04:40, 01:06](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:38, 01:00](438 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [05:40, 00:37](437 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:31, 14:27] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:39, 03:52](1909 MB) + +PASS -- COMPILE 'atml_intel' [15:28, 10:12] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:23, 03:27](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:03](1030 MB) + +PASS -- COMPILE 'atml_debug_intel' [11:24, 04:36] ( 420 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:18, 05:52](1908 MB) + +PASS -- COMPILE 'atmw_intel' [15:29, 08:56] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:05, 02:05](1870 MB) + +PASS -- COMPILE 'atmaero_intel' [22:36, 15:13] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:51, 04:48](3227 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:35, 05:17](3109 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:38, 05:26](3115 MB) + +PASS -- COMPILE 'atmaq_intel' [10:23, 08:39] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [24:06, 14:51](2397 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [25:00, 17:51](2454 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:20, 03:39] ( 394 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [48:19, 40:29](1864 MB) SYNOPSIS: -Starting Date/Time: 20251211 14:45:32 -Ending Date/Time: 20251211 17:20:52 -Total Time: 02h:35m:54s +Starting Date/Time: 20251212 14:31:39 +Ending Date/Time: 20251212 17:06:38 +Total Time: 02h:35m:31s Compiles Completed: 38/38 Tests Completed: 195/195 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index b2f3971f3a..bf8f2caa20 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,7 +1,7 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -027200541a523ec033359dae21e002ead1482661 +cc3dfdeab63eb8a1a0a022ac4097f1bea693e2b1 Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -12,10 +12,10 @@ Submodule hashes used in testing: 9ff3df9545dd582f415f682d3297e8c6c841e5cb GOCART (sdr_v2.1.2.6-291-g9ff3df9) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -26,419 +26,419 @@ 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: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251204 -COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_1072064 +BASELINE DIRECTORY: /scratch3/NAGAPE/epic/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /scratch3/NCEPDEV/stmp/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_4072763 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [21:11, 18:45] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [24:16, 11:19](2209 MB) -PASS -- TEST 'cpld_control_gefs_intel' [41:13, 15:51](3035 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [22:23, 05:27](2728 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [39:24, 16:07](3052 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:12, 18:51] ( 1 warnings 1040 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [29:08, 17:14](2081 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:05, 18:12](2275 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [10:01, 06:59](1362 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:05, 07:54](2209 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [24:09, 20:56](1863 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [19:11, 17:40] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [27:44, 11:29](2225 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [11:33, 05:55](1501 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:11, 03:34] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [17:26, 11:53](2251 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:14] ( 338 warnings 2771 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:44, 21:58](1923 MB) - -PASS -- COMPILE 's2swa_intel' [21:11, 19:12] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [24:23, 12:00](2285 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [24:23, 11:53](2246 MB) -PASS -- TEST 'cpld_restart_p8_intel' [10:15, 06:02](1888 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [24:19, 11:21](2276 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:13, 06:02](1883 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [27:21, 12:07](2323 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [25:19, 11:43](2244 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [23:16, 11:08](2051 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [25:22, 11:38](2240 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [28:19, 14:47](2658 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:53, 09:05](2820 MB) - -PASS -- COMPILE 's2swal_intel' [20:11, 19:09] ( 1 warnings 1063 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [26:08, 12:24](2113 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:16, 06:18](1731 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:52, 07:16](2239 MB) - -PASS -- COMPILE 's2sw_intel' [20:11, 18:17] ( 1 warnings 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:45, 11:04](2096 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:55, 06:07](2176 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 04:18] ( 338 warnings 2020 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:55, 13:25](2310 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:50] ( 338 warnings 2002 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:50, 06:43](2129 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:11, 17:46] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [16:01, 04:12](2166 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:46] ( 1 warnings 1028 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:01, 11:30](2282 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:57] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:52, 15:07](2123 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:57, 06:55](1372 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:49, 17:45](1939 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [09:36, 07:18](3059 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:37, 02:11](3074 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:41, 01:19](2498 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [03:33, 01:10](2259 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [03:31, 00:41](2254 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:35, 00:35](1574 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:32, 01:11](2251 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [03:30, 00:40](2251 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [03:34, 00:32](1577 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:31, 00:42](2183 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:31, 00:33](2185 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:33, 00:28](1530 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:47] ( 338 warnings 2753 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 27:45](1977 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:54] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [15:25, 03:12](825 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [17:27, 02:09](1722 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [17:29, 02:25](1723 MB) -PASS -- TEST 'control_latlon_intel' [17:26, 02:16](1716 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [17:29, 02:21](1714 MB) -PASS -- TEST 'control_c48_intel' [18:28, 06:30](1724 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [18:27, 06:08](844 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [18:28, 06:41](1719 MB) -PASS -- TEST 'control_c192_intel' [20:37, 06:56](1925 MB) -PASS -- TEST 'control_c384_intel' [23:21, 07:42](2006 MB) -PASS -- TEST 'control_c384gdas_intel' [12:09, 08:21](1357 MB) -PASS -- TEST 'control_stochy_intel' [03:20, 01:37](782 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:21, 00:58](624 MB) -PASS -- TEST 'control_lndp_intel' [04:20, 01:29](777 MB) -PASS -- TEST 'control_iovr4_intel' [04:21, 02:21](776 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:33, 02:53](1075 MB) -PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](780 MB) -PASS -- TEST 'control_p8_intel' [06:49, 02:44](2008 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:53, 02:54](2010 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [06:44, 02:45](2009 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:45, 02:45](2028 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [05:45, 02:51](2047 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:47, 02:03](2396 MB) -PASS -- TEST 'control_restart_p8_intel' [03:41, 01:38](1273 MB) -PASS -- TEST 'control_noqr_p8_intel' [05:44, 02:44](2002 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:38, 01:35](1274 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:40, 02:51](1998 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:41, 03:55](2011 MB) -PASS -- TEST 'control_p8_lndp_intel' [06:35, 04:42](2009 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:47, 03:52](2064 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:43, 02:54](2014 MB) -PASS -- TEST 'merra2_thompson_intel' [05:41, 03:14](2014 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [07:30, 04:34](2027 MB) -PASS -- TEST 'regional_control_intel' [07:34, 04:53](1207 MB) -PASS -- TEST 'regional_restart_intel' [04:33, 02:40](1235 MB) -PASS -- TEST 'regional_decomp_intel' [07:32, 05:09](1208 MB) -PASS -- TEST 'regional_2threads_intel' [06:33, 04:47](1078 MB) -PASS -- TEST 'regional_noquilt_intel' [06:31, 04:52](1499 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:33, 04:56](1213 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:32, 04:55](1215 MB) -PASS -- TEST 'regional_wofs_intel' [08:32, 06:11](2039 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:12, 10:22] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:46, 03:48](2046 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:29] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [05:34, 03:24](1167 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:52, 03:48](1320 MB) -PASS -- TEST 'rap_decomp_intel' [05:32, 03:35](1152 MB) -PASS -- TEST 'rap_2threads_intel' [08:32, 05:03](1160 MB) -PASS -- TEST 'rap_restart_intel' [04:34, 01:51](1179 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:33, 03:21](1161 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:31, 03:35](1147 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:38, 01:50](1165 MB) -PASS -- TEST 'hrrr_control_intel' [05:35, 03:16](1156 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [05:33, 03:26](1151 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:31, 04:41](1172 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:47](1134 MB) -PASS -- TEST 'rrfs_v1beta_intel' [08:36, 06:03](1204 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:20, 08:17](2109 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:21, 07:52](2182 MB) - -PASS -- COMPILE 'csawmg_intel' [11:11, 09:30] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:31, 05:48](1159 MB) -PASS -- TEST 'control_ras_intel' [05:19, 03:07](866 MB) - -PASS -- COMPILE 'wam_intel' [10:12, 08:50] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [12:40, 10:46](1795 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:12, 09:03] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:42, 02:50](2017 MB) -PASS -- TEST 'regional_control_faster_intel' [06:32, 04:55](1215 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:56] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:12](1739 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:23, 02:19](1746 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:19, 03:00](950 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:43](952 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:32, 04:19](1262 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:40](962 MB) -PASS -- TEST 'control_diag_debug_intel' [04:31, 02:45](1805 MB) -PASS -- TEST 'control_debug_p8_intel' [04:37, 02:39](2036 MB) -PASS -- TEST 'regional_debug_intel' [19:36, 17:49](1226 MB) -PASS -- TEST 'rap_control_debug_intel' [06:22, 04:57](1340 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:48](1311 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:21, 04:55](1337 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1340 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 04:57](1335 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:29, 05:13](1434 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:20, 05:10](1340 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:03](1337 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 05:07](1347 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:56](1343 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:49](1340 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 05:00](1340 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:19, 07:58](1339 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:20, 04:55](1336 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:01](1346 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:38](1327 MB) - -PASS -- COMPILE 'wam_debug_intel' [13:11, 03:01] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:43, 13:33](1809 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [24:11, 09:07] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:42](1190 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:30, 03:05](1115 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:30, 02:59](1108 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:34, 04:23](1015 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:32, 04:12](1021 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:31, 03:06](1025 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:40](1068 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:37](1044 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [23:12, 09:02] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [04:52, 02:56](1444 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:46, 01:34](1268 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:44, 02:59](1467 MB) -PASS -- TEST 'conus13km_restart_intel' [03:43, 01:47](1313 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [23:11, 09:20] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:45](1110 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [16:11, 03:04] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:20, 04:50](1228 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:42](1221 MB) -PASS -- TEST 'conus13km_debug_intel' [24:41, 22:27](1476 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:37, 22:30](1195 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:35, 24:35](1333 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:36, 23:35](1527 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:36, 23:28](1550 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 02:55] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:20, 05:01](1290 MB) - -PASS -- COMPILE 'hafsw_intel' [22:11, 13:24] ( 1 warnings 693 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [09:47, 03:48](868 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [12:24, 05:18](1066 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [09:27, 03:17](1148 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:45, 29:25](948 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:37, 05:07](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:42, 05:52](506 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [09:33, 02:28](369 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:12, 06:24](417 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [11:34, 03:25](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:36, 03:16](521 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [08:27, 01:03](401 MB) -PASS -- TEST 'gnv1_nested_intel' [05:53, 03:34](1849 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [20:11, 10:58] ( 1 warnings 926 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:25, 10:28](676 MB) - -PASS -- COMPILE 'hafs_all_intel' [20:11, 10:50] ( 1 warnings 635 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:39, 05:51](906 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [12:39, 05:52](881 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [25:11, 16:37] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:18, 03:06](2008 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:20, 01:57](1954 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:17, 02:53](1267 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:50](1264 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:52](1258 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:18, 03:00](2007 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:17, 03:02](2001 MB) +PASS -- COMPILE 's2swa_32bit_intel' [20:11, 18:50] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:14, 11:48](2202 MB) +PASS -- TEST 'cpld_control_gefs_intel' [33:51, 16:18](3013 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [21:09, 05:18](2733 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [33:51, 16:16](3046 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:12, 19:05] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:06, 17:10](2070 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [20:56, 18:22](2270 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:53, 06:59](1366 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [11:02, 08:10](2196 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [23:08, 21:02](1857 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [19:12, 17:09] ( 1 warnings 938 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:27, 11:19](2214 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [12:04, 05:51](1491 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:12, 03:43] ( 338 warnings 938 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [16:11, 11:52](2212 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 04:19] ( 338 warnings 2772 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [23:44, 21:40](1930 MB) + +PASS -- COMPILE 's2swa_intel' [20:12, 19:04] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [14:22, 11:55](2287 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [14:22, 11:17](2269 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:10, 05:58](1885 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [14:15, 11:19](2302 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:16, 06:02](1886 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:15, 12:01](2335 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [14:15, 11:20](2253 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:14, 11:06](2040 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [14:21, 11:15](2282 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [17:17, 14:03](2665 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:37, 09:23](2828 MB) + +PASS -- COMPILE 's2swal_intel' [21:13, 19:15] ( 1 warnings 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [14:18, 12:00](2076 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:06, 06:06](1726 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [09:01, 07:05](2239 MB) + +PASS -- COMPILE 's2sw_intel' [20:12, 18:47] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [13:03, 10:42](2100 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:13, 05:58](2180 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:11, 04:06] ( 338 warnings 2021 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:11, 13:18](2280 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:12, 04:08] ( 338 warnings 2003 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [08:42, 06:34](2121 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [19:11, 17:11] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:11, 04:14](2165 MB) + +PASS -- COMPILE 's2swa_faster_intel' [20:11, 18:53] ( 1 warnings 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [16:06, 11:16](2268 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:12, 19:00] ( 1 warnings 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:56, 15:10](2125 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:05, 06:57](1357 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:49, 17:50](1924 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [09:36, 07:07](3080 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [05:41, 02:11](3069 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:43, 01:18](2510 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:32, 01:11](2256 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:29, 00:41](2250 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:29, 00:37](1576 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:33, 01:12](2250 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:36, 00:41](2250 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:38, 00:33](1577 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:35, 00:42](2191 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:31, 00:34](2186 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:37, 00:29](1532 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:12, 03:49] ( 338 warnings 2754 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:46, 27:29](1969 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:12, 10:58] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:14](830 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:26, 02:11](1721 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:28, 02:23](1729 MB) +PASS -- TEST 'control_latlon_intel' [05:24, 02:17](1717 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:27, 02:35](1720 MB) +PASS -- TEST 'control_c48_intel' [08:27, 06:31](1719 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:27, 06:12](847 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:27, 06:42](1716 MB) +PASS -- TEST 'control_c192_intel' [08:37, 06:52](1920 MB) +PASS -- TEST 'control_c384_intel' [11:38, 07:47](2002 MB) +PASS -- TEST 'control_c384gdas_intel' [12:14, 08:18](1364 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:39](783 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:22, 01:01](622 MB) +PASS -- TEST 'control_lndp_intel' [03:19, 01:30](784 MB) +PASS -- TEST 'control_iovr4_intel' [04:22, 02:23](779 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:35, 02:52](1079 MB) +PASS -- TEST 'control_iovr5_intel' [04:22, 02:22](781 MB) +PASS -- TEST 'control_p8_intel' [04:57, 02:51](1998 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [05:00, 02:54](2009 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:47, 02:45](2013 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:43, 02:44](2029 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:42, 02:51](2045 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:45, 02:08](2381 MB) +PASS -- TEST 'control_restart_p8_intel' [03:42, 01:43](1263 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:41, 02:41](1998 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:39](1281 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:45, 02:52](1994 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:41, 04:02](2026 MB) +PASS -- TEST 'control_p8_lndp_intel' [06:34, 04:49](2024 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:44, 03:58](2066 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:44, 03:01](2023 MB) +PASS -- TEST 'merra2_thompson_intel' [05:42, 03:15](2019 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:30, 04:44](2031 MB) +PASS -- TEST 'regional_control_intel' [06:32, 04:57](1201 MB) +PASS -- TEST 'regional_restart_intel' [04:32, 02:46](1235 MB) +PASS -- TEST 'regional_decomp_intel' [07:31, 05:10](1213 MB) +PASS -- TEST 'regional_2threads_intel' [06:33, 04:49](1077 MB) +PASS -- TEST 'regional_noquilt_intel' [06:36, 04:59](1503 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:31, 04:55](1216 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:30, 04:57](1213 MB) +PASS -- TEST 'regional_wofs_intel' [08:29, 06:16](2037 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:11, 10:22] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:41, 03:49](2046 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:31] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [05:34, 03:29](1164 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:56, 03:55](1318 MB) +PASS -- TEST 'rap_decomp_intel' [05:31, 03:37](1148 MB) +PASS -- TEST 'rap_2threads_intel' [06:32, 05:02](1171 MB) +PASS -- TEST 'rap_restart_intel' [03:34, 01:51](1178 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:31, 03:30](1157 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:32, 03:38](1140 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:32, 01:50](1171 MB) +PASS -- TEST 'hrrr_control_intel' [05:35, 03:16](1158 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:29, 03:25](1147 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:31, 04:44](1174 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:22, 01:45](1131 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:35, 06:07](1203 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:22, 08:06](2110 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:23, 08:05](2172 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:40] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:33, 05:49](1159 MB) +PASS -- TEST 'control_ras_intel' [05:19, 03:08](867 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 09:03] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [12:41, 10:44](1794 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [10:11, 09:06] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:42, 02:50](2015 MB) +PASS -- TEST 'regional_control_faster_intel' [06:32, 04:51](1215 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:12, 04:52] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:23, 02:14](1744 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:24, 02:20](1751 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:20, 03:01](949 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:19, 02:42](944 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:33, 04:18](1257 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:43](953 MB) +PASS -- TEST 'control_diag_debug_intel' [04:29, 02:43](1803 MB) +PASS -- TEST 'control_debug_p8_intel' [04:35, 02:42](2032 MB) +PASS -- TEST 'regional_debug_intel' [19:35, 17:56](1236 MB) +PASS -- TEST 'rap_control_debug_intel' [06:21, 04:54](1338 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:46](1336 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:20, 04:55](1337 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:20, 04:53](1339 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:55](1340 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:33, 05:15](1425 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:01](1342 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:20, 04:58](1344 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:59](1347 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:20, 04:57](1339 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:22, 04:45](1337 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:57](1338 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:21, 08:01](1340 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:56](1341 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 04:52](1342 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:32, 08:29](1328 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:12, 03:21] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:41, 13:23](1815 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 09:12] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [06:01, 03:44](1202 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [04:37, 03:01](1106 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:34, 03:01](1091 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:30, 04:24](1042 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:28, 04:11](1013 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:30, 03:08](1039 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:29, 01:42](1053 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:20, 01:38](1056 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:12, 08:58] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:53, 02:57](1446 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:45, 01:34](1283 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:46, 02:59](1472 MB) +PASS -- TEST 'conus13km_restart_intel' [03:39, 01:43](1319 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:16] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:36, 03:46](1113 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:57] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:52](1226 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:43](1218 MB) +PASS -- TEST 'conus13km_debug_intel' [24:45, 22:28](1485 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:49, 23:01](1193 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [26:43, 24:16](1334 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:43, 23:24](1531 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [25:44, 23:24](1548 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:12, 03:01] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:58](1282 MB) + +PASS -- COMPILE 'hafsw_intel' [15:11, 13:25] ( 1 warnings 693 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:41, 03:46](875 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:19, 05:18](1070 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:28, 03:16](1145 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [30:47, 28:35](944 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:37, 05:16](485 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [07:41, 06:01](505 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:32, 02:37](368 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:11, 07:06](419 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:31, 03:29](518 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:31, 03:16](518 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:23, 01:08](399 MB) +PASS -- TEST 'gnv1_nested_intel' [05:55, 03:27](1859 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:39] ( 1 warnings 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [13:29, 10:24](670 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:12, 10:54] ( 1 warnings 635 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:40, 05:47](905 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:41, 05:58](891 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:12, 16:35] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 02:57](2017 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:21, 01:58](1955 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:17, 02:47](1262 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:20, 02:49](1260 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:19, 02:49](1258 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:59](2012 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:00](2009 MB) PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:47](1261 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:26, 07:34](1778 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:28, 07:14](1163 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:17, 03:04](2006 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:19, 04:45](4965 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 04:59](4967 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [06:12, 02:58] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:19, 06:57](1914 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 16:43] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:18, 02:59](2005 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:02] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:33, 01:04](256 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:25, 00:39](308 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:25, 00:23](308 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [04:11, 01:17] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:35, 00:32](639 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:34, 00:18](517 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:12, 17:23] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:58, 03:24](2090 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:14] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:44, 04:28](2097 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:31] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:43, 03:07](1848 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:32, 01:44](1119 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:12, 04:05] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:50, 04:51](1864 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:23] ( 1 warnings 518 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:42, 01:47](2028 MB) - -PASS -- COMPILE 'atmaero_intel' [13:12, 11:41] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:48, 03:56](2104 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:29](1871 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:37](1896 MB) - -PASS -- COMPILE 'atmaq_intel' [11:12, 09:38] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [17:34, 13:01](2922 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [20:24, 16:17](2927 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:09] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:29, 39:53](2938 MB) - -PASS -- COMPILE 'atm_fbh_intel' [10:10, 08:52] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:29](1182 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:19] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:30, 03:27](1108 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:34] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:30, 04:09](1110 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 04:25] -PASS -- TEST 'control_c48_gnu' [11:24, 09:43](1536 MB) -PASS -- TEST 'control_stochy_gnu' [05:18, 02:56](599 MB) -PASS -- TEST 'control_ras_gnu' [06:18, 04:48](604 MB) -PASS -- TEST 'control_p8_gnu' [06:43, 04:25](1524 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:40, 04:21](1556 MB) -PASS -- TEST 'control_flake_gnu' [07:21, 05:32](646 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 04:13] -PASS -- TEST 'rap_control_gnu' [07:29, 05:56](939 MB) -PASS -- TEST 'rap_decomp_gnu' [07:27, 05:58](944 MB) -PASS -- TEST 'rap_2threads_gnu' [10:31, 08:34](1012 MB) -PASS -- TEST 'rap_restart_gnu' [05:30, 03:10](678 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [08:30, 05:58](940 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:28, 06:01](943 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:31, 03:07](682 MB) -PASS -- TEST 'hrrr_control_gnu' [07:30, 05:44](948 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:27, 05:49](930 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [09:28, 08:07](1001 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:30, 05:45](945 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:59](686 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:19, 02:57](763 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [12:34, 11:01](934 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:37] -PASS -- TEST 'control_csawmg_gnu' [10:30, 08:35](847 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 07:02] -PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:34](1372 MB) -PASS -- TEST 'regional_debug_gnu' [10:32, 08:32](878 MB) -PASS -- TEST 'rap_control_debug_gnu' [04:20, 02:30](949 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 02:33](955 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [04:18, 02:32](962 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 02:32](961 MB) -PASS -- TEST 'rap_diag_debug_gnu' [04:28, 02:46](1043 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:18, 03:58](947 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:19, 02:38](952 MB) -PASS -- TEST 'control_ras_debug_gnu' [03:18, 01:30](593 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:40](590 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:34, 01:37](1547 MB) -PASS -- TEST 'rap_flake_debug_gnu' [04:19, 02:32](959 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:19, 02:34](950 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:30, 04:16](963 MB) - -PASS -- COMPILE 'wam_debug_gnu' [04:11, 02:17] -PASS -- TEST 'control_wam_debug_gnu' [08:39, 06:32](1400 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:41] -PASS -- TEST 'control_csawmg_debug_gnu' [04:30, 02:19](829 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:11, 03:49] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:28, 05:05](794 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:27, 04:58](798 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:27, 07:20](845 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [08:28, 07:06](840 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:25, 05:05](800 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:24, 02:38](649 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:18, 02:36](653 MB) -PASS -- TEST 'conus13km_control_gnu' [06:49, 04:52](1026 MB) -PASS -- TEST 'conus13km_2threads_gnu' [04:40, 02:25](1014 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:41, 04:53](1029 MB) -PASS -- TEST 'conus13km_restart_gnu' [05:44, 02:40](716 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [12:11, 10:04] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:30, 05:44](822 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 07:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:29](809 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:18, 02:26](812 MB) -PASS -- TEST 'conus13km_debug_gnu' [12:39, 10:59](1047 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [13:38, 11:11](772 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [13:37, 11:12](1035 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [13:35, 11:25](1049 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:35, 10:57](1114 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 07:14] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:19, 02:30](834 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:48] -PASS -- TEST 'cpld_control_p8_gnu' [14:08, 11:10](1671 MB) - -PASS -- COMPILE 's2s_gnu' [18:11, 16:17] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:51, 09:59](1626 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [05:11, 02:50] -PASS -- TEST 'cpld_debug_p8_gnu' [08:56, 06:52](1686 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:30] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:49, 17:44](1594 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:11, 03:34] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:46, 10:57](1543 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 16:05] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:20](1554 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [06:11, 03:21] -PASS -- TEST 'control_gfs_mpas_gnu' [02:27, 00:48](6372 MB) - -PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:11, 09:41] ( 1 warnings 403 remarks ) -PASS -- TEST 'pm_ideal_supercell_intel' [03:33, 01:24](1162 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:24, 07:14](1781 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 07:04](1154 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:02](2008 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:50](4968 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:50](4963 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:45] ( 2 warnings 562 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:59](1915 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [18:11, 16:49] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:01](2006 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 01:04] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:54](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:25, 00:35](307 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:24, 00:28](312 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:26] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:36](634 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:18](515 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [18:11, 17:07] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:50, 03:21](2095 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:32] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:47, 04:28](2101 MB) + +PASS -- COMPILE 'atml_intel' [13:11, 11:10] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:43, 03:06](1837 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:36, 01:51](1118 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:11, 05:02] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:50, 04:59](1874 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:53] ( 1 warnings 518 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:39, 01:52](2025 MB) + +PASS -- COMPILE 'atmaero_intel' [13:11, 11:32] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:49, 04:02](2101 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:35, 04:30](1881 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:37, 04:38](1897 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 09:43] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [15:36, 12:55](2924 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [18:32, 16:08](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:20] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:31, 39:33](2937 MB) + +PASS -- COMPILE 'atm_fbh_intel' [10:11, 09:00] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:26, 11:26](1181 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:42] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [05:31, 03:29](1111 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:24] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:31, 04:12](1111 MB) + +PASS -- COMPILE 'atm_gnu' [06:12, 04:10] +PASS -- TEST 'control_c48_gnu' [11:25, 09:44](1534 MB) +PASS -- TEST 'control_stochy_gnu' [04:18, 02:53](600 MB) +PASS -- TEST 'control_ras_gnu' [06:18, 04:51](610 MB) +PASS -- TEST 'control_p8_gnu' [06:46, 04:25](1559 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:42, 04:29](1565 MB) +PASS -- TEST 'control_flake_gnu' [07:21, 05:40](646 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:12, 04:00] +PASS -- TEST 'rap_control_gnu' [07:32, 06:00](937 MB) +PASS -- TEST 'rap_decomp_gnu' [07:29, 06:04](940 MB) +PASS -- TEST 'rap_2threads_gnu' [10:33, 08:37](1006 MB) +PASS -- TEST 'rap_restart_gnu' [04:32, 03:06](681 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [07:31, 06:00](940 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:30, 06:09](943 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:32, 03:06](678 MB) +PASS -- TEST 'hrrr_control_gnu' [07:30, 05:43](945 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:28, 05:49](937 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [09:31, 08:04](999 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:49](945 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [05:21, 03:00](685 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:20, 03:00](765 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [12:35, 11:08](935 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 04:04] +PASS -- TEST 'control_csawmg_gnu' [10:31, 08:34](845 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [09:12, 07:13] +PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:35](1371 MB) +PASS -- TEST 'regional_debug_gnu' [10:35, 08:27](877 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:21, 02:36](953 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:21, 02:32](957 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:33](963 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:36](958 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:31, 02:45](1037 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:21, 04:01](948 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:21, 02:31](949 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:19, 01:30](593 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:36](590 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:36, 01:39](1548 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:21, 02:38](952 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:20, 02:36](954 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:31, 04:23](964 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:12, 02:05] +PASS -- TEST 'control_wam_debug_gnu' [08:39, 06:44](1399 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:12, 04:18] +PASS -- TEST 'control_csawmg_debug_gnu' [04:32, 02:19](843 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:12, 03:50] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [06:30, 05:05](792 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [06:29, 05:00](800 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [09:33, 07:24](844 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:31, 07:15](840 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [06:28, 05:07](800 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [04:26, 02:49](645 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:19, 02:45](659 MB) +PASS -- TEST 'conus13km_control_gnu' [06:49, 04:47](1026 MB) +PASS -- TEST 'conus13km_2threads_gnu' [04:40, 02:32](1015 MB) +PASS -- TEST 'conus13km_decomp_gnu' [07:42, 04:59](1031 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:38, 02:44](731 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:12, 09:57] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [07:32, 05:54](823 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:12, 07:06] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:21, 02:33](805 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 02:26](810 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:45, 10:50](1045 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:43, 11:08](771 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [13:39, 11:07](1035 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [13:38, 11:47](1050 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:37, 11:07](1117 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:12, 07:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:20, 02:30](837 MB) + +PASS -- COMPILE 's2swa_gnu' [18:12, 16:35] +PASS -- TEST 'cpld_control_p8_gnu' [14:09, 11:14](1670 MB) + +PASS -- COMPILE 's2s_gnu' [18:12, 16:46] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:58, 09:55](1632 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:12, 02:49] +PASS -- TEST 'cpld_debug_p8_gnu' [08:57, 06:54](1692 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:12, 16:33] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [19:50, 17:54](1603 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:57] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:47, 11:12](1543 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [17:11, 15:51] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:26](1554 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:15] +PASS -- TEST 'control_gfs_mpas_gnu' [02:27, 00:54](6374 MB) + +PASS -- COMPILE 'pm_ideal_doubly_periodic_intel' [11:11, 09:52] ( 1 warnings 403 remarks ) +PASS -- TEST 'pm_ideal_supercell_intel' [03:31, 01:27](1167 MB) SYNOPSIS: -Starting Date/Time: 20251210 19:30:00 -Ending Date/Time: 20251210 21:39:02 -Total Time: 02h:10m:01s +Starting Date/Time: 20251212 02:43:08 +Ending Date/Time: 20251212 04:36:20 +Total Time: 01h:53m:47s Compiles Completed: 64/64 Tests Completed: 274/274 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index c361fddb52..f0b4d40d2b 100644 --- a/tests/logs/RegressionTests_hercules.log +++ b/tests/logs/RegressionTests_hercules.log @@ -1,7 +1,7 @@ ====START OF HERCULES REGRESSION TESTING LOG==== UFSWM hash used in testing: -6a8584c12e5c8c63cbc8dbc4990737946009e5fe +d5d98961fd4e4318af5d306fedf35e0433fcfaca Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -15,11 +15,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -40,403 +40,403 @@ 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: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251204 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_27526 +BASELINE DIRECTORY: /work2/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/hercules/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_2762886 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:11, 20:59] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:25, 08:15](2149 MB) -PASS -- TEST 'cpld_control_gefs_intel' [35:18, 16:55](3106 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [23:58, 06:25](2820 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [31:54, 15:00](3165 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [22:11, 21:00] ( 1 warnings 1040 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:28, 15:46](2013 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:57, 16:03](2329 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [08:46, 05:45](1338 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [18:19, 08:19](2214 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:35, 16:59](1920 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [22:12, 20:41] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [19:47, 09:47](2305 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [13:10, 05:39](1642 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:11, 04:24] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [17:36, 11:24](2334 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 04:57] ( 338 warnings 2771 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [21:35, 18:18](1999 MB) - -PASS -- COMPILE 's2swa_intel' [22:11, 20:40] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:30, 09:06](2259 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:15, 09:11](2250 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:13, 04:26](1951 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [15:29, 09:07](2273 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [07:46, 04:54](1839 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:23, 11:56](2383 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [13:06, 09:03](2237 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [09:54, 07:11](2122 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:14, 08:10](2256 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [18:00, 14:45](2932 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [12:06, 06:21](2957 MB) - -PASS -- COMPILE 's2swal_intel' [22:11, 20:38] ( 1 warnings 1063 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [11:37, 08:11](2226 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [07:39, 04:20](1926 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [09:06, 06:46](2233 MB) - -PASS -- COMPILE 's2sw_intel' [22:11, 20:24] ( 1 warnings 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [13:02, 08:15](2047 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [12:11, 07:36](2160 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:42] ( 338 warnings 2020 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [14:05, 11:56](2280 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:10] ( 338 warnings 2002 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:11, 06:58](2074 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [20:11, 18:39] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [10:28, 04:54](2119 MB) - -PASS -- COMPILE 's2swa_faster_intel' [19:11, 17:43] ( 1 warnings 1028 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [14:22, 08:43](2251 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:26] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:13, 12:49](2087 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:43, 05:43](1412 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [16:10, 13:11](1991 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:44, 06:24](3042 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:42, 02:32](3026 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [05:50, 02:02](2466 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [06:28, 01:39](2233 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [06:28, 01:24](2238 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:35, 00:23](1548 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [05:31, 01:45](2241 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [04:29, 01:21](2236 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:32, 00:23](1550 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [03:28, 00:34](2162 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:29, 01:30](2162 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [04:30, 01:23](1503 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:11, 02:56] ( 338 warnings 2753 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [25:13, 23:10](2071 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [11:11, 09:23] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [04:32, 02:49](723 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:34, 01:56](1603 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:43, 02:00](1619 MB) -PASS -- TEST 'control_latlon_intel' [03:30, 01:58](1617 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:33, 02:03](1617 MB) -PASS -- TEST 'control_c48_intel' [12:37, 05:34](1709 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:34, 05:22](840 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [07:35, 05:44](1712 MB) -PASS -- TEST 'control_c192_intel' [10:55, 06:05](1818 MB) -PASS -- TEST 'control_c384_intel' [10:34, 06:47](2016 MB) -PASS -- TEST 'control_c384gdas_intel' [13:40, 07:42](1492 MB) -PASS -- TEST 'control_stochy_intel' [03:28, 01:26](674 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:28, 00:53](537 MB) -PASS -- TEST 'control_lndp_intel' [03:28, 01:19](677 MB) -PASS -- TEST 'control_iovr4_intel' [03:30, 02:03](677 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [09:46, 03:32](969 MB) -PASS -- TEST 'control_iovr5_intel' [03:30, 02:03](674 MB) -PASS -- TEST 'control_p8_intel' [11:22, 03:30](1895 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:21, 03:22](1910 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [10:09, 03:16](1909 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [11:13, 03:16](1918 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [11:18, 03:08](1937 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:04, 02:35](2429 MB) -PASS -- TEST 'control_restart_p8_intel' [04:09, 01:24](1207 MB) -PASS -- TEST 'control_noqr_p8_intel' [09:17, 03:24](1898 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:01, 01:24](1209 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:55, 03:32](1902 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:07, 05:03](1994 MB) -PASS -- TEST 'control_p8_lndp_intel' [10:51, 05:08](1898 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [10:13, 04:07](1967 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:53, 02:27](1915 MB) -PASS -- TEST 'merra2_thompson_intel' [04:54, 02:50](1918 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:50, 04:26](1919 MB) -PASS -- TEST 'regional_control_intel' [08:31, 05:33](1192 MB) -PASS -- TEST 'regional_restart_intel' [08:36, 03:18](1185 MB) -PASS -- TEST 'regional_decomp_intel' [08:30, 05:32](1191 MB) -PASS -- TEST 'regional_2threads_intel' [08:28, 05:27](1099 MB) -PASS -- TEST 'regional_noquilt_intel' [08:38, 05:17](1497 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [06:39, 04:16](1193 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:31, 04:14](1184 MB) -PASS -- TEST 'regional_wofs_intel' [07:40, 05:21](2072 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 10:00] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:09, 03:54](1938 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 08:41] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [04:51, 02:52](1099 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:50, 03:08](1433 MB) -PASS -- TEST 'rap_decomp_intel' [04:50, 02:59](1052 MB) -PASS -- TEST 'rap_2threads_intel' [06:46, 04:25](1170 MB) -PASS -- TEST 'rap_restart_intel' [03:53, 01:35](1103 MB) -PASS -- TEST 'rap_sfcdiff_intel' [05:03, 02:49](1097 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:03, 02:58](1063 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:58, 01:35](1088 MB) -PASS -- TEST 'hrrr_control_intel' [05:00, 02:44](1079 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:43, 02:52](1058 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:05, 04:09](1142 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:27, 01:32](1029 MB) -PASS -- TEST 'rrfs_v1beta_intel' [07:10, 05:00](1174 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [08:21, 06:59](2013 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:21, 06:37](2167 MB) - -PASS -- COMPILE 'csawmg_intel' [14:11, 08:51] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [11:37, 06:33](1078 MB) -PASS -- TEST 'control_ras_intel' [06:24, 02:54](846 MB) - -PASS -- COMPILE 'wam_intel' [13:11, 08:13] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [14:45, 10:02](1690 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:11, 08:14] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:55, 03:43](1914 MB) -PASS -- TEST 'regional_control_faster_intel' [10:28, 05:21](1175 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 03:56] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [07:26, 02:22](1636 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:23, 02:14](1644 MB) -PASS -- TEST 'control_stochy_debug_intel' [07:18, 03:04](851 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:21, 02:47](846 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:31, 05:08](1162 MB) -PASS -- TEST 'control_ras_debug_intel' [06:18, 02:24](874 MB) -PASS -- TEST 'control_diag_debug_intel' [06:27, 02:45](1700 MB) -PASS -- TEST 'control_debug_p8_intel' [08:41, 03:49](1928 MB) -PASS -- TEST 'regional_debug_intel' [22:33, 18:43](1149 MB) -PASS -- TEST 'rap_control_debug_intel' [08:26, 04:58](1243 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:27, 04:54](1235 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:20, 04:37](1232 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:22, 04:30](1233 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:24, 04:49](1240 MB) -PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:04](1328 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:20, 04:48](1247 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:20, 04:55](1230 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:21, 04:48](1232 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:21, 04:58](1234 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:55](1236 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:22](1232 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:20, 07:32](1232 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:31, 05:12](1241 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:23, 05:01](1236 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:11, 02:47] ( 380 warnings 395 remarks ) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 08:39] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:53, 03:00](1313 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:57, 02:37](1047 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:09, 02:32](1036 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:59, 03:48](1086 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:22, 03:39](1078 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:03, 02:38](996 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:52, 01:29](992 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:41, 01:26](968 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:10, 08:09] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:05, 02:41](1496 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:40, 01:23](1332 MB) -PASS -- TEST 'conus13km_decomp_intel' [05:51, 02:42](1543 MB) -PASS -- TEST 'conus13km_restart_intel' [09:52, 01:35](1255 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 08:31] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:40, 03:20](1097 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:36] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:19, 04:22](1122 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:23, 04:13](1107 MB) -PASS -- TEST 'conus13km_debug_intel' [21:42, 19:06](1538 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:39, 19:04](1151 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:32, 21:00](1363 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [21:36, 19:31](1591 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:39, 18:53](1605 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:43] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 04:56](1227 MB) - -PASS -- COMPILE 'hafsw_intel' [17:11, 12:43] ( 1 warnings 693 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:51, 03:20](985 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [12:15, 07:09](1191 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:46](1271 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [19:54, 14:07](1121 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:53, 04:36](587 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:04, 05:28](608 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [07:45, 02:15](428 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [09:46, 05:49](501 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:54, 03:05](607 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:51, 02:54](606 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:33, 00:53](448 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:11, 11:16] ( 1 warnings 926 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [16:02, 12:00](818 MB) - -PASS -- COMPILE 'hafs_all_intel' [13:12, 10:42] ( 1 warnings 635 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:47, 05:19](1080 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:46, 05:20](1059 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [20:12, 18:00] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:19, 02:25](1865 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:19, 01:37](1809 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [08:17, 02:14](1123 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [08:17, 02:15](1129 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [08:17, 02:16](1142 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:16, 02:24](1857 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:19, 02:25](1868 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [06:18, 02:14](1121 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:59, 05:51](1708 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:52, 05:38](1190 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 02:25](1869 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:17, 03:51](4833 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:53](4830 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:08] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:17, 05:28](1777 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:11, 15:20] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:17, 02:24](1866 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:48] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:33, 00:58](333 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:24, 00:36](560 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:30, 00:24](555 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [19:11, 17:45] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:55, 03:07](2043 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [09:11, 08:06] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:01, 04:26](2059 MB) - -PASS -- COMPILE 'atml_intel' [11:11, 09:47] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:04, 02:50](1882 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:43, 01:32](1186 MB) - -PASS -- COMPILE 'atml_debug_intel' [06:10, 03:56] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:58, 05:21](1902 MB) - -PASS -- COMPILE 'atmw_intel' [12:16, 10:30] ( 1 warnings 518 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:56, 01:39](1927 MB) - -PASS -- COMPILE 'atmaero_intel' [13:16, 12:05] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [05:51, 03:29](2010 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:42, 04:04](1799 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:42, 04:08](1816 MB) - -PASS -- COMPILE 'atmaq_intel' [10:11, 08:33] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [15:41, 12:13](2948 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [17:13, 14:12](2944 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:11, 02:28] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [34:20, 31:20](2958 MB) - -PASS -- COMPILE 'atm_fbh_intel' [12:11, 07:59] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:25, 09:32](1081 MB) - -PASS -- COMPILE 'atm_gnu' [06:11, 03:46] -PASS -- TEST 'control_c48_gnu' [09:34, 07:43](1579 MB) -PASS -- TEST 'control_stochy_gnu' [04:25, 02:18](584 MB) -PASS -- TEST 'control_ras_gnu' [05:20, 03:45](589 MB) -PASS -- TEST 'control_p8_gnu' [05:58, 03:31](1530 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:42, 03:28](1540 MB) -PASS -- TEST 'control_flake_gnu' [06:25, 04:30](633 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 03:46] -PASS -- TEST 'rap_control_gnu' [07:37, 06:09](935 MB) -PASS -- TEST 'rap_decomp_gnu' [07:34, 05:58](936 MB) -PASS -- TEST 'rap_2threads_gnu' [06:46, 04:40](990 MB) -PASS -- TEST 'rap_restart_gnu' [05:56, 03:13](676 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [07:52, 05:58](934 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [07:43, 05:46](937 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [04:54, 03:05](677 MB) -PASS -- TEST 'hrrr_control_gnu' [07:41, 05:43](931 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [07:35, 05:43](915 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [06:51, 04:56](989 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [07:52, 05:49](932 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:20, 03:01](668 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [05:20, 02:56](748 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [13:02, 10:28](930 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:11, 03:16] -PASS -- TEST 'control_csawmg_gnu' [08:29, 06:44](827 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:13] -PASS -- TEST 'control_diag_debug_gnu' [03:28, 01:11](1363 MB) -PASS -- TEST 'regional_debug_gnu' [08:32, 06:23](883 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:20, 01:58](943 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:21, 01:57](942 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:17, 01:58](945 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:57](946 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:25, 02:05](1032 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 03:05](938 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:18, 01:58](942 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:17, 01:09](577 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:18](571 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:17](1525 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:21, 01:58](944 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:21, 01:58](946 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:49, 03:17](916 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:42] -PASS -- TEST 'control_wam_debug_gnu' [07:39, 05:24](1380 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:10, 03:06] -PASS -- TEST 'control_csawmg_debug_gnu' [03:27, 01:49](818 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:43] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:39, 04:00](788 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:56, 03:54](787 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:33, 03:30](837 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:39, 03:24](831 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:38, 03:57](787 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:45, 02:03](647 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:22, 02:03](641 MB) -PASS -- TEST 'conus13km_control_gnu' [05:58, 03:51](1030 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:41, 02:04](1014 MB) -PASS -- TEST 'conus13km_decomp_gnu' [06:41, 04:01](1036 MB) -PASS -- TEST 'conus13km_restart_gnu' [04:41, 02:10](759 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 09:06] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:37, 04:27](816 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [10:11, 06:17] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:19, 02:03](799 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:21, 01:52](799 MB) -PASS -- TEST 'conus13km_debug_gnu' [10:36, 08:43](1052 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [10:36, 08:43](776 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [11:32, 09:05](1035 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [10:32, 08:43](1058 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:36, 08:43](1123 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [09:11, 06:14] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:22, 01:57](825 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:52] -PASS -- TEST 'cpld_control_p8_gnu' [12:37, 10:07](1703 MB) - -PASS -- COMPILE 's2s_gnu' [20:11, 18:30] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [11:13, 08:20](1611 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:11, 02:27] -PASS -- TEST 'cpld_debug_p8_gnu' [09:11, 06:30](1688 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:12] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [15:59, 13:50](1595 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 02:28] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [12:59, 10:05](1590 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 17:08] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:45](1605 MB) - -PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:11, 03:12] -PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:36](6432 MB) +PASS -- COMPILE 's2swa_32bit_intel' [21:10, 19:51] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [16:04, 08:20](2153 MB) +PASS -- TEST 'cpld_control_gefs_intel' [31:33, 15:29](3109 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [19:51, 05:17](2818 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [30:16, 14:32](3167 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [23:11, 21:21] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [21:09, 15:27](2004 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:28, 15:58](2325 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:33, 05:45](1345 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [09:41, 07:01](2211 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:10, 16:23](1920 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [22:10, 21:05] ( 1 warnings 938 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:51, 09:40](2310 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [11:47, 05:40](1653 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:10, 04:18] ( 338 warnings 938 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [16:32, 10:17](2339 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:10, 04:50] ( 338 warnings 2772 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [21:21, 18:34](1999 MB) + +PASS -- COMPILE 's2swa_intel' [24:11, 22:56] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:19, 09:23](2258 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [18:15, 09:23](2258 MB) +PASS -- TEST 'cpld_restart_p8_intel' [07:06, 04:23](1945 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [20:10, 09:06](2275 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [07:16, 04:28](1832 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [25:07, 11:56](2371 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [18:09, 09:26](2237 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [14:05, 07:41](2123 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [18:13, 09:00](2254 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:53, 15:25](2937 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [09:41, 05:17](2954 MB) + +PASS -- COMPILE 's2swal_intel' [24:11, 22:52] ( 1 warnings 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [13:14, 09:08](2221 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:19, 05:13](1933 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [16:01, 07:46](2231 MB) + +PASS -- COMPILE 's2sw_intel' [19:10, 17:39] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:55, 07:26](2043 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:02, 06:46](2155 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:10, 04:43] ( 338 warnings 2021 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [14:11, 11:18](2274 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:10, 04:39] ( 338 warnings 2003 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:56, 05:24](2066 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [21:10, 19:16] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:14, 04:54](2141 MB) + +PASS -- COMPILE 's2swa_faster_intel' [21:10, 19:20] ( 1 warnings 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [20:04, 09:09](2247 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [20:11, 18:58] ( 1 warnings 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [23:58, 13:05](2087 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [09:15, 06:02](1412 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:52, 13:49](1995 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [08:39, 05:33](3048 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:38, 02:40](3036 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [03:43, 00:58](2474 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:26, 00:55](2243 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:31](2235 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:24](1554 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [02:29, 00:55](2237 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:29, 00:32](2233 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:25, 00:24](1544 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:28, 00:31](2167 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [03:27, 01:21](2163 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:33, 01:27](1496 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:10, 04:20] ( 338 warnings 2754 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [24:09, 22:06](2062 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 11:01] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [14:21, 02:53](720 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [14:25, 01:56](1608 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [14:33, 02:07](1622 MB) +PASS -- TEST 'control_latlon_intel' [14:21, 02:04](1611 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [14:25, 02:05](1611 MB) +PASS -- TEST 'control_c48_intel' [17:27, 05:33](1715 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [14:26, 05:22](843 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [18:26, 05:42](1714 MB) +PASS -- TEST 'control_c192_intel' [18:38, 06:03](1817 MB) +PASS -- TEST 'control_c384_intel' [10:11, 06:45](2009 MB) +PASS -- TEST 'control_c384gdas_intel' [11:18, 07:41](1477 MB) +PASS -- TEST 'control_stochy_intel' [03:29, 01:29](675 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:29, 00:53](557 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:18](678 MB) +PASS -- TEST 'control_iovr4_intel' [03:21, 02:04](674 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:25, 02:50](978 MB) +PASS -- TEST 'control_iovr5_intel' [04:19, 02:03](679 MB) +PASS -- TEST 'control_p8_intel' [05:00, 02:25](1899 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 03:10](1902 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 02:19](1901 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [06:51, 03:23](1921 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:55, 03:11](1936 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:44, 01:38](2421 MB) +PASS -- TEST 'control_restart_p8_intel' [03:51, 01:24](1222 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:47, 03:13](1899 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:59, 02:08](1217 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:46, 03:12](1893 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:47, 03:31](1992 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:59](1906 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [05:51, 03:25](1967 MB) +PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:25](1909 MB) +PASS -- TEST 'merra2_thompson_intel' [04:52, 02:47](1919 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [06:48, 04:32](1921 MB) +PASS -- TEST 'regional_control_intel' [06:26, 04:15](1191 MB) +PASS -- TEST 'regional_restart_intel' [04:24, 02:20](1187 MB) +PASS -- TEST 'regional_decomp_intel' [06:24, 04:29](1181 MB) +PASS -- TEST 'regional_2threads_intel' [06:23, 04:19](1083 MB) +PASS -- TEST 'regional_noquilt_intel' [06:30, 04:12](1497 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [06:24, 04:17](1193 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [06:23, 04:17](1190 MB) +PASS -- TEST 'regional_wofs_intel' [07:22, 05:23](2091 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:11, 09:39] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [05:56, 03:33](1946 MB) + +PASS -- COMPILE 'rrfs_intel' [10:11, 08:51] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [04:49, 02:52](1084 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [05:47, 03:13](1442 MB) +PASS -- TEST 'rap_decomp_intel' [04:34, 03:00](1073 MB) +PASS -- TEST 'rap_2threads_intel' [07:46, 04:25](1165 MB) +PASS -- TEST 'rap_restart_intel' [05:44, 01:34](1085 MB) +PASS -- TEST 'rap_sfcdiff_intel' [05:43, 02:50](1113 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [05:34, 03:00](1058 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:48, 01:35](1090 MB) +PASS -- TEST 'hrrr_control_intel' [04:44, 02:43](1070 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:36, 02:51](1053 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:35, 04:09](1144 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:18, 01:29](1051 MB) +PASS -- TEST 'rrfs_v1beta_intel' [07:54, 05:02](1237 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [09:20, 06:59](2012 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [08:19, 06:37](2197 MB) + +PASS -- COMPILE 'csawmg_intel' [15:10, 08:56] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [07:26, 05:25](1072 MB) +PASS -- TEST 'control_ras_intel' [04:18, 02:47](863 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 08:31] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [11:36, 09:41](1674 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [12:11, 08:00] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:47, 02:54](1908 MB) +PASS -- TEST 'regional_control_faster_intel' [06:26, 04:29](1192 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:10, 04:11] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:24, 02:13](1633 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:21, 02:03](1644 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 03:01](849 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:36](849 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:26, 04:56](1177 MB) +PASS -- TEST 'control_ras_debug_intel' [05:16, 02:46](855 MB) +PASS -- TEST 'control_diag_debug_intel' [06:25, 02:43](1702 MB) +PASS -- TEST 'control_debug_p8_intel' [06:33, 03:33](1931 MB) +PASS -- TEST 'regional_debug_intel' [21:28, 17:57](1150 MB) +PASS -- TEST 'rap_control_debug_intel' [08:17, 05:13](1229 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:20, 04:56](1231 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:16, 04:52](1234 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:17, 05:13](1229 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:16, 04:23](1241 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:23, 05:05](1317 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:17, 04:47](1229 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:16, 04:42](1241 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:18, 05:15](1237 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:16, 04:43](1240 MB) +PASS -- TEST 'rap_noah_debug_intel' [08:16, 04:36](1239 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [09:17, 04:50](1239 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:17, 07:51](1227 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [09:17, 04:45](1234 MB) +PASS -- TEST 'rap_flake_debug_intel' [09:17, 05:05](1242 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 02:30] ( 380 warnings 395 remarks ) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:10, 07:57] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:48, 02:58](1315 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:47, 02:37](1039 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:55, 02:34](1031 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [07:39, 03:51](1078 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:42, 03:40](1075 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:48, 02:40](1006 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:49, 01:27](961 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:19, 01:26](973 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:10, 08:33] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:47, 02:41](1476 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:20](1324 MB) +PASS -- TEST 'conus13km_decomp_intel' [04:38, 02:37](1532 MB) +PASS -- TEST 'conus13km_restart_intel' [09:35, 01:36](1250 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:10, 08:37] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:32, 03:19](1091 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:11, 02:38] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:18, 04:08](1118 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:18, 04:06](1121 MB) +PASS -- TEST 'conus13km_debug_intel' [20:36, 18:54](1540 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [20:33, 18:59](1143 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:27, 21:16](1368 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [21:27, 19:41](1574 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [20:25, 19:02](1612 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 02:40] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 04:43](1226 MB) + +PASS -- COMPILE 'hafsw_intel' [14:11, 12:15] ( 1 warnings 693 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:38, 04:11](975 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [11:12, 05:59](1179 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:22, 03:39](1275 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [20:47, 13:45](1121 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:43, 04:37](592 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:51, 05:32](611 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [09:35, 02:13](428 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:26, 05:53](496 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:38, 03:04](602 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:36, 02:53](604 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [07:21, 01:05](453 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [17:11, 11:28] ( 1 warnings 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:33, 11:47](822 MB) + +PASS -- COMPILE 'hafs_all_intel' [13:11, 10:24] ( 1 warnings 635 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:43, 05:12](1085 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:39, 05:12](1070 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [21:11, 19:08] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [07:17, 02:24](1877 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:16, 01:35](1816 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:15, 02:16](1116 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [07:15, 02:14](1117 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:15, 02:17](1128 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:15, 02:21](1866 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:15, 02:23](1863 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:15, 02:13](1122 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:54, 05:51](1731 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:54, 05:37](1195 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:14, 02:24](1873 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:50](4822 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:15, 03:54](4829 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:32] ( 2 warnings 562 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:15, 05:32](1776 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [21:11, 18:57] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:16, 02:26](1870 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:43] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:56](337 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:37](555 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:22](556 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:11, 17:04] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:49, 03:03](2042 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:21] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:52, 04:05](2059 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:17] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:55, 02:38](1876 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:40, 01:28](1198 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:10, 04:13] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [06:50, 04:07](1915 MB) + +PASS -- COMPILE 'atmw_intel' [12:10, 11:08] ( 1 warnings 518 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:48, 01:35](1941 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:04] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:41, 03:29](2010 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:35, 04:01](1787 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:36, 04:03](1799 MB) + +PASS -- COMPILE 'atmaq_intel' [10:10, 08:56] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:15, 11:48](2943 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [17:08, 14:10](2945 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:33] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [34:09, 31:22](2956 MB) + +PASS -- COMPILE 'atm_fbh_intel' [09:10, 07:55] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:24, 09:35](1068 MB) + +PASS -- COMPILE 'atm_gnu' [05:11, 03:41] +PASS -- TEST 'control_c48_gnu' [09:31, 07:58](1580 MB) +PASS -- TEST 'control_stochy_gnu' [04:19, 02:19](584 MB) +PASS -- TEST 'control_ras_gnu' [05:22, 03:48](591 MB) +PASS -- TEST 'control_p8_gnu' [05:50, 03:30](1555 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [05:38, 03:27](1550 MB) +PASS -- TEST 'control_flake_gnu' [06:19, 04:32](630 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:11, 03:47] +PASS -- TEST 'rap_control_gnu' [07:44, 05:54](936 MB) +PASS -- TEST 'rap_decomp_gnu' [08:41, 06:05](939 MB) +PASS -- TEST 'rap_2threads_gnu' [07:35, 04:53](991 MB) +PASS -- TEST 'rap_restart_gnu' [06:02, 03:17](672 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [08:41, 06:01](935 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [08:35, 06:04](935 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [05:55, 03:09](673 MB) +PASS -- TEST 'hrrr_control_gnu' [07:49, 05:42](929 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:43, 05:58](918 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [06:32, 04:56](992 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:43, 05:44](932 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:19, 02:58](670 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [06:21, 03:05](750 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:00, 10:15](929 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:31] +PASS -- TEST 'control_csawmg_gnu' [08:23, 06:46](829 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:11, 06:22] +PASS -- TEST 'control_diag_debug_gnu' [03:21, 01:11](1362 MB) +PASS -- TEST 'regional_debug_gnu' [08:25, 06:35](885 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:56](944 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:19, 01:55](939 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:19, 02:03](945 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:18, 01:58](944 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:26, 02:14](1029 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [05:20, 03:05](962 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 01:59](944 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:17, 01:10](576 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:17, 01:20](571 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:37, 01:20](1519 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:20, 01:59](946 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:19, 01:56](951 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [05:52, 03:21](950 MB) + +PASS -- COMPILE 'wam_debug_gnu' [04:10, 01:40] +PASS -- TEST 'control_wam_debug_gnu' [07:40, 05:57](1380 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [09:11, 03:27] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:46](810 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [09:10, 03:51] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:46, 03:59](790 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:52, 03:52](787 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:29, 03:30](835 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:35, 03:33](832 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:35, 03:57](789 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:50, 02:07](647 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:18, 02:03](643 MB) +PASS -- TEST 'conus13km_control_gnu' [05:58, 03:52](1032 MB) +PASS -- TEST 'conus13km_2threads_gnu' [06:41, 02:08](1018 MB) +PASS -- TEST 'conus13km_decomp_gnu' [06:39, 03:58](1035 MB) +PASS -- TEST 'conus13km_restart_gnu' [04:36, 02:09](758 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [15:11, 09:21] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [06:32, 04:26](819 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [12:11, 06:47] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:18, 02:06](794 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:20, 02:02](794 MB) +PASS -- TEST 'conus13km_debug_gnu' [12:36, 08:39](1048 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [12:34, 08:37](779 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [13:30, 09:12](1031 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [12:29, 08:53](1055 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [12:27, 08:36](1116 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [12:11, 07:31] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [05:21, 02:02](821 MB) + +PASS -- COMPILE 's2swa_gnu' [22:11, 18:01] +PASS -- TEST 'cpld_control_p8_gnu' [16:35, 12:44](1715 MB) + +PASS -- COMPILE 's2s_gnu' [22:11, 17:57] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [12:04, 09:15](1610 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [06:10, 02:49] +PASS -- TEST 'cpld_debug_p8_gnu' [08:59, 06:21](1709 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [20:11, 16:23] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [17:58, 14:57](1592 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:10, 02:18] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [13:03, 10:10](1596 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [18:11, 15:20] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:18, 02:45](1604 MB) + +PASS -- COMPILE 'atm_mpas_dyn32_gnu' [05:10, 02:49] +PASS -- TEST 'control_gfs_mpas_gnu' [02:21, 00:37](6434 MB) SYNOPSIS: -Starting Date/Time: 20251210 20:40:10 -Ending Date/Time: 20251210 22:32:38 -Total Time: 01h:53m:52s +Starting Date/Time: 20251211 23:19:59 +Ending Date/Time: 20251212 01:14:08 +Total Time: 01h:55m:30s Compiles Completed: 60/60 Tests Completed: 266/266 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 6a78eb6c21..765d19b500 100644 --- a/tests/logs/RegressionTests_orion.log +++ b/tests/logs/RegressionTests_orion.log @@ -1,7 +1,7 @@ ====START OF ORION REGRESSION TESTING LOG==== UFSWM hash used in testing: -6a8584c12e5c8c63cbc8dbc4990737946009e5fe +d5d98961fd4e4318af5d306fedf35e0433fcfaca Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -15,11 +15,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -40,310 +40,310 @@ 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: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251204 -COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3892249 +BASELINE DIRECTORY: /work2/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /work2/noaa/epic/gpetro/orion/RTs/ufs-wm/stmp/gpetro/FV3_RT/rt_3154803 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [32:11, 30:24] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [23:05, 16:57](2100 MB) -PASS -- TEST 'cpld_control_gefs_intel' [37:28, 19:51](3060 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [24:12, 07:05](2735 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [38:02, 20:45](3068 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [32:11, 30:24] ( 1 warnings 1040 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [30:40, 23:12](1960 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:30, 24:59](2135 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [15:13, 10:16](1213 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:17, 10:34](2090 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [34:44, 27:11](1880 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [31:11, 29:48] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:05, 13:15](2225 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [16:25, 07:57](1513 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:32] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [20:01, 12:35](2251 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:27] ( 338 warnings 2771 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [27:12, 22:57](1952 MB) - -PASS -- COMPILE 's2swa_intel' [26:11, 25:01] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [20:27, 17:03](2193 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [20:11, 16:08](2187 MB) -PASS -- TEST 'cpld_restart_p8_intel' [11:49, 08:34](1780 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [18:36, 16:00](2208 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [13:23, 09:25](1770 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [15:03, 11:34](2287 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [18:29, 15:43](2180 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [16:33, 13:45](2069 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [20:11, 16:11](2194 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [21:07, 16:04](2712 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [16:19, 09:56](2817 MB) - -PASS -- COMPILE 's2swal_intel' [26:11, 25:02] ( 1 warnings 1063 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [20:14, 17:06](2145 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:25, 08:28](1744 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:48, 07:41](2149 MB) - -PASS -- COMPILE 's2sw_intel' [25:11, 23:44] ( 1 warnings 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [19:26, 16:37](1998 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:38, 07:25](2070 MB) - -PASS -- COMPILE 's2swa_debug_intel' [07:11, 06:03] ( 338 warnings 2020 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:40, 14:57](2207 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:11, 05:47] ( 338 warnings 2002 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:20, 08:01](2013 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [30:11, 28:57] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:55, 05:36](2050 MB) - -PASS -- COMPILE 's2swa_faster_intel' [31:11, 29:16] ( 1 warnings 1028 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [21:10, 16:48](2187 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [28:11, 26:34] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:50, 19:46](2016 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:40, 10:43](1253 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:51, 22:50](1919 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [10:00, 07:37](3041 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:04, 03:37](3027 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [07:09, 02:51](2470 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [04:44, 02:16](2230 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:44, 00:49](2226 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:35, 00:35](1548 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [03:38, 01:23](2229 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:36, 00:47](2233 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:50, 01:54](1545 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:42, 00:48](2164 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:42, 00:41](2164 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:41, 01:33](1490 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [08:11, 05:27] ( 338 warnings 2753 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:39, 28:23](2001 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:11, 14:43] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [08:34, 03:45](700 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [07:35, 02:33](1580 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [07:42, 02:44](1600 MB) -PASS -- TEST 'control_latlon_intel' [07:30, 02:40](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [07:35, 02:41](1591 MB) -PASS -- TEST 'control_c48_intel' [13:39, 08:31](1719 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [13:39, 07:53](837 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:40, 08:45](1716 MB) -PASS -- TEST 'control_c192_intel' [12:57, 07:51](1785 MB) -PASS -- TEST 'control_c384_intel' [16:02, 09:34](1980 MB) -PASS -- TEST 'control_c384gdas_intel' [16:03, 10:39](1297 MB) -PASS -- TEST 'control_stochy_intel' [03:27, 01:48](650 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:42, 01:08](491 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:41](652 MB) -PASS -- TEST 'control_iovr4_intel' [04:27, 02:43](651 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [05:46, 03:25](949 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 02:40](651 MB) -PASS -- TEST 'control_p8_intel' [05:43, 03:06](1865 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:29, 03:25](1884 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [05:27, 03:01](1887 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:36, 02:57](1901 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:41, 03:59](1894 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [07:28, 03:16](2429 MB) -PASS -- TEST 'control_restart_p8_intel' [04:22, 01:48](1128 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:32, 04:01](1883 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:33, 01:46](1131 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:11, 04:06](1881 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:08, 03:26](1961 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:43, 05:14](1885 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:31, 05:37](1929 MB) -PASS -- TEST 'control_p8_mynn_intel' [06:30, 03:33](1883 MB) -PASS -- TEST 'merra2_thompson_intel' [06:40, 03:39](1899 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [08:37, 05:48](1895 MB) -PASS -- TEST 'regional_control_intel' [08:47, 06:11](1073 MB) -PASS -- TEST 'regional_restart_intel' [07:46, 05:28](1103 MB) -PASS -- TEST 'regional_decomp_intel' [08:38, 06:27](1077 MB) -PASS -- TEST 'regional_2threads_intel' [06:37, 04:12](1012 MB) -PASS -- TEST 'regional_noquilt_intel' [10:44, 07:29](1359 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [07:39, 06:08](1077 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:54, 06:08](1077 MB) -PASS -- TEST 'regional_wofs_intel' [09:42, 07:40](1904 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [15:11, 13:44] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:36, 04:57](1909 MB) - -PASS -- COMPILE 'rrfs_intel' [14:11, 12:56] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [07:25, 04:17](1037 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:11, 05:18](1355 MB) -PASS -- TEST 'rap_decomp_intel' [07:04, 04:25](1031 MB) -PASS -- TEST 'rap_2threads_intel' [07:31, 04:27](1117 MB) -PASS -- TEST 'rap_restart_intel' [05:57, 02:20](1002 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:23, 04:12](1026 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:13, 04:24](1033 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:39, 02:19](1011 MB) -PASS -- TEST 'hrrr_control_intel' [06:39, 04:04](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:29, 04:11](1040 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [07:24, 04:12](1109 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:47, 02:14](961 MB) -PASS -- TEST 'rrfs_v1beta_intel' [10:47, 07:29](1040 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [10:36, 09:08](1993 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:39, 08:47](2015 MB) - -PASS -- COMPILE 'csawmg_intel' [15:11, 13:21] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [09:54, 07:32](1048 MB) -PASS -- TEST 'control_ras_intel' [05:24, 03:23](743 MB) - -PASS -- COMPILE 'wam_intel' [16:11, 12:23] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [15:00, 12:32](1667 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [15:11, 12:29] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:37, 04:39](1881 MB) -PASS -- TEST 'regional_control_faster_intel' [08:44, 07:04](1079 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [09:11, 06:24] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:36, 02:21](1604 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:37, 02:23](1618 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:28, 03:05](824 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:44](822 MB) -PASS -- TEST 'control_csawmg_debug_intel' [07:48, 05:25](1137 MB) -PASS -- TEST 'control_ras_debug_intel' [04:36, 02:55](833 MB) -PASS -- TEST 'control_diag_debug_intel' [04:34, 02:49](1680 MB) -PASS -- TEST 'control_debug_p8_intel' [07:02, 04:19](1906 MB) -PASS -- TEST 'regional_debug_intel' [20:52, 18:22](1088 MB) -PASS -- TEST 'rap_control_debug_intel' [06:34, 04:58](1211 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:34, 04:54](1205 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [06:30, 04:57](1205 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [06:23, 04:56](1213 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:26, 05:02](1221 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:41, 05:35](1296 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:30, 05:04](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:27, 05:16](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:25, 05:04](1207 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:10](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:26, 05:07](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:29, 04:57](1216 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:28, 08:10](1206 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:36, 05:01](1214 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:28, 05:02](1207 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:16, 04:31] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:56, 13:16](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [15:11, 12:32] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:08, 05:00](1250 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:15, 03:44](944 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:23, 03:37](934 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:58, 04:01](972 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:11, 03:50](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:05, 03:46](917 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:30, 02:05](898 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [05:27, 02:03](881 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:11, 12:08] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:19, 03:43](1309 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:28](1222 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:06, 03:46](1342 MB) -PASS -- TEST 'conus13km_restart_intel' [07:01, 02:10](1187 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:32] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:56, 04:29](1007 MB) +PASS -- COMPILE 's2swa_32bit_intel' [31:11, 29:42] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [18:41, 16:01](2106 MB) +PASS -- TEST 'cpld_control_gefs_intel' [34:24, 19:41](3055 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [23:32, 06:51](2730 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [34:50, 20:30](3063 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [28:11, 26:27] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [25:19, 22:03](1962 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:01, 24:09](2146 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [13:54, 09:22](1214 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [15:08, 10:29](2081 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:19, 26:27](1872 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [24:11, 22:47] ( 1 warnings 938 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [19:04, 12:29](2229 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [15:39, 07:45](1504 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [07:11, 05:25] ( 338 warnings 938 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [18:05, 12:35](2253 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [08:11, 06:23] ( 338 warnings 2772 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:57, 23:06](1951 MB) + +PASS -- COMPILE 's2swa_intel' [27:11, 25:15] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [20:13, 17:01](2189 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:12, 15:54](2189 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:07, 08:25](1767 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [19:08, 15:51](2189 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:13, 08:17](1758 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [14:44, 11:32](2293 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [19:59, 16:14](2170 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:02, 13:52](2062 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:13, 16:04](2189 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:18, 16:04](2668 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [15:24, 09:19](2823 MB) + +PASS -- COMPILE 's2swal_intel' [31:11, 29:48] ( 1 warnings 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [19:44, 16:50](2141 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:19, 08:33](1742 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [11:33, 08:19](2163 MB) + +PASS -- COMPILE 's2sw_intel' [25:11, 23:19] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:32, 15:26](1990 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:40, 06:27](2084 MB) + +PASS -- COMPILE 's2swa_debug_intel' [08:11, 06:24] ( 338 warnings 2021 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:33, 14:31](2201 MB) + +PASS -- COMPILE 's2sw_debug_intel' [07:10, 05:35] ( 338 warnings 2003 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:21, 06:50](2012 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [29:11, 28:02] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:44, 04:29](2076 MB) + +PASS -- COMPILE 's2swa_faster_intel' [30:11, 28:24] ( 1 warnings 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:42, 16:01](2192 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [28:11, 26:58] ( 1 warnings 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [22:44, 20:03](2019 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:23, 09:22](1257 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [25:43, 23:03](1934 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:08, 07:40](3041 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [04:54, 02:25](3029 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:14, 01:27](2473 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [03:47, 01:21](2242 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:45, 00:47](2238 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [03:49, 01:09](1552 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [03:40, 01:20](2232 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:38, 00:48](2234 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:51, 00:35](1551 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:41, 00:49](2165 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:41, 00:43](2166 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:48, 00:31](1503 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:00] ( 338 warnings 2754 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [31:47, 28:54](1998 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [17:11, 15:50] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [05:27, 03:42](692 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:29, 02:31](1581 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:36, 02:44](1593 MB) +PASS -- TEST 'control_latlon_intel' [04:26, 02:40](1588 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:30, 02:40](1595 MB) +PASS -- TEST 'control_c48_intel' [10:35, 08:31](1712 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:35, 07:54](844 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:35, 08:45](1714 MB) +PASS -- TEST 'control_c192_intel' [09:53, 07:47](1787 MB) +PASS -- TEST 'control_c384_intel' [12:59, 09:29](1973 MB) +PASS -- TEST 'control_c384gdas_intel' [15:28, 10:35](1299 MB) +PASS -- TEST 'control_stochy_intel' [03:23, 01:50](655 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:43, 01:07](483 MB) +PASS -- TEST 'control_lndp_intel' [03:28, 01:41](658 MB) +PASS -- TEST 'control_iovr4_intel' [04:30, 02:39](650 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:51, 03:08](951 MB) +PASS -- TEST 'control_iovr5_intel' [04:30, 02:39](650 MB) +PASS -- TEST 'control_p8_intel' [05:48, 03:01](1878 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:27, 03:15](1891 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:32, 03:00](1889 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [05:33, 02:59](1904 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [06:47, 03:08](1915 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [05:28, 02:39](2399 MB) +PASS -- TEST 'control_restart_p8_intel' [04:51, 01:48](1134 MB) +PASS -- TEST 'control_noqr_p8_intel' [05:31, 03:00](1873 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:22, 01:45](1130 MB) +PASS -- TEST 'control_decomp_p8_intel' [05:25, 03:09](1878 MB) +PASS -- TEST 'control_2threads_p8_intel' [06:30, 03:29](1958 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:58, 05:13](1888 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:24, 04:35](1938 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:36, 03:17](1890 MB) +PASS -- TEST 'merra2_thompson_intel' [06:44, 03:38](1897 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [08:27, 05:35](1896 MB) +PASS -- TEST 'regional_control_intel' [07:34, 06:10](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:50, 03:19](1101 MB) +PASS -- TEST 'regional_decomp_intel' [08:37, 06:27](1072 MB) +PASS -- TEST 'regional_2threads_intel' [06:46, 04:10](1027 MB) +PASS -- TEST 'regional_noquilt_intel' [07:42, 06:05](1364 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:44, 06:05](1076 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:41, 06:07](1080 MB) +PASS -- TEST 'regional_wofs_intel' [09:38, 07:46](1899 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [16:11, 14:13] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [07:24, 04:28](1917 MB) + +PASS -- COMPILE 'rrfs_intel' [15:11, 13:13] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [07:24, 04:15](1039 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:05, 05:16](1350 MB) +PASS -- TEST 'rap_decomp_intel' [07:22, 04:23](1030 MB) +PASS -- TEST 'rap_2threads_intel' [07:09, 04:28](1116 MB) +PASS -- TEST 'rap_restart_intel' [05:43, 02:25](1011 MB) +PASS -- TEST 'rap_sfcdiff_intel' [07:09, 04:12](1038 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:08, 04:23](1039 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:48, 02:19](1002 MB) +PASS -- TEST 'hrrr_control_intel' [06:32, 04:05](1033 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:22, 04:11](1030 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:21, 04:13](1108 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:42, 02:14](960 MB) +PASS -- TEST 'rrfs_v1beta_intel' [10:33, 07:28](1042 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:12](1993 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:25, 08:52](2016 MB) + +PASS -- COMPILE 'csawmg_intel' [14:11, 12:50] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [08:41, 06:12](1042 MB) +PASS -- TEST 'control_ras_intel' [05:24, 03:23](742 MB) + +PASS -- COMPILE 'wam_intel' [14:11, 12:13] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [14:56, 12:28](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:11, 12:28] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:31, 03:13](1884 MB) +PASS -- TEST 'regional_control_faster_intel' [07:44, 06:07](1078 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:35] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:31, 02:18](1621 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:28, 02:21](1616 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:07](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:27, 02:45](815 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:52, 04:32](1136 MB) +PASS -- TEST 'control_ras_debug_intel' [04:24, 02:46](833 MB) +PASS -- TEST 'control_diag_debug_intel' [04:34, 02:43](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [04:54, 02:43](1916 MB) +PASS -- TEST 'regional_debug_intel' [18:45, 17:07](1090 MB) +PASS -- TEST 'rap_control_debug_intel' [06:23, 05:01](1204 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:56](1213 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:24, 05:02](1207 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:24, 05:01](1213 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:23, 05:00](1211 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:31, 05:10](1289 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:11](1211 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:21, 05:03](1211 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:22, 05:04](1215 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:26, 04:58](1207 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:24, 04:57](1212 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:23, 05:00](1202 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:23, 08:04](1209 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:29, 05:07](1219 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:24, 04:58](1214 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:11, 04:26] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:52, 12:56](1700 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:11, 12:24] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:07, 04:58](1239 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [06:02, 03:45](942 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:17, 03:38](921 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:55, 04:02](976 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:07, 03:51](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:28, 03:47](915 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:31, 02:06](892 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:37, 02:02](889 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [14:11, 12:19] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [06:23, 03:44](1308 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:55, 01:29](1221 MB) +PASS -- TEST 'conus13km_decomp_intel' [05:54, 03:45](1340 MB) +PASS -- TEST 'conus13km_restart_intel' [05:05, 02:13](1189 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [14:11, 12:33] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:52, 04:28](1011 MB) PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:25] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:28, 04:51](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:29, 04:54](1085 MB) -PASS -- TEST 'conus13km_debug_intel' [24:53, 22:33](1344 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [24:51, 22:58](1045 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [23:51, 21:44](1268 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [25:46, 23:18](1387 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:51, 23:06](1411 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:46] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:27, 05:18](1176 MB) - -PASS -- COMPILE 'hafsw_intel' [21:11, 19:18] ( 1 warnings 693 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [06:54, 04:42](865 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:37, 05:58](1049 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:36, 04:20](1188 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [32:07, 29:31](983 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:54, 06:37](489 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:15, 07:30](496 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [05:49, 03:21](363 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:02, 08:09](416 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:56, 04:20](518 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:48, 04:10](516 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:32, 01:35](390 MB) -PASS -- TEST 'gnv1_nested_intel' [06:46, 03:46](1728 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:13, 15:12] ( 1 warnings 926 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:01, 11:19](718 MB) - -PASS -- COMPILE 'hafs_all_intel' [15:11, 13:22] ( 1 warnings 635 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [10:05, 06:38](954 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:00, 06:35](942 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [25:11, 24:05] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [06:24, 03:30](1866 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:23, 02:24](1808 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:18, 03:07](1130 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 03:06](1122 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 03:07](1129 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:19, 03:28](1863 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:21, 03:26](1868 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 03:06](1121 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:20, 07:40](1661 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:12, 07:18](1033 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:21, 03:27](1871 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [10:19, 05:53](4829 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [10:20, 05:54](4837 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:57] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [11:19, 07:07](1779 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [25:12, 23:33] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [08:18, 03:28](1868 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:19] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:34, 01:16](249 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [04:28, 00:47](314 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 00:31](314 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:31] ( 164 remarks ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [04:32, 00:38](563 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:37, 00:21](461 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:11, 22:49] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:22, 04:38](1983 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [15:10, 13:20] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:08, 05:37](1987 MB) - -PASS -- COMPILE 'atml_intel' [16:10, 14:29] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:34, 04:29](1857 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:04, 02:02](1106 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:10, 05:48] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:33, 06:09](1888 MB) - -PASS -- COMPILE 'atmw_intel' [15:11, 12:49] ( 1 warnings 518 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:25, 02:45](1899 MB) - -PASS -- COMPILE 'atmaero_intel' [16:11, 14:31] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:19, 04:24](1972 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:11, 05:15](1756 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:08, 05:17](1772 MB) - -PASS -- COMPILE 'atmaq_intel' [14:10, 13:08] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:19, 18:07](2920 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [25:11, 21:35](2908 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:39] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [42:45, 39:51](2934 MB) - -PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:59] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:50](1087 MB) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:55](1084 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:28, 04:45](1088 MB) +PASS -- TEST 'conus13km_debug_intel' [26:10, 23:20](1346 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [24:58, 22:50](1025 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:50, 21:46](1268 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [25:47, 23:25](1369 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [24:46, 22:57](1420 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:22] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:26, 04:59](1179 MB) + +PASS -- COMPILE 'hafsw_intel' [20:11, 18:32] ( 1 warnings 693 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [06:52, 04:43](870 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:28, 06:01](1064 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:30, 04:17](1184 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:00, 29:33](975 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:58, 06:34](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:05, 07:28](506 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:47, 03:18](360 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:06, 08:11](415 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:57, 04:18](516 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 04:09](514 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:29, 01:22](394 MB) +PASS -- TEST 'gnv1_nested_intel' [06:48, 03:47](1729 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [16:11, 14:49] ( 1 warnings 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:59, 11:23](714 MB) + +PASS -- COMPILE 'hafs_all_intel' [15:11, 13:57] ( 1 warnings 635 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:02, 06:39](954 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [08:58, 06:36](931 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [25:11, 23:13] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:24, 03:28](1872 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:23, 02:26](1816 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:22, 03:07](1128 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 03:09](1133 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 03:07](1121 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:21, 03:28](1867 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:19, 03:26](1866 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 03:07](1127 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [10:17, 07:38](1663 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [10:08, 07:15](1030 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [05:17, 03:27](1868 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [07:21, 05:52](4833 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [07:20, 05:58](4830 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:32] ( 2 warnings 562 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:20, 07:07](1772 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [25:11, 23:34] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:21, 03:27](1861 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:16](249 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:26, 00:46](316 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:31, 00:31](313 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:37] ( 164 remarks ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:32, 00:38](568 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:23](444 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [24:11, 22:45] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:20, 04:14](1981 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:10, 12:51] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:14, 05:15](1991 MB) + +PASS -- COMPILE 'atml_intel' [16:10, 14:54] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:38, 03:35](1855 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:59, 02:01](1106 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:49] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:30, 05:56](1891 MB) + +PASS -- COMPILE 'atmw_intel' [15:10, 13:40] ( 1 warnings 518 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:26, 02:05](1900 MB) + +PASS -- COMPILE 'atmaero_intel' [16:11, 14:47] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:19, 04:26](1971 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [08:04, 05:14](1758 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:11, 05:16](1774 MB) + +PASS -- COMPILE 'atmaq_intel' [15:11, 13:27] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [21:07, 17:47](2916 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [24:59, 21:12](2922 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:11, 04:32] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:51, 39:58](2929 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:57] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:31, 13:53](1086 MB) SYNOPSIS: -Starting Date/Time: 20251210 20:40:07 -Ending Date/Time: 20251210 22:54:16 -Total Time: 02h:15m:03s +Starting Date/Time: 20251212 03:29:23 +Ending Date/Time: 20251212 05:39:05 +Total Time: 02h:10m:32s Compiles Completed: 44/44 Tests Completed: 205/205 diff --git a/tests/logs/RegressionTests_ursa.log b/tests/logs/RegressionTests_ursa.log index 86ccbdf47c..22f43e5f41 100644 --- a/tests/logs/RegressionTests_ursa.log +++ b/tests/logs/RegressionTests_ursa.log @@ -1,7 +1,7 @@ ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -027200541a523ec033359dae21e002ead1482661 +00dc804db353e08b17d7a758e870bd1b1e95e4dd Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -15,11 +15,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -40,432 +40,432 @@ 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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251204 -COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_2602068 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Jong.Kim/stmp/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1506286 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [16:11, 13:33] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:53, 06:24](2172 MB) -PASS -- TEST 'cpld_control_gefs_intel' [34:41, 20:54](3248 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [21:57, 06:51](2963 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [48:29, 32:34](3476 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [17:12, 14:22] ( 1 warnings 1040 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [12:48, 09:27](2045 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:55, 10:07](2606 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [05:49, 03:51](1468 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [07:59, 04:38](2341 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:46, 16:50](1998 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [15:12, 12:49] ( 1 warnings 937 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [12:24, 08:24](2398 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [09:11, 04:25](1877 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:11, 03:42] ( 338 warnings 937 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [12:43, 08:25](2432 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:12, 03:33] ( 338 warnings 2771 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [15:44, 13:27](2076 MB) - -PASS -- COMPILE 's2swa_intel' [17:12, 14:45] ( 1 warnings 1042 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [09:57, 07:09](2523 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [10:02, 06:33](2506 MB) -PASS -- TEST 'cpld_restart_p8_intel' [07:55, 03:35](2269 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [09:52, 06:34](2349 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:00, 03:35](1997 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [14:56, 12:23](2984 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [08:57, 06:40](2476 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [14:56, 11:31](2296 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [10:03, 06:33](2500 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [23:16, 18:36](3617 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [17:03, 11:56](3474 MB) - -PASS -- COMPILE 's2swal_intel' [17:12, 14:24] ( 1 warnings 1063 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [10:01, 07:00](2529 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:02, 03:38](2298 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [07:55, 05:40](3144 MB) - -PASS -- COMPILE 's2sw_intel' [16:12, 13:56] ( 1 warnings 1010 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:45, 06:02](2090 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:53, 04:53](2980 MB) - -PASS -- COMPILE 's2swa_debug_intel' [06:12, 03:32] ( 338 warnings 2020 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:54, 09:26](2379 MB) - -PASS -- COMPILE 's2sw_debug_intel' [06:12, 03:21] ( 338 warnings 2002 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:40, 04:33](2103 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:12, 12:26] ( 1 warnings 948 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:00, 03:25](2152 MB) - -PASS -- COMPILE 's2swa_faster_intel' [16:12, 13:44] ( 1 warnings 1028 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [09:51, 06:38](2482 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [16:12, 14:23] ( 1 warnings 1033 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:45, 08:10](2150 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [05:52, 03:51](1668 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:47, 11:39](2094 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [06:34, 04:13](3027 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:35, 01:23](3016 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [02:45, 00:51](2456 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [20:34, 18:24](2214 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:27, 00:32](2207 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:26, 00:25](1530 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [02:26, 00:52](2207 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:28, 00:30](2207 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:53, 00:25](1529 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [02:27, 00:33](2136 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:28, 00:27](2137 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [21:27, 19:22](1488 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:12] ( 338 warnings 2753 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:43, 19:23](2186 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [09:11, 07:43] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_flake_intel' [04:21, 02:28](1341 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:23, 01:34](2212 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [12:24, 09:53](2227 MB) -PASS -- TEST 'control_latlon_intel' [04:22, 01:39](2223 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:24, 01:44](2206 MB) -PASS -- TEST 'control_c48_intel' [06:25, 04:17](1666 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [05:20, 04:04](801 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:24, 04:27](1667 MB) -PASS -- TEST 'control_c192_intel' [09:34, 04:49](1825 MB) -PASS -- TEST 'control_c384_intel' [11:09, 05:33](2090 MB) -PASS -- TEST 'control_c384gdas_intel' [12:50, 06:15](1907 MB) -PASS -- TEST 'control_stochy_intel' [04:18, 01:24](1299 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:19, 00:43](1230 MB) -PASS -- TEST 'control_lndp_intel' [04:18, 01:13](1290 MB) -PASS -- TEST 'control_iovr4_intel' [05:19, 01:43](1287 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [04:57, 02:06](1597 MB) -PASS -- TEST 'control_iovr5_intel' [04:27, 01:42](1286 MB) -PASS -- TEST 'control_p8_intel' [04:37, 02:05](2492 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [04:41, 02:08](2519 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:37, 02:10](2515 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [04:35, 01:59](2533 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:14](2553 MB) -FAILED: RUN DID NOT COMPLETE -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [, ]( MB) -PASS -- TEST 'control_restart_p8_intel' [03:32, 01:18](1835 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:34, 02:05](2506 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:31, 01:21](1849 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:37, 02:29](2493 MB) -PASS -- TEST 'control_2threads_p8_intel' [04:34, 01:41](2012 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:35, 03:44](2503 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:39, 02:48](2575 MB) -PASS -- TEST 'control_p8_mynn_intel' [04:45, 02:09](2519 MB) -PASS -- TEST 'merra2_thompson_intel' [04:49, 02:22](2528 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [06:00, 03:25](2527 MB) -PASS -- TEST 'regional_control_intel' [05:27, 03:24](1726 MB) -PASS -- TEST 'regional_restart_intel' [04:34, 02:18](1692 MB) -PASS -- TEST 'regional_decomp_intel' [05:28, 03:36](1718 MB) -PASS -- TEST 'regional_2threads_intel' [04:28, 02:05](1560 MB) -PASS -- TEST 'regional_noquilt_intel' [05:27, 03:25](1990 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:26, 03:26](1711 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:36, 03:25](1707 MB) -PASS -- TEST 'regional_wofs_intel' [06:38, 04:21](2650 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:13, 06:39] ( 1 warnings 481 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:37, 02:45](2545 MB) - -PASS -- COMPILE 'rrfs_intel' [07:12, 06:01] ( 4 warnings 448 remarks ) -PASS -- TEST 'rap_control_intel' [04:24, 02:29](1778 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:47, 02:39](1629 MB) -PASS -- TEST 'rap_decomp_intel' [04:24, 02:36](1735 MB) -PASS -- TEST 'rap_2threads_intel' [03:28, 02:01](1171 MB) -PASS -- TEST 'rap_restart_intel' [03:36, 01:23](1761 MB) -PASS -- TEST 'rap_sfcdiff_intel' [04:38, 02:30](1762 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [04:38, 02:36](1734 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [03:27, 01:21](1735 MB) -PASS -- TEST 'hrrr_control_intel' [04:31, 02:23](1774 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:38, 02:28](1698 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:29, 01:56](1152 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:20](1705 MB) -PASS -- TEST 'rrfs_v1beta_intel' [24:34, 20:47](2083 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [09:19, 05:42](2659 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [09:19, 05:32](2905 MB) - -PASS -- COMPILE 'csawmg_intel' [08:12, 06:13] ( 1 warnings 417 remarks ) -PASS -- TEST 'control_csawmg_intel' [07:32, 04:36](1759 MB) -PASS -- TEST 'control_ras_intel' [04:20, 02:15](1595 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:52] ( 1 warnings 395 remarks ) -PASS -- TEST 'control_wam_intel' [10:44, 08:05](2418 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 05:33] ( 1 warnings 411 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:33, 02:20](2510 MB) -PASS -- TEST 'regional_control_faster_intel' [05:29, 03:29](1720 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:12, 03:47] ( 419 warnings 589 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:51](2241 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:22, 01:52](2253 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:18](1468 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:21, 02:05](1462 MB) -PASS -- TEST 'control_csawmg_debug_intel' [05:28, 03:31](1785 MB) -PASS -- TEST 'control_ras_debug_intel' [04:20, 02:24](1478 MB) -PASS -- TEST 'control_diag_debug_intel' [10:25, 08:12](2296 MB) -PASS -- TEST 'control_debug_p8_intel' [03:43, 02:03](2547 MB) -PASS -- TEST 'regional_debug_intel' [13:30, 12:08](1633 MB) -PASS -- TEST 'rap_control_debug_intel' [05:19, 03:36](1867 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:20, 03:29](1869 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 03:34](1863 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:19, 03:36](1875 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:19, 03:38](1874 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:26, 03:49](1950 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:42](1871 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 03:38](1865 MB) -PASS -- TEST 'rap_lndp_debug_intel' [06:19, 03:37](1866 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:18, 03:33](1863 MB) -PASS -- TEST 'rap_noah_debug_intel' [06:18, 03:32](1871 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 03:34](1874 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [08:20, 05:41](1867 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [06:21, 03:35](1867 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:20, 03:37](1858 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [08:29, 06:08](1868 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:12, 02:12] ( 380 warnings 395 remarks ) -PASS -- TEST 'control_wam_debug_intel' [11:41, 09:09](2299 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:12, 06:00] ( 4 warnings 415 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:47, 02:30](1496 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:28, 02:08](1732 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:25, 02:03](1732 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [05:23, 01:41](1059 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:22, 01:39](1046 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:22, 02:08](1649 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [03:24, 01:10](1663 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:21, 01:09](1626 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [08:12, 05:40] ( 4 warnings 392 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:45, 01:54](1763 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:40, 00:49](1795 MB) -PASS -- TEST 'conus13km_decomp_intel' [04:40, 01:56](1809 MB) -PASS -- TEST 'conus13km_restart_intel' [05:42, 01:29](1542 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [08:12, 06:02] ( 4 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:27, 02:38](1816 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:12, 02:19] ( 313 warnings 421 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:18, 03:29](1749 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:30, 03:23](1748 MB) -PASS -- TEST 'conus13km_debug_intel' [21:37, 14:58](1821 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:39, 15:05](1455 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:33, 08:11](1816 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [21:37, 15:11](1867 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:37, 14:56](1898 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:16] ( 313 warnings 415 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:19, 03:27](1857 MB) - -PASS -- COMPILE 'hafsw_intel' [10:16, 08:41] ( 1 warnings 693 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:35, 02:46](1165 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [10:17, 04:19](1363 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:56, 02:34](1445 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [35:20, 29:57](1336 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:32, 03:34](791 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:38, 04:19](827 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:29, 01:53](524 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:14, 04:18](611 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:33, 02:36](758 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:33, 02:14](743 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:22, 00:45](526 MB) -PASS -- TEST 'gnv1_nested_intel' [08:46, 02:29](1712 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [10:17, 08:17] ( 1 warnings 926 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [23:12, 17:04](1090 MB) - -PASS -- COMPILE 'hafs_all_intel' [09:26, 07:50] ( 1 warnings 635 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:36, 04:17](1287 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:34, 04:20](1277 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [13:17, 11:20] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [15:17, 13:28](1949 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:18, 01:20](1883 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:22, 02:02](1191 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:16, 02:05](1198 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:16, 02:02](1196 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:16, 02:05](1940 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:16, 01:57](1936 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:16, 01:53](1202 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:55, 05:32](1835 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:53, 05:24](1373 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:14, 02:04](1944 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:16, 03:18](4788 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [05:17, 03:30](4788 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:12, 02:23] ( 2 warnings 561 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:23, 04:16](1842 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:14, 10:57] ( 561 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:17, 02:06](1945 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [02:12, 00:39] ( 126 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:27, 00:44](365 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:23, 00:32](621 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:23](621 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [13:21, 11:17] ( 1 warnings 611 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:43, 02:35](2827 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:13, 06:02] ( 1 warnings 499 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:36, 03:21](2870 MB) - -PASS -- COMPILE 'atml_intel' [08:14, 06:52] ( 9 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:37, 02:23](1906 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:28, 01:24](1308 MB) - -PASS -- COMPILE 'atml_debug_intel' [05:11, 03:37] ( 424 warnings 552 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:36, 03:31](1944 MB) - -PASS -- COMPILE 'atmw_intel' [09:12, 07:47] ( 1 warnings 518 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [16:34, 14:04](2690 MB) - -PASS -- COMPILE 'atmaero_intel' [10:11, 08:55] ( 1 warnings 413 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:45, 03:11](1997 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:31, 03:18](2389 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [23:32, 20:26](2421 MB) - -PASS -- COMPILE 'atmaq_intel' [08:18, 06:13] ( 1 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_intel' [13:38, 10:27](2875 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [15:42, 12:17](2875 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:16] ( 397 warnings 598 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [31:25, 27:20](2890 MB) - -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:33] ( 4 warnings 422 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [20:28, 18:27](1137 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [16:31, 14:29] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [12:01, 09:26](2058 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:24] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:53, 13:21](2096 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [12:28, 11:21] -PASS -- TEST 'cpld_control_sfs_intelllvm' [12:28, 08:26](2383 MB) - -PASS -- COMPILE 's2swa_intelllvm' [15:21, 13:57] -PASS -- TEST 'cpld_control_p8_intelllvm' [09:54, 07:00](2489 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:17, 05:27] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [04:36, 02:07](1719 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:12, 05:44] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [04:27, 02:42](1806 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [14:17, 12:32] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [03:17, 02:03](1935 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:20] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [05:16, 04:04](1839 MB) - -PASS -- COMPILE 'atm_gnu' [04:11, 02:48] -PASS -- TEST 'control_c48_gnu' [07:20, 05:52](1508 MB) -PASS -- TEST 'control_stochy_gnu' [03:17, 02:02](508 MB) -PASS -- TEST 'control_ras_gnu' [05:17, 03:09](514 MB) -PASS -- TEST 'control_p8_gnu' [05:35, 03:06](1448 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [05:47, 03:13](1468 MB) -PASS -- TEST 'control_flake_gnu' [05:24, 04:05](553 MB) - -PASS -- COMPILE 'rrfs_gnu' [04:11, 02:50] -PASS -- TEST 'rap_control_gnu' [05:25, 03:28](848 MB) -PASS -- TEST 'rap_decomp_gnu' [05:24, 03:28](847 MB) -PASS -- TEST 'rap_2threads_gnu' [04:28, 02:46](899 MB) -PASS -- TEST 'rap_restart_gnu' [03:28, 01:51](581 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [05:40, 03:29](846 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:36, 03:30](847 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:29, 01:50](581 MB) -PASS -- TEST 'hrrr_control_gnu' [05:23, 03:23](848 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [05:24, 03:20](836 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [04:29, 02:35](888 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [05:23, 03:22](849 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [03:18, 01:47](574 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:19, 01:46](663 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [08:27, 06:15](842 MB) - -PASS -- COMPILE 'csawmg_gnu' [04:12, 02:31] -PASS -- TEST 'control_csawmg_gnu' [07:25, 05:43](750 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:11, 05:07] -PASS -- TEST 'control_diag_debug_gnu' [03:35, 01:19](1281 MB) -PASS -- TEST 'regional_debug_gnu' [07:26, 05:34](751 MB) -PASS -- TEST 'rap_control_debug_gnu' [03:17, 01:49](855 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [03:17, 01:48](854 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [03:20, 01:49](860 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [03:17, 01:48](859 MB) -PASS -- TEST 'rap_diag_debug_gnu' [03:24, 02:07](940 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 02:54](878 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:17, 01:54](853 MB) -PASS -- TEST 'control_ras_debug_gnu' [02:19, 01:06](498 MB) -PASS -- TEST 'control_stochy_debug_gnu' [03:19, 01:12](493 MB) -PASS -- TEST 'control_debug_p8_gnu' [03:31, 01:20](1445 MB) -PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:50](855 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [03:18, 01:48](856 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:27, 02:58](864 MB) - -PASS -- COMPILE 'wam_debug_gnu' [03:13, 01:24] -PASS -- TEST 'control_wam_debug_gnu' [06:34, 04:36](1304 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:11, 02:34] -PASS -- TEST 'control_csawmg_debug_gnu' [03:25, 01:46](736 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:11, 02:41] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:22, 03:15](705 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [04:23, 03:07](709 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [04:24, 02:26](734 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [04:21, 02:23](726 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [05:21, 03:09](708 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:23, 01:42](553 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:40](556 MB) -PASS -- TEST 'conus13km_control_gnu' [04:43, 02:57](903 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:31, 01:10](907 MB) -PASS -- TEST 'conus13km_decomp_gnu' [04:32, 03:01](906 MB) -PASS -- TEST 'conus13km_restart_gnu' [03:32, 01:43](581 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:11, 06:12] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:27, 03:38](733 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [07:11, 05:14] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:18, 01:47](713 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:17, 01:43](718 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:34, 07:05](922 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:32, 07:00](648 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [05:30, 04:08](923 MB) -PASS -- TEST 'conus13km_debug_decomp_gnu' [09:30, 07:24](923 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [10:30, 07:04](990 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [07:15, 05:08] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:18, 01:51](740 MB) - -PASS -- COMPILE 's2swa_gnu' [12:19, 11:03] -PASS -- TEST 'cpld_control_p8_gnu' [10:53, 07:38](1606 MB) - -PASS -- COMPILE 's2s_gnu' [12:18, 10:34] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:45, 06:53](1540 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [03:11, 01:58] -PASS -- TEST 'cpld_debug_p8_gnu' [07:47, 04:45](1581 MB) - -PASS -- COMPILE 's2sw_pdlib_gnu' [12:17, 10:20] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [11:39, 09:05](1574 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:14, 01:52] -PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [09:37, 06:34](1564 MB) - -PASS -- COMPILE 'datm_cdeps_gnu' [13:19, 10:50] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:15, 02:28](1513 MB) +PASS -- COMPILE 's2swa_32bit_intel' [15:12, 13:32] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [08:49, 06:42](2178 MB) +PASS -- TEST 'cpld_control_gefs_intel' [29:04, 20:49](3269 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [14:42, 06:09](2951 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [39:41, 31:09](3451 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [15:12, 13:30] ( 1 warnings 1041 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [11:44, 09:17](2057 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [11:55, 09:59](2591 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [05:51, 03:47](1501 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [06:56, 04:33](2336 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [18:41, 16:45](2016 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [14:12, 12:17] ( 1 warnings 938 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:44, 08:19](2389 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [08:50, 04:22](1900 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [05:12, 03:55] ( 338 warnings 938 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [14:23, 08:26](2442 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:12, 04:00] ( 338 warnings 2772 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:44, 13:24](2088 MB) + +PASS -- COMPILE 's2swa_intel' [16:12, 14:31] ( 1 warnings 1043 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [08:54, 07:01](2489 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [09:56, 06:35](2500 MB) +PASS -- TEST 'cpld_restart_p8_intel' [05:53, 03:38](2282 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [08:52, 06:30](2350 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [05:54, 03:40](1990 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [15:45, 13:14](2995 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [08:52, 06:22](2427 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [13:47, 11:10](2333 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:55, 06:37](2481 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [20:35, 17:49](3599 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [14:59, 11:47](3472 MB) + +PASS -- COMPILE 's2swal_intel' [15:12, 13:12] ( 1 warnings 1064 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:56, 07:09](2517 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:59, 03:53](2286 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:50, 05:37](3112 MB) + +PASS -- COMPILE 's2sw_intel' [14:12, 12:20] ( 1 warnings 1011 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:40, 05:54](2080 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [06:49, 04:49](2978 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:12, 03:24] ( 338 warnings 2021 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [13:53, 09:04](2384 MB) + +PASS -- COMPILE 's2sw_debug_intel' [05:12, 03:31] ( 338 warnings 2003 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:43, 04:34](2104 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [14:12, 12:34] ( 1 warnings 949 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [05:48, 03:26](2181 MB) + +PASS -- COMPILE 's2swa_faster_intel' [14:11, 12:57] ( 1 warnings 1029 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [08:50, 06:34](2493 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [15:12, 13:20] ( 1 warnings 1034 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [10:41, 08:11](2161 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [05:54, 04:00](1671 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [13:37, 11:41](2104 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [05:30, 04:02](3026 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [03:30, 01:23](3017 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [22:32, 21:06](2456 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [02:27, 00:52](2208 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [02:30, 00:44](2209 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [02:27, 00:25](1530 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [13:26, 12:05](2214 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [02:27, 00:30](2207 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [02:26, 00:26](1531 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [02:26, 00:33](2138 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [02:27, 00:26](2138 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [02:26, 00:23](1487 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [04:12, 03:05] ( 338 warnings 2754 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [21:41, 19:29](2173 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [09:12, 07:12] ( 1 warnings 501 remarks ) +PASS -- TEST 'control_flake_intel' [05:21, 02:29](1342 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:20, 01:33](2198 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 01:39](2209 MB) +PASS -- TEST 'control_latlon_intel' [04:19, 01:38](2215 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:21, 01:39](2216 MB) +PASS -- TEST 'control_c48_intel' [06:21, 04:12](1666 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [05:21, 04:03](804 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:21, 04:33](1666 MB) +PASS -- TEST 'control_c192_intel' [07:29, 04:43](1837 MB) +PASS -- TEST 'control_c384_intel' [08:08, 05:32](2080 MB) +PASS -- TEST 'control_c384gdas_intel' [09:53, 06:15](1894 MB) +PASS -- TEST 'control_stochy_intel' [03:16, 01:12](1301 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:17, 00:41](1194 MB) +PASS -- TEST 'control_lndp_intel' [02:16, 01:04](1308 MB) +PASS -- TEST 'control_iovr4_intel' [06:19, 04:54](1305 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [11:28, 09:52](1602 MB) +PASS -- TEST 'control_iovr5_intel' [10:18, 09:10](1306 MB) +PASS -- TEST 'control_p8_intel' [03:37, 02:04](2493 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [03:43, 02:08](2511 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:34, 02:09](2500 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [03:35, 02:00](2526 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [04:35, 02:19](2535 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [03:36, 01:44](2382 MB) +PASS -- TEST 'control_restart_p8_intel' [03:33, 01:15](1841 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:34, 02:02](2494 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:40, 01:16](1850 MB) +PASS -- TEST 'control_decomp_p8_intel' [10:32, 08:25](2502 MB) +PASS -- TEST 'control_2threads_p8_intel' [03:31, 01:43](2010 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:30, 03:26](2520 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:34, 02:48](2573 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:36, 02:07](2514 MB) +PASS -- TEST 'merra2_thompson_intel' [11:35, 09:55](2552 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [13:25, 12:07](2547 MB) +PASS -- TEST 'regional_control_intel' [05:26, 03:28](1710 MB) +PASS -- TEST 'regional_restart_intel' [03:28, 01:57](1695 MB) +PASS -- TEST 'regional_decomp_intel' [05:26, 03:36](1712 MB) +PASS -- TEST 'regional_2threads_intel' [03:27, 02:06](1554 MB) +PASS -- TEST 'regional_noquilt_intel' [05:28, 03:27](1985 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:27, 03:26](1708 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:34, 03:26](1714 MB) +PASS -- TEST 'regional_wofs_intel' [06:33, 04:18](2631 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [08:11, 06:42] ( 1 warnings 481 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [04:40, 02:52](2548 MB) + +PASS -- COMPILE 'rrfs_intel' [08:11, 06:14] ( 4 warnings 448 remarks ) +PASS -- TEST 'rap_control_intel' [04:27, 02:29](1802 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:46, 02:39](1597 MB) +PASS -- TEST 'rap_decomp_intel' [04:25, 02:36](1731 MB) +PASS -- TEST 'rap_2threads_intel' [03:28, 02:01](1172 MB) +PASS -- TEST 'rap_restart_intel' [03:27, 01:22](1770 MB) +PASS -- TEST 'rap_sfcdiff_intel' [14:27, 12:28](1885 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:26, 12:48](1801 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [03:26, 01:22](1734 MB) +PASS -- TEST 'hrrr_control_intel' [04:25, 02:25](1754 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:24, 02:46](1712 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [03:25, 01:55](1159 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:20, 01:19](1690 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:31, 04:25](1906 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:19, 05:40](2676 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:19, 05:29](2890 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 06:03] ( 1 warnings 417 remarks ) +PASS -- TEST 'control_csawmg_intel' [06:30, 04:21](1769 MB) +PASS -- TEST 'control_ras_intel' [04:17, 02:14](1575 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:47] ( 1 warnings 395 remarks ) +PASS -- TEST 'control_wam_intel' [09:37, 08:04](2397 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:11, 05:50] ( 1 warnings 411 remarks ) +PASS -- TEST 'control_p8_faster_intel' [03:35, 02:07](2521 MB) +PASS -- TEST 'regional_control_faster_intel' [05:28, 03:28](1705 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:42] ( 419 warnings 589 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:21, 01:38](2236 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [03:21, 01:42](2256 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:18, 02:13](1478 MB) +PASS -- TEST 'control_lndp_debug_intel' [06:18, 05:05](1472 MB) +PASS -- TEST 'control_csawmg_debug_intel' [04:28, 03:06](1798 MB) +PASS -- TEST 'control_ras_debug_intel' [03:18, 02:02](1481 MB) +PASS -- TEST 'control_diag_debug_intel' [03:25, 02:00](2320 MB) +PASS -- TEST 'control_debug_p8_intel' [03:31, 02:04](2536 MB) +PASS -- TEST 'regional_debug_intel' [13:28, 12:00](1630 MB) +PASS -- TEST 'rap_control_debug_intel' [05:18, 03:35](1861 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:18, 03:32](1860 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:18, 03:33](1856 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 03:36](1865 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:36](1870 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:25, 03:46](1950 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:42](1863 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:17, 03:39](1866 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 04:04](1867 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:18, 03:36](1857 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:18, 03:31](1870 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:36](1865 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:17, 05:45](1865 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:18, 03:38](1872 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:21, 03:35](1872 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:28, 12:54](1866 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:11, 02:17] ( 380 warnings 395 remarks ) +PASS -- TEST 'control_wam_debug_intel' [11:36, 09:16](2282 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 06:03] ( 4 warnings 415 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:43, 02:29](1476 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [03:25, 02:08](1732 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [03:24, 02:05](1697 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [03:22, 01:41](1064 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [03:22, 01:38](1045 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:22, 02:09](1648 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [09:25, 08:09](1731 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:19, 07:33](1720 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:49] ( 4 warnings 392 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:43, 01:55](1768 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:34, 00:49](1792 MB) +PASS -- TEST 'conus13km_decomp_intel' [03:36, 01:53](1806 MB) +PASS -- TEST 'conus13km_restart_intel' [03:34, 01:08](1539 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:11, 06:06] ( 4 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:29, 02:40](1796 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:14] ( 313 warnings 421 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:17, 03:43](1756 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:17, 03:22](1750 MB) +PASS -- TEST 'conus13km_debug_intel' [16:35, 15:03](1810 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:34, 15:01](1449 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [10:32, 08:20](1823 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [17:32, 15:18](1857 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:32, 14:47](1891 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:11, 02:21] ( 313 warnings 415 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:17, 03:30](1857 MB) + +PASS -- COMPILE 'hafsw_intel' [10:11, 08:49] ( 1 warnings 693 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [04:33, 02:46](1142 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [08:53, 03:57](1346 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:21, 02:24](1459 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [33:36, 31:33](1376 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [06:28, 03:49](803 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [08:33, 04:00](812 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [07:28, 02:08](537 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:55, 04:20](618 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:26, 02:17](743 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:28, 02:10](754 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:22, 00:46](527 MB) +PASS -- TEST 'gnv1_nested_intel' [05:47, 02:28](1737 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 08:00] ( 1 warnings 927 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [21:10, 16:58](1104 MB) + +PASS -- COMPILE 'hafs_all_intel' [09:12, 07:37] ( 1 warnings 635 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [07:32, 04:25](1323 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [07:33, 04:20](1279 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:53] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:16, 02:14](1945 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:17, 01:15](1881 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:15, 02:03](1197 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:15, 02:02](1184 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:15, 01:56](1194 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:15, 02:05](1943 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:12](1943 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:51](1199 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [07:55, 05:28](1828 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:50, 05:21](1366 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [17:14, 15:47](1930 MB) +FAILED: TEST TIMED OUT -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [, ]( MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:16, 03:22](4787 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:17] ( 2 warnings 562 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [06:16, 04:12](1851 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [13:11, 11:42] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:15, 02:02](1940 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:45] ( 126 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:25, 00:48](368 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:20, 00:34](619 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:21, 00:25](617 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:11, 12:56] ( 1 warnings 611 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:41, 02:38](2824 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:02] ( 1 warnings 499 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:36, 03:22](2858 MB) + +PASS -- COMPILE 'atml_intel' [08:11, 06:51] ( 9 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:36, 02:29](1890 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:30, 01:36](1307 MB) + +PASS -- COMPILE 'atml_debug_intel' [05:11, 03:27] ( 424 warnings 552 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:36, 03:42](1951 MB) + +PASS -- COMPILE 'atmw_intel' [09:11, 07:36] ( 1 warnings 518 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:33, 01:46](2684 MB) + +PASS -- COMPILE 'atmaero_intel' [10:11, 09:07] ( 1 warnings 413 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [05:41, 03:19](1991 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:31, 03:38](2396 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:31, 03:25](2411 MB) + +PASS -- COMPILE 'atmaq_intel' [08:11, 06:15] ( 1 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:38, 11:08](2877 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [15:34, 12:38](2877 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:23] ( 397 warnings 598 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [30:26, 27:35](2889 MB) + +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:50] ( 4 warnings 422 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [23:23, 21:29](1128 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [15:11, 13:11] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [12:44, 09:16](2053 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [05:11, 03:15] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [15:40, 13:22](2079 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intelllvm' [15:11, 13:32] +PASS -- TEST 'cpld_control_sfs_intelllvm' [12:19, 08:23](2379 MB) + +PASS -- COMPILE 's2swa_intelllvm' [14:11, 12:55] +PASS -- TEST 'cpld_control_p8_intelllvm' [09:55, 07:00](2473 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [07:11, 05:55] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [14:26, 12:45](1841 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [07:11, 05:44] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [14:28, 12:12](1888 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [15:11, 13:38] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [08:17, 06:27](1943 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [04:11, 02:23] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [06:16, 04:23](1844 MB) + +PASS -- COMPILE 'atm_gnu' [04:13, 02:53] +PASS -- TEST 'control_c48_gnu' [07:21, 05:54](1508 MB) +PASS -- TEST 'control_stochy_gnu' [03:17, 01:59](511 MB) +PASS -- TEST 'control_ras_gnu' [05:17, 03:11](514 MB) +PASS -- TEST 'control_p8_gnu' [04:38, 03:06](1459 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [04:35, 03:04](1468 MB) +PASS -- TEST 'control_flake_gnu' [05:20, 04:07](554 MB) + +PASS -- COMPILE 'rrfs_gnu' [04:11, 02:54] +PASS -- TEST 'rap_control_gnu' [05:24, 03:29](847 MB) +PASS -- TEST 'rap_decomp_gnu' [05:24, 03:27](848 MB) +PASS -- TEST 'rap_2threads_gnu' [04:27, 02:49](896 MB) +PASS -- TEST 'rap_restart_gnu' [03:26, 01:51](581 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [26:29, 24:47](842 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [05:27, 03:31](847 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [03:26, 01:58](581 MB) +PASS -- TEST 'hrrr_control_gnu' [05:24, 03:22](849 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [05:24, 03:22](834 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [04:26, 02:34](886 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [05:24, 03:21](850 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [03:20, 01:48](576 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [03:20, 01:45](664 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [08:28, 06:18](843 MB) + +PASS -- COMPILE 'csawmg_gnu' [04:11, 02:36] +PASS -- TEST 'control_csawmg_gnu' [07:27, 05:46](753 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [07:10, 05:22] +PASS -- TEST 'control_diag_debug_gnu' [03:26, 01:18](1281 MB) +PASS -- TEST 'regional_debug_gnu' [07:29, 05:37](772 MB) +PASS -- TEST 'rap_control_debug_gnu' [03:19, 01:48](853 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [03:19, 01:47](854 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [03:19, 01:49](860 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [03:18, 01:48](860 MB) +PASS -- TEST 'rap_diag_debug_gnu' [03:26, 02:01](940 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [04:18, 02:48](851 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [03:19, 01:58](853 MB) +PASS -- TEST 'control_ras_debug_gnu' [02:18, 01:06](500 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:18, 01:28](493 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:30, 01:17](1445 MB) +PASS -- TEST 'rap_flake_debug_gnu' [03:19, 01:47](854 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [03:20, 01:56](857 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [04:28, 02:58](866 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 01:26] +PASS -- TEST 'control_wam_debug_gnu' [06:37, 04:31](1304 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [04:10, 02:41] +PASS -- TEST 'control_csawmg_debug_gnu' [03:28, 01:50](736 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [04:10, 02:53] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [05:26, 03:16](706 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [05:25, 03:09](711 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [05:23, 02:29](732 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [05:22, 02:23](726 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [14:23, 12:19](704 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [03:25, 01:41](553 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [03:17, 01:48](557 MB) +PASS -- TEST 'conus13km_control_gnu' [05:48, 03:12](903 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:38, 01:11](906 MB) +PASS -- TEST 'conus13km_decomp_gnu' [05:41, 03:07](907 MB) +PASS -- TEST 'conus13km_restart_gnu' [03:40, 01:42](579 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [08:10, 06:41] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [05:28, 03:38](733 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [06:10, 05:04] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [03:20, 01:48](713 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [03:20, 01:43](718 MB) +PASS -- TEST 'conus13km_debug_gnu' [09:34, 07:21](921 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:36, 07:01](649 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [05:34, 04:04](922 MB) +PASS -- TEST 'conus13km_debug_decomp_gnu' [09:33, 07:20](926 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:34, 07:08](991 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [06:10, 05:07] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [03:20, 01:50](740 MB) + +PASS -- COMPILE 's2swa_gnu' [12:10, 10:50] +PASS -- TEST 'cpld_control_p8_gnu' [09:57, 07:42](1597 MB) + +PASS -- COMPILE 's2s_gnu' [13:10, 11:10] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [09:49, 07:12](1535 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [03:10, 01:59] +PASS -- TEST 'cpld_debug_p8_gnu' [06:51, 04:45](1595 MB) + +PASS -- COMPILE 's2sw_pdlib_gnu' [12:10, 10:55] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [10:42, 08:57](1551 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [03:10, 01:44] +PASS -- TEST 'cpld_debug_pdlib_p8_gnu' [08:40, 06:34](1573 MB) + +PASS -- COMPILE 'datm_cdeps_gnu' [12:11, 10:53] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [04:17, 02:28](1513 MB) SYNOPSIS: -Starting Date/Time: 20251210 19:32:05 -Ending Date/Time: 20251210 21:10:13 -Total Time: 01h:38m:52s +Starting Date/Time: 20251215 00:17:14 +Ending Date/Time: 20251215 01:53:37 +Total Time: 01h:37m:19s Compiles Completed: 67/67 Tests Completed: 275/276 Failed Tests: -* TEST control_p8_ugwpv1_tempo_aerosol_hail_intel: FAILED: RUN DID NOT COMPLETE --- LOG: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/reg-test/wm/ursa/2979/ufs-weather-model/tests/logs/log_ursa/run_control_p8_ugwpv1_tempo_aerosol_hail_intel.log +* TEST datm_cdeps_3072x1536_cfsr_intel: FAILED: TEST TIMED OUT +-- LOG: /scratch4/NAGAPE/epic/Jong.Kim/stmp/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1506286/datm_cdeps_3072x1536_cfsr_intel/err NOTES: A file 'test_changes.list' was generated with list of all failed tests. @@ -478,7 +478,7 @@ Result: FAILURE ====START OF URSA REGRESSION TESTING LOG==== UFSWM hash used in testing: -027200541a523ec033359dae21e002ead1482661 +00dc804db353e08b17d7a758e870bd1b1e95e4dd Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -492,11 +492,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -506,7 +506,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -517,21 +517,20 @@ 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: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251204 -COMPARISON DIRECTORY: /scratch3/NAGAPE/epic/Fernando.Andrade-maldonado/stmp/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3412568 +BASELINE DIRECTORY: /scratch4/NAGAPE/epic/role-epic/UFS-WM_RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /scratch4/NAGAPE/epic/Jong.Kim/stmp/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_2592591 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-n) - RUN SINGLE TEST: control_p8_ugwpv1_tempo_aerosol_hail * (-e) - USE ECFLOW -PASS -- COMPILE 'atm_dyn32_intel' [08:11, 07:03] ( 1 warnings 501 remarks ) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [04:41, 01:37](2410 MB) +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:59] ( 562 remarks ) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:19, 03:21](4783 MB) SYNOPSIS: -Starting Date/Time: 20251210 22:01:27 -Ending Date/Time: 20251210 22:15:37 -Total Time: 00h:14m:17s +Starting Date/Time: 20251215 02:18:07 +Ending Date/Time: 20251215 02:36:56 +Total Time: 00h:18m:52s Compiles Completed: 1/1 Tests Completed: 1/1 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index deeadc3d14..eac0471d23 100644 --- a/tests/logs/RegressionTests_wcoss2.log +++ b/tests/logs/RegressionTests_wcoss2.log @@ -1,7 +1,7 @@ ====START OF WCOSS2 REGRESSION TESTING LOG==== UFSWM hash used in testing: -332b4f927f511d45798dece9fd418e4b899f89c9 +339b0606b8f8267f995f8e0992f7d895c2586a75 Submodule hashes used in testing: 2c1cec7dd4d7a477abd2ae204db4a78295c24f16 AQM (v0.2.0-63-g2c1cec7) @@ -15,11 +15,11 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) 05a3f7ae291b59a2ab7611a042f2fc99be31dc61 LM4-driver (baseline_change_240904-7-g05a3f7a) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 9c8b26c2d870636f359f2ef62ef775639132b3ba MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10723-g9c8b26c2d) + 1f68f4185f73d3858bfb2a99f70dc48b9561f688 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10744-g1f68f4185) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 2c7b3bc2a8096f6232020c47507593058795102e NOAHMP-interface/noahmp (v3.7.1-471-g2c7b3bc) - afe8db070dac711c21fadfe5438aced01f460ac4 UFSATM (remotes/origin/bugfix/timestep_restarts) + b4d035bfdee784786cd19b50deab3e3e0a273f1c UFSATM (heads/develop) 3256121dc4972d5c78f43f1a16ea1cb118ec6daf UFSATM/ccpp/framework (2025-06-03-dev-12-g3256121) 7e9ddf0b6bb2ec6034049b05447e060115dd8de0 UFSATM/ccpp/physics (EP4-2052-g7e9ddf0b) c62efd27caa26f660edf24232f33f154e608b77a UFSATM/ccpp/physics/physics/MP/TEMPO/TEMPO (c62efd2) @@ -29,7 +29,7 @@ Submodule hashes used in testing: 8d41f98e66ea858c163a387aaa0c6179851a1466 UFSATM/upp (upp_v10.2.0-331-g8d41f98e) -179cae1dd84401cf25d250bd9102e66560a9d328 UFSATM/upp/sorc/libIFI.fd -3d35332fe66e3e63a285cc8d96facdf255a33481 UFSATM/upp/sorc/ncep_post.fd/post_gtg.fd - eba8ccfbd46dd3c491f81b14028f2dd2d1f3cd54 WW3 (remotes/origin/develop2devufswmplusfixwarnings) + b6db1fc588ad7055247128174245615b2c20c242 WW3 (6.07.1-513-gb6db1fc5) 3be9c444ace991b4235e4e978449cc3d3fd0d2d1 fire_behavior (v0.2.0-3-g3be9c44) ae192f119b8614b4476a1b04ba55f6fb93e2953d stochastic_physics (ufs-v2.0.0-298-gae192f1) @@ -40,257 +40,257 @@ 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-20251204 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_865119 +BASELINE DIRECTORY: /lfs/h2/emc/nems/noscrub/emc.nems/RT/NEMSfv3gfs/develop-20251211 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3288260 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [18:35, 16:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:36, 07:32](3342 MB) -PASS -- TEST 'cpld_control_gefs_intel' [35:14, 18:26](4093 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [26:09, 07:51](3907 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:35, 17:14] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:50, 13:41](1900 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:59, 14:28](1943 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:38, 06:42](1073 MB) -PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [12:01, 06:41](1930 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:32, 15:55](1876 MB) - -PASS -- COMPILE 's2s_32bit_sfs_intel' [16:32, 14:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:14, 12:13](2186 MB) -PASS -- TEST 'cpld_restart_sfs_intel' [15:22, 06:51](1356 MB) - -PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:19, 04:36] ( 334 warnings 1 remarks ) -PASS -- TEST 'cpld_debug_sfs_intel' [19:21, 13:47](2234 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 04:54] ( 334 warnings 1784 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [25:22, 20:27](1933 MB) - -PASS -- COMPILE 's2swa_intel' [18:35, 16:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:15, 09:05](3373 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:36, 08:55](3373 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:47, 05:20](3258 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [13:23, 09:11](3401 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:33, 05:29](3285 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [11:54, 08:27](3600 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:55, 08:47](3364 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:27, 07:36](3322 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [13:36, 09:06](3375 MB) - -PASS -- COMPILE 's2swal_intel' [18:34, 16:49] ( 1 warnings 2 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [13:30, 09:25](3326 MB) - -PASS -- COMPILE 's2sw_intel' [17:33, 15:28] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:51, 05:20](1918 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:16, 07:50](1971 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [16:32, 14:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:13, 05:41](1970 MB) - -PASS -- COMPILE 's2swa_faster_intel' [18:34, 17:04] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:43, 09:05](3371 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [18:37, 16:21] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:10, 13:43](1911 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:22, 07:03](1104 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:26, 15:52](1891 MB) -PASS -- TEST 'cpld_control_c48_5deg_intel' [11:56, 06:31](2882 MB) -PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [07:41, 02:39](2884 MB) -PASS -- TEST 'cpld_restart_c48_5deg_intel' [04:55, 01:42](2298 MB) -PASS -- TEST 'cpld_control_c24_5deg_intel' [06:07, 01:49](2111 MB) -PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [06:08, 01:23](2112 MB) -PASS -- TEST 'cpld_restart_c24_5deg_intel' [04:07, 01:00](1452 MB) -PASS -- TEST 'cpld_control_c24_9deg_intel' [06:07, 01:50](2109 MB) -PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [06:07, 01:26](2110 MB) -PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:08, 01:11](1453 MB) -PASS -- TEST 'cpld_control_c12_9deg_intel' [06:07, 01:35](2040 MB) -PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [05:05, 01:17](2039 MB) -PASS -- TEST 'cpld_restart_c12_9deg_intel' [03:07, 00:59](1396 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:24, 04:42] ( 334 warnings 1784 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:25, 24:19](1954 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:26, 10:48] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [07:43, 04:06](686 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:34](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:47, 02:45](1582 MB) -PASS -- TEST 'control_latlon_intel' [04:31, 02:43](1584 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:42, 02:45](1577 MB) -PASS -- TEST 'control_c48_intel' [09:01, 06:27](1595 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:58, 05:45](725 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [08:53, 06:34](1594 MB) -PASS -- TEST 'control_c192_intel' [10:17, 07:17](1706 MB) -PASS -- TEST 'control_c384_intel' [13:32, 08:54](2008 MB) -PASS -- TEST 'control_c384gdas_intel' [17:47, 10:09](1137 MB) -PASS -- TEST 'control_stochy_intel' [04:41, 01:56](642 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:49, 01:18](406 MB) -PASS -- TEST 'control_lndp_intel' [04:33, 01:53](640 MB) -PASS -- TEST 'control_iovr4_intel' [05:43, 02:51](637 MB) -PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [06:03, 03:23](917 MB) -PASS -- TEST 'control_iovr5_intel' [04:51, 02:52](635 MB) -PASS -- TEST 'control_p8_intel' [07:38, 03:33](1857 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:49, 03:36](1860 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:33, 03:23](1866 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [07:28, 03:28](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [08:24, 03:22](1882 MB) -PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [06:34, 02:44](2435 MB) -PASS -- TEST 'control_restart_p8_intel' [06:41, 02:06](1017 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:42, 03:26](1856 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:44, 02:06](1016 MB) -PASS -- TEST 'control_decomp_p8_intel' [07:03, 03:23](1850 MB) -PASS -- TEST 'control_2threads_p8_intel' [06:48, 03:13](1926 MB) -PASS -- TEST 'control_p8_lndp_intel' [08:12, 05:20](1863 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:19, 04:26](1904 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:12, 03:40](1869 MB) -PASS -- TEST 'merra2_thompson_intel' [08:35, 03:59](1861 MB) -PASS -- TEST 'merra2_hf_thompson_intel' [09:47, 05:41](1864 MB) -PASS -- TEST 'regional_control_intel' [08:01, 05:33](875 MB) -PASS -- TEST 'regional_restart_intel' [06:19, 03:22](879 MB) -PASS -- TEST 'regional_decomp_intel' [07:56, 05:55](877 MB) -PASS -- TEST 'regional_2threads_intel' [06:00, 03:44](993 MB) -PASS -- TEST 'regional_noquilt_intel' [08:05, 05:28](1176 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:11, 05:28](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:00, 05:31](875 MB) -PASS -- TEST 'regional_wofs_intel' [10:04, 07:17](1603 MB) - -PASS -- COMPILE 'atm_dyn32_rad32_intel' [11:27, 10:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [08:44, 04:15](1885 MB) - -PASS -- COMPILE 'rrfs_intel' [10:23, 09:06] ( 4 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [07:37, 04:10](1004 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:28, 04:31](1190 MB) -PASS -- TEST 'rap_decomp_intel' [07:34, 04:06](1021 MB) -PASS -- TEST 'rap_2threads_intel' [06:59, 03:42](1096 MB) -PASS -- TEST 'rap_restart_intel' [06:35, 02:19](774 MB) -PASS -- TEST 'rap_sfcdiff_intel' [07:46, 04:10](1015 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [07:42, 04:15](1017 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [07:41, 02:24](769 MB) -PASS -- TEST 'hrrr_control_intel' [08:31, 04:09](1008 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:37, 04:09](1011 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [08:47, 03:52](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [05:43, 02:22](765 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:54, 07:12](1004 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:03, 09:00](1963 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:55, 08:36](1958 MB) - -PASS -- COMPILE 'csawmg_intel' [10:25, 08:49] ( 1 warnings ) -PASS -- TEST 'control_csawmg_intel' [10:33, 07:15](960 MB) -PASS -- TEST 'control_ras_intel' [05:37, 03:37](668 MB) - -PASS -- COMPILE 'wam_intel' [09:24, 08:07] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:21, 12:51](1659 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [10:25, 08:26] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:20, 03:31](1855 MB) -PASS -- TEST 'regional_control_faster_intel' [08:16, 05:36](870 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [07:22, 05:17] ( 415 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [06:54, 02:46](1611 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:54, 02:46](1615 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:41, 03:37](817 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:39, 03:22](821 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:10, 05:07](1110 MB) -PASS -- TEST 'control_ras_debug_intel' [05:48, 03:22](830 MB) -PASS -- TEST 'control_diag_debug_intel' [06:00, 03:23](1674 MB) -PASS -- TEST 'control_debug_p8_intel' [07:18, 03:21](1897 MB) -PASS -- TEST 'regional_debug_intel' [23:32, 18:51](932 MB) -PASS -- TEST 'rap_control_debug_intel' [09:49, 05:51](1195 MB) -PASS -- TEST 'hrrr_control_debug_intel' [09:49, 05:38](1187 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [09:42, 05:43](1196 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:45, 05:48](1197 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:52, 05:51](1195 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:47, 06:05](1279 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:39, 05:48](1193 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:03, 05:49](1195 MB) -PASS -- TEST 'rap_lndp_debug_intel' [08:46, 05:51](1204 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:42, 05:53](1195 MB) -PASS -- TEST 'rap_noah_debug_intel' [09:04, 05:46](1196 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:02, 05:49](1193 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:56, 09:01](1194 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [09:44, 05:46](1198 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:41, 05:41](1195 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [15:10, 09:48](1194 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:20, 03:42] ( 377 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:30, 14:31](1702 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:25, 08:35] ( 4 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:38, 04:05](1044 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:29, 03:32](889 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:27, 03:18](887 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:56, 03:09](935 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:07, 02:49](942 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:12, 03:29](890 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:25, 02:02](738 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:39, 01:52](724 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:25, 08:17] ( 4 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [06:42, 03:16](1017 MB) -PASS -- TEST 'conus13km_2threads_intel' [04:20, 01:27](1133 MB) -PASS -- TEST 'conus13km_decomp_intel' [06:24, 03:16](1023 MB) -PASS -- TEST 'conus13km_restart_intel' [04:15, 02:00](684 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:26, 08:35] ( 4 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:14, 04:13](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [07:22, 03:51] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:40, 05:42](1070 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:39, 05:37](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [26:43, 24:22](1096 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [26:35, 24:29](806 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [16:25, 13:37](1192 MB) -PASS -- TEST 'conus13km_debug_decomp_intel' [27:34, 24:51](1103 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [26:43, 24:20](1165 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:26, 03:45] ( 310 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:43, 05:34](1104 MB) - -PASS -- COMPILE 'hafsw_intel' [15:30, 12:36] ( 1 warnings 1 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:09, 04:57](695 MB) -PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [09:05, 05:45](911 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:42, 03:41](1042 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [14:20, 11:57](796 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:11, 05:49](469 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:18, 06:56](507 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:10, 03:10](376 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:17, 08:15](426 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:09, 04:01](495 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:15, 03:47](495 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:35, 01:40](408 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [12:41, 10:37] ( 1 warnings ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:35, 05:35](781 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:28, 09:28] ( 1 warnings ) -PASS -- TEST 'hafs_regional_docn_intel' [10:10, 07:08](746 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:11, 07:07](723 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:39, 14:17] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:57, 04:24](1907 MB) - -PASS -- COMPILE 'atml_intel' [12:27, 10:13] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:19, 04:36] ( 420 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [17:34, 15:35] ( 1 warnings 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:11, 05:02](3233 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:48, 05:27](3200 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:46, 05:35](3207 MB) - -PASS -- COMPILE 'atmaq_intel' [10:29, 08:53] ( 1 warnings ) -PASS -- TEST 'regional_atmaq_intel' [21:48, 15:56](2383 MB) -PASS -- TEST 'regional_atmaq_canopy_intel' [23:50, 18:47](2429 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:53] ( 394 warnings ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:56, 40:52](1857 MB) +PASS -- COMPILE 's2swa_32bit_intel' [18:34, 16:37] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [17:57, 08:44](3340 MB) +PASS -- TEST 'cpld_control_gefs_intel' [08:36, 21:08](4107 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [26:23, 08:26](3910 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [18:34, 16:26] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [27:36, 17:09](1899 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [29:45, 18:44](1943 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [20:10, 09:20](1069 MB) +PASS -- TEST 'cpld_restart_gfsv17_iau_intel' [26:18, 08:13](1931 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:58, 19:13](1877 MB) + +PASS -- COMPILE 's2s_32bit_sfs_intel' [16:32, 14:50] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [30:51, 15:22](2204 MB) +PASS -- TEST 'cpld_restart_sfs_intel' [27:06, 12:02](1359 MB) + +PASS -- COMPILE 's2s_32bit_sfs_debug_intel' [06:20, 04:44] ( 334 warnings 1 remarks ) +PASS -- TEST 'cpld_debug_sfs_intel' [20:08, 13:28](2244 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [07:22, 05:21] ( 334 warnings 1784 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [27:06, 20:48](1940 MB) + +PASS -- COMPILE 's2swa_intel' [18:34, 17:16] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [21:54, 11:38](3377 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [19:16, 09:50](3377 MB) +PASS -- TEST 'cpld_restart_p8_intel' [21:55, 10:49](3258 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [18:59, 09:51](3406 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [21:41, 11:01](3286 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:13, 09:35](3606 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [17:53, 09:53](3368 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [17:13, 08:46](3328 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [19:33, 09:56](3379 MB) + +PASS -- COMPILE 's2swal_intel' [18:34, 16:52] ( 1 warnings 2 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [19:49, 11:21](3331 MB) + +PASS -- COMPILE 's2sw_intel' [17:33, 16:00] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [14:24, 05:46](1919 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [18:53, 09:17](1971 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [16:32, 14:53] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [13:32, 05:57](1971 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:45] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [18:38, 09:45](3371 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [17:33, 15:47] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [25:22, 18:45](1921 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:11, 11:08](1104 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [28:21, 22:23](1889 MB) +PASS -- TEST 'cpld_control_c48_5deg_intel' [10:33, 06:53](2878 MB) +PASS -- TEST 'cpld_warmstart_c48_5deg_intel' [06:43, 02:52](2884 MB) +PASS -- TEST 'cpld_restart_c48_5deg_intel' [09:48, 04:00](2303 MB) +PASS -- TEST 'cpld_control_c24_5deg_intel' [04:13, 01:54](2112 MB) +PASS -- TEST 'cpld_warmstart_c24_5deg_intel' [04:17, 01:30](2112 MB) +PASS -- TEST 'cpld_restart_c24_5deg_intel' [05:37, 01:37](1453 MB) +PASS -- TEST 'cpld_control_c24_9deg_intel' [05:33, 01:59](2107 MB) +PASS -- TEST 'cpld_warmstart_c24_9deg_intel' [05:46, 01:36](2109 MB) +PASS -- TEST 'cpld_restart_c24_9deg_intel' [04:21, 01:13](1453 MB) +PASS -- TEST 'cpld_control_c12_9deg_intel' [04:13, 01:34](2039 MB) +PASS -- TEST 'cpld_warmstart_c12_9deg_intel' [04:43, 01:27](2038 MB) +PASS -- TEST 'cpld_restart_c12_9deg_intel' [05:08, 01:27](1396 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:52] ( 334 warnings 1784 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:16, 25:33](1959 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:26, 10:52] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [07:48, 04:41](683 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [09:32, 03:56](1574 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [09:52, 05:05](1584 MB) +PASS -- TEST 'control_latlon_intel' [06:54, 03:31](1583 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [08:55, 04:30](1584 MB) +PASS -- TEST 'control_c48_intel' [14:47, 08:45](1595 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [13:08, 07:38](725 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [14:29, 08:16](1595 MB) +PASS -- TEST 'control_c192_intel' [17:50, 11:50](1706 MB) +PASS -- TEST 'control_c384_intel' [29:37, 18:25](1999 MB) +PASS -- TEST 'control_c384gdas_intel' [38:44, 19:14](1142 MB) +PASS -- TEST 'control_stochy_intel' [09:43, 04:48](640 MB) +PASS -- TEST 'control_stochy_restart_intel' [07:24, 02:30](405 MB) +PASS -- TEST 'control_lndp_intel' [08:46, 03:34](638 MB) +PASS -- TEST 'control_iovr4_intel' [12:56, 06:43](635 MB) +PASS -- TEST 'control_iovr4_gfdlmpv3_intel' [15:46, 07:06](917 MB) +PASS -- TEST 'control_iovr5_intel' [12:45, 06:33](636 MB) +PASS -- TEST 'control_p8_intel' [16:54, 05:45](1857 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [18:22, 07:44](1860 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [17:02, 07:29](1865 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_intel' [17:45, 07:57](1882 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_intel' [20:39, 09:15](1881 MB) +PASS -- TEST 'control_p8_ugwpv1_tempo_aerosol_hail_intel' [16:24, 06:48](2435 MB) +PASS -- TEST 'control_restart_p8_intel' [10:47, 03:47](1016 MB) +PASS -- TEST 'control_noqr_p8_intel' [15:16, 06:45](1857 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [10:46, 05:40](1019 MB) +PASS -- TEST 'control_decomp_p8_intel' [14:46, 06:10](1850 MB) +PASS -- TEST 'control_2threads_p8_intel' [14:13, 06:29](1928 MB) +PASS -- TEST 'control_p8_lndp_intel' [16:34, 09:38](1869 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [16:38, 07:55](1914 MB) +PASS -- TEST 'control_p8_mynn_intel' [14:50, 07:21](1874 MB) +PASS -- TEST 'merra2_thompson_intel' [17:52, 07:23](1859 MB) +PASS -- TEST 'merra2_hf_thompson_intel' [18:27, 08:50](1867 MB) +PASS -- TEST 'regional_control_intel' [14:25, 08:50](876 MB) +PASS -- TEST 'regional_restart_intel' [10:51, 06:21](881 MB) +PASS -- TEST 'regional_decomp_intel' [14:10, 09:02](878 MB) +PASS -- TEST 'regional_2threads_intel' [12:37, 06:48](1003 MB) +PASS -- TEST 'regional_noquilt_intel' [14:00, 09:11](1182 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [13:59, 09:06](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [12:50, 08:57](875 MB) +PASS -- TEST 'regional_wofs_intel' [13:50, 10:01](1608 MB) + +PASS -- COMPILE 'atm_dyn32_rad32_intel' [12:28, 10:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_rrtmgp_rad32_intel' [13:42, 06:46](1886 MB) + +PASS -- COMPILE 'rrfs_intel' [11:26, 09:06] ( 4 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [12:42, 06:39](1013 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [13:44, 07:17](1187 MB) +PASS -- TEST 'rap_decomp_intel' [13:03, 08:05](1021 MB) +PASS -- TEST 'rap_2threads_intel' [11:11, 06:56](1083 MB) +PASS -- TEST 'rap_restart_intel' [12:05, 04:56](769 MB) +PASS -- TEST 'rap_sfcdiff_intel' [12:29, 06:55](1015 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [14:25, 07:44](1018 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [12:31, 04:05](774 MB) +PASS -- TEST 'hrrr_control_intel' [13:56, 06:34](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [12:51, 06:57](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:31, 05:22](1074 MB) +PASS -- TEST 'hrrr_control_restart_intel' [13:08, 04:54](762 MB) +PASS -- TEST 'rrfs_v1beta_intel' [16:44, 10:36](1008 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [18:27, 13:41](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [18:42, 13:48](1954 MB) + +PASS -- COMPILE 'csawmg_intel' [15:31, 09:48] ( 1 warnings ) +PASS -- TEST 'control_csawmg_intel' [14:57, 09:39](960 MB) +PASS -- TEST 'control_ras_intel' [11:53, 06:32](671 MB) + +PASS -- COMPILE 'wam_intel' [14:31, 08:32] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_wam_intel' [26:38, 19:52](1660 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [14:30, 08:31] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [15:04, 07:16](1850 MB) +PASS -- TEST 'regional_control_faster_intel' [12:56, 08:38](871 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [11:27, 05:18] ( 415 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [09:19, 04:42](1609 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [08:03, 04:23](1621 MB) +PASS -- TEST 'control_stochy_debug_intel' [08:50, 04:45](823 MB) +PASS -- TEST 'control_lndp_debug_intel' [08:46, 04:40](822 MB) +PASS -- TEST 'control_csawmg_debug_intel' [13:17, 07:31](1110 MB) +PASS -- TEST 'control_ras_debug_intel' [08:55, 04:17](829 MB) +PASS -- TEST 'control_diag_debug_intel' [12:20, 05:46](1676 MB) +PASS -- TEST 'control_debug_p8_intel' [10:59, 04:34](1898 MB) +PASS -- TEST 'regional_debug_intel' [26:51, 20:13](935 MB) +PASS -- TEST 'rap_control_debug_intel' [11:57, 06:49](1195 MB) +PASS -- TEST 'hrrr_control_debug_intel' [12:23, 07:36](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [13:34, 07:24](1197 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [14:18, 06:56](1195 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [15:28, 07:36](1196 MB) +PASS -- TEST 'rap_diag_debug_intel' [20:33, 06:33](1278 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [18:10, 06:27](1195 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [19:31, 07:13](1195 MB) +PASS -- TEST 'rap_lndp_debug_intel' [20:05, 07:18](1204 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [19:47, 07:15](1195 MB) +PASS -- TEST 'rap_noah_debug_intel' [20:31, 08:08](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [20:22, 08:00](1189 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [24:07, 11:17](1192 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [20:41, 07:28](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [22:21, 07:23](1194 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [27:01, 10:43](1190 MB) + +PASS -- COMPILE 'wam_debug_intel' [09:24, 03:50] ( 377 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [31:24, 16:21](1687 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [14:31, 08:54] ( 4 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [22:36, 07:46](1034 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [22:20, 06:04](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [21:10, 06:48](881 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [21:11, 06:01](936 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [21:05, 05:53](929 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [20:23, 06:35](890 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:38, 02:09](731 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [09:55, 01:54](726 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:37, 08:24] ( 4 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [19:48, 05:07](1017 MB) +PASS -- TEST 'conus13km_2threads_intel' [16:58, 02:52](1145 MB) +PASS -- TEST 'conus13km_decomp_intel' [18:03, 05:10](1023 MB) +PASS -- TEST 'conus13km_restart_intel' [09:40, 02:00](684 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [10:36, 08:45] ( 4 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [18:38, 06:06](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:27, 05:20] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [15:54, 06:16](1070 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [17:26, 06:44](1070 MB) +PASS -- TEST 'conus13km_debug_intel' [37:22, 25:00](1097 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [36:23, 24:33](801 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [23:41, 13:48](1193 MB) +PASS -- TEST 'conus13km_debug_decomp_intel' [37:35, 24:46](1084 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [35:42, 24:17](1165 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:29, 06:05] ( 310 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [16:18, 05:38](1107 MB) + +PASS -- COMPILE 'hafsw_intel' [16:44, 13:25] ( 1 warnings 1 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [17:03, 04:56](695 MB) +PASS -- TEST 'hafs_regional_atm_gfdlmpv3_intel' [19:46, 05:57](907 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [15:35, 03:45](1049 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [23:45, 11:53](789 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [16:55, 05:46](464 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [19:21, 06:59](471 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [14:26, 03:10](377 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [19:03, 08:23](428 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [13:37, 04:06](493 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [13:22, 03:51](497 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:55, 01:42](409 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:34, 11:41] ( 1 warnings ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:06, 05:40](775 MB) + +PASS -- COMPILE 'hafs_all_intel' [16:05, 11:18] ( 1 warnings ) +PASS -- TEST 'hafs_regional_docn_intel' [15:43, 07:07](748 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:29, 07:13](722 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [20:46, 16:18] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [14:29, 04:20](1908 MB) + +PASS -- COMPILE 'atml_intel' [18:36, 13:47] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [13:38, 08:38] ( 420 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [19:48, 16:23] ( 1 warnings 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [15:27, 05:19](3233 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [14:55, 05:32](3200 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [14:58, 05:48](3195 MB) + +PASS -- COMPILE 'atmaq_intel' [16:43, 13:37] ( 1 warnings ) +PASS -- TEST 'regional_atmaq_intel' [25:51, 16:50](2379 MB) +PASS -- TEST 'regional_atmaq_canopy_intel' [26:53, 19:35](2436 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [10:31, 06:30] ( 394 warnings ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:44, 41:16](1957 MB) SYNOPSIS: -Starting Date/Time: 20251211 14:45:05 -Ending Date/Time: 20251211 16:42:12 -Total Time: 01h:58m:21s +Starting Date/Time: 20251212 14:33:19 +Ending Date/Time: 20251212 17:13:11 +Total Time: 02h:41m:21s Compiles Completed: 34/34 Tests Completed: 172/172 diff --git a/tests/parm/diag_table/diag_table_cpld.IN b/tests/parm/diag_table/diag_table_cpld.IN index 002b47673e..8849f20b9d 100644 --- a/tests/parm/diag_table/diag_table_cpld.IN +++ b/tests/parm/diag_table/diag_table_cpld.IN @@ -4,65 +4,65 @@ "fv3_history", 0, "hours", 1, "hours", "time" "fv3_history2d", 0, "hours", 1, "hours", "time" ###################### -"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" -"@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" ############################################## # static fields - "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 # ocean output TSUV and others - "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # save daily SST - "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .false., "none", 2 - "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy", "all", .true., "none", 2 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # Z-Space Fields Provided for CMIP6 (CMOR Names): #=============================================== - "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # forcing - "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # ### # FV3 variabls needed for NGGPS evaluation diff --git a/tests/parm/diag_table/diag_table_gefsv13.IN b/tests/parm/diag_table/diag_table_gefsv13.IN index 3b255be4a5..5b24fe2d9c 100644 --- a/tests/parm/diag_table/diag_table_gefsv13.IN +++ b/tests/parm/diag_table/diag_table_gefsv13.IN @@ -4,80 +4,80 @@ "fv3_history", 0, "hours", 1, "hours", "time" "fv3_history2d", 0, "hours", 1, "hours", "time" ###################### -"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "1901 1 1 0 0 0" -"@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" ############## # Ocean fields ############## # static fields -"ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -"ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 +"ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 # ocean output TSUV and others -"ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 +"ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # Z-Space Fields Provided for CMIP6 (CMOR Names): -"ocean_model_z", "uo", "uo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "vo", "vo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "so", "so", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "temp", "temp", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 +"ocean_model_z", "uo", "uo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "vo", "vo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "so", "so", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "temp", "temp", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # forcing -"ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -"ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 +"ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +"ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # Daily fields -"ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .false., "none", 2 -"ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 -"ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy", "all", .true., "none", 2 +"ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +"ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn_daily%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 ################### # Atmosphere fields diff --git a/tests/parm/diag_table/diag_table_hafs_template.IN b/tests/parm/diag_table/diag_table_hafs_template.IN index d3ad4afbb5..f4b2a36af9 100644 --- a/tests/parm/diag_table/diag_table_hafs_template.IN +++ b/tests/parm/diag_table/diag_table_hafs_template.IN @@ -14,62 +14,62 @@ ufs.hafs # ###################### -"ocn%4yr%2mo%2dy%2hr", 3, "hours", 1, "hours", "time", 3, "hours" -#"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" +"ocn%4yr%2mo%2dy%2hr%2mi", 3, "hours", 1, "hours", "time", 3, "hours" +#"SST%4yr%2mo%2dy%2hr%2mi", 1, "days", 1, "days", "time", 1, "days", "1901 1 1 0 0 0" ############################################## # static fields - "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -#"ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -#"ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +#"ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +#"ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 # ocean output TSUV and others - "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 -#"ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 -#"ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 +#"ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 +#"ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 # save daily SST -#"ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 -#"ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 -#"ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 +#"ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +#"ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +#"ocean_model", "SST", "sst", "SST%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # Z-Space Fields Provided for CMIP6 (CMOR Names): #=============================================== - "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 # forcing - "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 -#"ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 - "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.false.,"none",2 + "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 +#"ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr%2mi","all",.false.,"none",2 #======================= # ATMOSPHERE DIAGNOSTICS #======================= diff --git a/tests/parm/diag_table/diag_table_sfs.IN b/tests/parm/diag_table/diag_table_sfs.IN index 609c2effdc..dca5a3e494 100644 --- a/tests/parm/diag_table/diag_table_sfs.IN +++ b/tests/parm/diag_table/diag_table_sfs.IN @@ -4,7 +4,7 @@ "fv3_history", 0, "hours", 1, "hours", "time" "fv3_history2d", 0, "hours", 1, "hours", "time" ###################### -"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr" , @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi" , @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" "@[MOM6_OUTPUT_DIR]/ocn_scalar%4yr%2mo%2dy", @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" ############################################## @@ -12,55 +12,55 @@ # Ocean fields ############## # static fields - "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 # ocean output TSUV and others - "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "tob", "tob", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # Z-Space Fields Provided for CMIP6 (CMOR Names): -"ocean_model_z", "uo", "uo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "vo", "vo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "so", "so", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 -"ocean_model_z", "temp", "temp", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr", "all", .true., "none", 2 +"ocean_model_z", "uo", "uo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "vo", "vo", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "so", "so", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 +"ocean_model_z", "temp", "temp", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # forcing - "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # scalar fields "ocean_model", "masso", "masso", "@[MOM6_OUTPUT_DIR]/ocn_scalar%4yr%2mo%2dy", "all", .true., "none",2 # global mean masscello diff --git a/tests/parm/diag_table/diag_table_template.IN b/tests/parm/diag_table/diag_table_template.IN index 2797dcfd12..18f99231b5 100644 --- a/tests/parm/diag_table/diag_table_template.IN +++ b/tests/parm/diag_table/diag_table_template.IN @@ -4,64 +4,64 @@ "fv3_history", 0, "hours", 1, "hours", "time" "fv3_history2d", 0, "hours", 1, "hours", "time" ###################### -"ocn%4yr%2mo%2dy%2hr", 6, "hours", 1, "hours", "time", 6, "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" -"SST%4yr%2mo%2dy", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", @[MOM6_OUTPUT_FH], "hours", 1, "hours", "time", @[MOM6_OUTPUT_FH], "hours", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" +"@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", 1, "days", 1, "days", "time", 1, "days", "@[SYEAR] @[SMONTH] @[SDAY] @[CHOUR] 0 0" ############################################## # static fields - "ocean_model", "geolon", "geolon", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_c", "geolon_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_c", "geolat_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_u", "geolon_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_u", "geolat_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolon_v", "geolon_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "geolat_v", "geolat_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "depth_ocean", "depth_ocean", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 -# "ocean_model", "wet", "wet", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_c", "wet_c", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_u", "wet_u", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "wet_v", "wet_v", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "sin_rot", "sin_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 - "ocean_model", "cos_rot", "cos_rot", "ocn%4yr%2mo%2dy%2hr", "all", .false., "none", 2 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_c", "geolon_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_c", "geolat_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_u", "geolon_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_u", "geolat_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolon_v", "geolon_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat_v", "geolat_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "depth_ocean", "depth_ocean", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 +# "ocean_model", "wet", "wet", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_c", "wet_c", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_u", "wet_u", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "wet_v", "wet_v", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "sin_rot", "sin_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "cos_rot", "cos_rot", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 # ocean output TSUV and others - "ocean_model", "SSH", "SSH", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SST", "SST", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSS", "SSS", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "speed", "speed", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSU", "SSU", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SSV", "SSV", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "frazil", "frazil", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "ePBL_h_ML", "ePBL", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_003", "MLD_003", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "MLD_0125", "MLD_0125", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "SSH", "SSH", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SST", "SST", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSS", "SSS", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "speed", "speed", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSU", "SSU", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SSV", "SSV", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "frazil", "frazil", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "ePBL_h_ML", "ePBL", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_003", "MLD_003", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "MLD_0125", "MLD_0125", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # save daily SST - "ocean_model", "geolon", "geolon", "SST%4yr%2mo%2dy", "all", .false., "none", 2 - "ocean_model", "geolat", "geolat", "SST%4yr%2mo%2dy", "all", .false., "none", 2 - "ocean_model", "SST", "sst", "SST%4yr%2mo%2dy", "all", .true., "none", 2 + "ocean_model", "geolon", "geolon", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "geolat", "geolat", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .false., "none", 2 + "ocean_model", "SST", "sst", "@[MOM6_OUTPUT_DIR]/SST%4yr%2mo%2dy%2hr%2mi", "all", .true., "none", 2 # Z-Space Fields Provided for CMIP6 (CMOR Names): #=============================================== - "ocean_model_z","uo","uo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","vo","vo" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","so","so" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model_z","temp","temp" ,"ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model_z","uo","uo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","vo","vo" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","so","so" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model_z","temp","temp" ,"@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # forcing - "ocean_model", "taux", "taux", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "tauy", "tauy", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "latent", "latent", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "sensible", "sensible", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "SW", "SW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LW", "LW", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "evap", "evap", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lprec", "lprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "lrunoff", "lrunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 -# "ocean_model", "frunoff", "frunoff", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "fprec", "fprec", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "LwLatSens", "LwLatSens", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 - "ocean_model", "Heat_PmE", "Heat_PmE", "ocn%4yr%2mo%2dy%2hr","all",.true.,"none",2 + "ocean_model", "taux", "taux", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "tauy", "tauy", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "latent", "latent", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "sensible", "sensible", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "SW", "SW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LW", "LW", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "evap", "evap", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lprec", "lprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "lrunoff", "lrunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 +# "ocean_model", "frunoff", "frunoff", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "fprec", "fprec", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "LwLatSens", "LwLatSens", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 + "ocean_model", "Heat_PmE", "Heat_PmE", "@[MOM6_OUTPUT_DIR]/ocn%4yr%2mo%2dy%2hr%2mi","all",.true.,"none",2 # ### # FV3 variabls needed for NGGPS evaluation diff --git a/tests/parm/ufs.configure.datm_cdeps.IN b/tests/parm/ufs.configure.datm_cdeps.IN index d451370ec2..caa324d96c 100644 --- a/tests/parm/ufs.configure.datm_cdeps.IN +++ b/tests/parm/ufs.configure.datm_cdeps.IN @@ -45,6 +45,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # 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 85ffdf942a..fc2490acaa 100644 --- a/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN +++ b/tests/parm/ufs.configure.hafs_atm_ocn_wav_mom6.IN @@ -67,6 +67,9 @@ OCN_attributes:: set_missing_stks_to_zero = true eps_imesh = 2.5e-1 mesh_ocn = @[MESH_OCN] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # WAV # diff --git a/tests/parm/ufs.configure.s2s.IN b/tests/parm/ufs.configure.s2s.IN index ba1950a9e7..b812a6fa8e 100644 --- a/tests/parm/ufs.configure.s2s.IN +++ b/tests/parm/ufs.configure.s2s.IN @@ -41,6 +41,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2s_aoflux.IN b/tests/parm/ufs.configure.s2s_aoflux.IN index bb96b16d12..461553191d 100644 --- a/tests/parm/ufs.configure.s2s_aoflux.IN +++ b/tests/parm/ufs.configure.s2s_aoflux.IN @@ -41,6 +41,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2sa.IN b/tests/parm/ufs.configure.s2sa.IN index 6c3317e1d3..1457be8cae 100644 --- a/tests/parm/ufs.configure.s2sa.IN +++ b/tests/parm/ufs.configure.s2sa.IN @@ -49,6 +49,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2sw.IN b/tests/parm/ufs.configure.s2sw.IN index f8551e47e1..681cd7332f 100644 --- a/tests/parm/ufs.configure.s2sw.IN +++ b/tests/parm/ufs.configure.s2sw.IN @@ -41,6 +41,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2sw_fast.IN b/tests/parm/ufs.configure.s2sw_fast.IN index 4954230d7c..24ab9f27d0 100644 --- a/tests/parm/ufs.configure.s2sw_fast.IN +++ b/tests/parm/ufs.configure.s2sw_fast.IN @@ -41,6 +41,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2swa.IN b/tests/parm/ufs.configure.s2swa.IN index 25f9dbf0d0..0bebf538df 100644 --- a/tests/parm/ufs.configure.s2swa.IN +++ b/tests/parm/ufs.configure.s2swa.IN @@ -49,6 +49,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2swa_fast.IN b/tests/parm/ufs.configure.s2swa_fast.IN index e25094da79..2c322016e3 100644 --- a/tests/parm/ufs.configure.s2swa_fast.IN +++ b/tests/parm/ufs.configure.s2swa_fast.IN @@ -49,6 +49,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/parm/ufs.configure.s2swal_fast.IN b/tests/parm/ufs.configure.s2swal_fast.IN index c7eda58a30..cf10afc9b0 100644 --- a/tests/parm/ufs.configure.s2swal_fast.IN +++ b/tests/parm/ufs.configure.s2swal_fast.IN @@ -48,6 +48,9 @@ OCN_attributes:: mesh_ocn = @[MESH_OCN] use_coldstart = @[use_coldstart] use_mommesh = @[use_mommesh] + mom6_output_dir = @[MOM6_OUTPUT_DIR] + mom6_output_fh = @[MOM6_OUTPUT_FH] + mom6_restart_dir = @[MOM6_RESTART_DIR] :: # ICE # diff --git a/tests/test_changes.list b/tests/test_changes.list index e69de29bb2..e254578268 100644 --- a/tests/test_changes.list +++ b/tests/test_changes.list @@ -0,0 +1,2 @@ +cpld_control_gfsv17_iau intel +cpld_restart_gfsv17_iau intel diff --git a/tests/tests/control_p8_ugwpv1_tempo_aerosol_hail b/tests/tests/control_p8_ugwpv1_tempo_aerosol_hail index 3613c91b44..b96a70ad15 100644 --- a/tests/tests/control_p8_ugwpv1_tempo_aerosol_hail +++ b/tests/tests/control_p8_ugwpv1_tempo_aerosol_hail @@ -144,7 +144,7 @@ export N_SPLIT=4 export SATMEDMF=.true. -if [[ $MACHINE_ID = gaeac6 ]] || [[ $MACHINE_ID = ursa ]]; then +if [[ $MACHINE_ID = gaeac6 ]]; then export TPN=144 fi if [[ $MACHINE_ID = ursa ]]; then diff --git a/tests/tests/cpld_control_gfsv17_iau b/tests/tests/cpld_control_gfsv17_iau index 865806a036..d614bd68a2 100644 --- a/tests/tests/cpld_control_gfsv17_iau +++ b/tests/tests/cpld_control_gfsv17_iau @@ -46,7 +46,7 @@ export LIST_FILES="sfcf024.nc \ RESTART/iced.2021-03-23-43200.nc \ RESTART/ufs.cpld.cpl.r.2021-03-23-43200.nc \ ufs.cpld.ww3.r.2021-03-23-43200.nc \ - MOM6_OUTPUT/ocn_2021_03_23_09.nc \ + MOM6_OUTPUT/ocn_2021_03_23_09_00.nc \ history/iceh_06h.2021-03-23-43200.nc \ 20210323.120000.out_pnt.ww3.nc \ 20210323.120000.out_grd.ww3 " diff --git a/tests/tests/datm_cdeps_3072x1536_cfsr b/tests/tests/datm_cdeps_3072x1536_cfsr index 4f51f66501..60598953b6 100644 --- a/tests/tests/datm_cdeps_3072x1536_cfsr +++ b/tests/tests/datm_cdeps_3072x1536_cfsr @@ -13,7 +13,7 @@ export LIST_FILES="RESTART/20111002.000000.MOM.res.nc \ export_datm_cdeps export DATM_SRC=CFSR3072x1536 export FILEBASE_DATM=cfsr -export WLCLK=15 +export WLCLK=20 export IATM=3072 export JATM=1536 export ATM_NX_GLB=$IATM diff --git a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 index bb52bcc438..41ced67147 100644 --- a/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 +++ b/tests/tests/hafs_regional_storm_following_1nest_atm_ocn_wav_mom6 @@ -144,6 +144,9 @@ export INLINE_MESH_OCN="INPUT/gfs_mesh.nc" export INLINE_STREAM_FILES_OCN="INPUT/gfs_forcings.nc" export STREAM_OFFSET=0 +export MOM6_OUTPUT_FH=3 +export MOM6_OUTPUT_DIR=./ + export FIELD_TABLE=field_table_hafs export DIAG_TABLE=diag_table_hafs_template.IN export INPUT_NML=input_regional_hafs.nml.IN