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 42739bbe8f..71a305f7ff 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 @@ -19,6 +19,7 @@ module shr_is_restart_fh_mod end type is_restart_fh_type public :: init_is_restart_fh, is_restart_fh, finalize_restart_fh, is_restart_fh_type + public :: log_restart_fh contains @@ -81,7 +82,7 @@ subroutine init_is_restart_fh(currentTime, dtime, lLog, restartfh_info) call ESMF_ConfigDestroy(CF_mc, rc=rc) if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return end if !model_configure - + end subroutine init_is_restart_fh subroutine is_restart_fh(clock, restartfh_info, lWrite) @@ -91,7 +92,7 @@ subroutine is_restart_fh(clock, restartfh_info, lWrite) ! ! !USES: use ESMF, only : ESMF_ClockGetNextTime - + ! ! !ARGUMENTS: type(ESMF_Clock), intent(in) :: clock @@ -114,8 +115,59 @@ subroutine is_restart_fh(clock, restartfh_info, lWrite) end if lWrite = restartfh_info%write_restartfh - + end subroutine is_restart_fh + !=============================================================================== + !> Write a log file + !! + !> @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[out] rc return code + !! + !> @authorDenise.Worthen@noaa.gov + !> @date 04-14-2025 + subroutine log_restart_fh(nextTime, startTime, complog, 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 + + ! local variables + type(ESMF_TimeInterval) :: elapsedTime + real(ESMF_KIND_R8) :: fhour + character(ESMF_MAXSTR) :: filename + character(ESMF_MAXSTR) :: nexttimestring + integer :: fh_logunit + integer :: yr,mon,day,hour,minute,sec ! time units + character(len=*), parameter :: subname='(log_restart_fh)' + !----------------------------------------------------------------------- + + call ESMF_LogWrite(trim(subname)//": called", ESMF_LOGMSG_INFO) + rc = ESMF_SUCCESS + + elapsedTime = nextTime - 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) + if (ESMF_LogFoundError(rcToCheck=rc, msg=ESMF_LOGERR_PASSTHRU, line=__LINE__, file=__FILE__)) return + write(nexttimestring,'(6i8)')yr,mon,day,hour,minute,sec + + 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) + close(fh_logunit) + + end subroutine log_restart_fh subroutine finalize_restart_fh(restartfh_info) ! diff --git a/CMEPS-interface/CMEPS b/CMEPS-interface/CMEPS index 46ca4c8953..00cf7e02ab 160000 --- a/CMEPS-interface/CMEPS +++ b/CMEPS-interface/CMEPS @@ -1 +1 @@ -Subproject commit 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 +Subproject commit 00cf7e02ab4cb3cd095ac033b245e9dce924efba diff --git a/tests/logs/OpnReqTests_control_p8_hera.log b/tests/logs/OpnReqTests_control_p8_hera.log index 99500c19b4..278bdb1a16 100644 --- a/tests/logs/OpnReqTests_control_p8_hera.log +++ b/tests/logs/OpnReqTests_control_p8_hera.log @@ -1,9 +1,9 @@ -Thu Apr 17 08:31:05 UTC 2025 +Mon Apr 21 04:41:46 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 266.947315 - 0: The maximum resident set size (KB) = 1461548 + 0: The total amount of wall time = 261.664448 + 0: The maximum resident set size (KB) = 1459100 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 881.953921 - 0: The maximum resident set size (KB) = 1434108 + 0: The total amount of wall time = 886.008950 + 0: The maximum resident set size (KB) = 1433868 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 237.286922 - 0: The maximum resident set size (KB) = 1418072 + 0: The total amount of wall time = 240.181124 + 0: The maximum resident set size (KB) = 1438924 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/mpi_mpi +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 241.844215 - 0: The maximum resident set size (KB) = 1426784 + 0: The total amount of wall time = 238.075144 + 0: The maximum resident set size (KB) = 1435216 Test mpi PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 239.325433 - 0: The maximum resident set size (KB) = 1438996 + 0: The total amount of wall time = 236.771351 + 0: The maximum resident set size (KB) = 1425760 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 241.447574 - 0: The maximum resident set size (KB) = 1425872 + 0: The total amount of wall time = 240.906603 + 0: The maximum resident set size (KB) = 1425596 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/control_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_664705/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2835588/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 = 245.911854 - 0: The maximum resident set size (KB) = 1438552 + 0: The total amount of wall time = 243.480752 + 0: The maximum resident set size (KB) = 1438400 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 17 09:39:23 UTC 2025 -Elapsed time: 01h:08m:18s. Have a nice day! +Mon Apr 21 05:51:12 UTC 2025 +Elapsed time: 01h:09m:26s. 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 09bceddb07..5b8c5c81d9 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 @@ -Thu Apr 17 06:58:41 UTC 2025 +Mon Apr 21 03:09:32 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_dbg_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120071/dbg_base_dbg_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2744982/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 = 2508.496804 - 0: The maximum resident set size (KB) = 1507756 + 0: The total amount of wall time = 2367.069476 + 0: The maximum resident set size (KB) = 1508308 Test dbg_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120071/rst_rst +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2744982/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 = 679.202570 - 0: The maximum resident set size (KB) = 1502576 + 0: The total amount of wall time = 677.548899 + 0: The maximum resident set size (KB) = 1505232 Test rst PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/cpld_control_c96_noaero_p8_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_120071/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2744982/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 = 685.302333 - 0: The maximum resident set size (KB) = 1506488 + 0: The total amount of wall time = 695.609365 + 0: The maximum resident set size (KB) = 1507964 Test std_base PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 17 08:31:04 UTC 2025 -Elapsed time: 01h:32m:24s. Have a nice day! +Mon Apr 21 04:41:46 UTC 2025 +Elapsed time: 01h:32m:14s. Have a nice day! diff --git a/tests/logs/OpnReqTests_regional_control_hera.log b/tests/logs/OpnReqTests_regional_control_hera.log index c8a4dd2165..d01cbb94c3 100644 --- a/tests/logs/OpnReqTests_regional_control_hera.log +++ b/tests/logs/OpnReqTests_regional_control_hera.log @@ -1,9 +1,9 @@ -Thu Apr 17 04:25:05 UTC 2025 +Mon Apr 21 00:34:26 UTC 2025 Start Operation Requirement Test baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_bit_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3388636/bit_base_bit_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2594928/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 = 1486.221824 - 0: The maximum resident set size (KB) = 781540 + 0: The total amount of wall time = 1470.001379 + 0: The maximum resident set size (KB) = 769924 Test bit_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3388636/dcp_dcp +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2594928/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 = 2283.244288 - 0: The maximum resident set size (KB) = 742652 + 0: The total amount of wall time = 2293.156833 + 0: The maximum resident set size (KB) = 731044 Test dcp PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3388636/std_base_std_base +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2594928/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 = 2198.734138 - 0: The maximum resident set size (KB) = 733896 + 0: The total amount of wall time = 2213.298532 + 0: The maximum resident set size (KB) = 743252 Test std_base PASS baseline dir = /scratch1/NCEPDEV/stmp4/role.epic/FV3_OPNREQ_TEST/OPNREQ_TEST/regional_control_std_base_gnu -working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_3388636/thr_thr +working dir = /scratch1/NCEPDEV/stmp2/role.epic/FV3_OPNREQ_TEST/opnReqTest_2594928/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 = 2200.524188 - 0: The maximum resident set size (KB) = 735192 + 0: The total amount of wall time = 2207.186865 + 0: The maximum resident set size (KB) = 732088 Test thr PASS OPERATION REQUIREMENT TEST WAS SUCCESSFUL -Thu Apr 17 06:58:40 UTC 2025 -Elapsed time: 02h:33m:36s. Have a nice day! +Mon Apr 21 03:09:31 UTC 2025 +Elapsed time: 02h:35m:05s. Have a nice day! diff --git a/tests/logs/RegressionTests_acorn.log b/tests/logs/RegressionTests_acorn.log index 59c1ac5049..39095d7499 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: -fd78d43620596eaf208a9d88f4abab6cfbe538c4 +76113f2ca532cf2a1b3ab6b76f3fa5731fb4cf3d Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,275 +39,275 @@ 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-20250416 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_1008653 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2477623 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:26, 11:49] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:30, 06:23](3191 MB) -PASS -- TEST 'cpld_control_gefs_intel' [59:04, 16:31](4305 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [25:09, 08:12](4107 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 12:40] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [25:34, 15:06](1897 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:41, 16:07](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [14:26, 07:17](1062 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:41, 17:35](1879 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:29, 12:39] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [23:25, 14:49](1895 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 04:55] ( 1517 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:32, 24:33](1944 MB) - -PASS -- COMPILE 's2swa_intel' [13:27, 11:28] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [14:32, 07:58](3222 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:24, 07:58](3221 MB) -PASS -- TEST 'cpld_restart_p8_intel' [13:00, 04:28](3105 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [10:49, 08:05](3240 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [14:25, 04:35](3124 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:24, 16:30](3437 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [14:53, 07:51](3214 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:11, 06:34](3163 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:18, 08:03](3221 MB) - -PASS -- COMPILE 's2swal_intel' [13:28, 11:56] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [17:29, 08:17](3225 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [15:36, 04:46](3108 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [11:07, 08:05](3204 MB) - -PASS -- COMPILE 's2sw_intel' [12:26, 10:48] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [07:41, 04:41](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:01, 06:53](1981 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [11:26, 10:12] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:26, 04:47](1973 MB) - -PASS -- COMPILE 's2s_intel' [11:26, 10:13] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [08:43, 05:50](2871 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:30, 01:57](2877 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:28, 01:11](2297 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:32, 15:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [15:18, 07:50](3224 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:27, 12:20] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [27:05, 15:01](1914 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:04, 07:23](1100 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [26:59, 17:27](1883 MB) +PASS -- COMPILE 's2swa_32bit_intel' [12:25, 11:14] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [14:39, 06:18](3189 MB) +PASS -- TEST 'cpld_control_gefs_intel' [58:49, 16:43](4307 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [25:33, 08:17](4109 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:27, 12:52] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [24:50, 15:03](1897 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [24:39, 16:05](1932 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [14:27, 07:17](1061 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [28:35, 17:37](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:27, 12:32] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [23:23, 14:45](1894 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 04:51] ( 1517 warnings 1967 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:34, 24:41](1943 MB) + +PASS -- COMPILE 's2swa_intel' [12:25, 11:14] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [11:08, 08:08](3222 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [16:30, 08:00](3218 MB) +PASS -- TEST 'cpld_restart_p8_intel' [22:26, 04:33](3104 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [10:56, 08:06](3239 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [22:38, 04:34](3126 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:29, 16:34](3446 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [10:48, 08:00](3215 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:18, 06:36](3167 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:37, 08:08](3225 MB) + +PASS -- COMPILE 's2swal_intel' [13:26, 11:47] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [18:26, 08:23](3228 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [18:40, 04:50](3107 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [17:14, 08:02](3199 MB) + +PASS -- COMPILE 's2sw_intel' [12:25, 10:32] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [07:50, 04:40](1913 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:18, 06:57](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:17] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:15, 04:50](1984 MB) + +PASS -- COMPILE 's2s_intel' [12:25, 10:17] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:50, 05:51](2871 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:46, 01:58](2878 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:13, 01:11](2297 MB) + +PASS -- COMPILE 's2swa_faster_intel' [17:30, 15:46] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [15:15, 08:00](3221 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [13:27, 12:09] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:07, 15:06](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [14:09, 07:23](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [22:55, 17:30](1891 MB) PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:19, 04:27] ( 1517 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [40:06, 27:34](1970 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:23, 08:51] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [13:41, 03:43](677 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [11:02, 02:16](1568 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [11:06, 02:23](1580 MB) -PASS -- TEST 'control_latlon_intel' [10:56, 02:21](1577 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [12:10, 02:22](1576 MB) -PASS -- TEST 'control_c48_intel' [14:21, 06:11](1585 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [14:03, 05:41](704 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [13:21, 06:15](1592 MB) -PASS -- TEST 'control_c192_intel' [14:17, 06:55](1698 MB) -PASS -- TEST 'control_c384_intel' [10:33, 08:21](1987 MB) -PASS -- TEST 'control_c384gdas_intel' [09:37, 08:49](1164 MB) -PASS -- TEST 'control_stochy_intel' [06:34, 01:37](634 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:35, 00:56](396 MB) -PASS -- TEST 'control_lndp_intel' [07:32, 01:31](631 MB) -PASS -- TEST 'control_iovr4_intel' [07:36, 02:23](632 MB) -PASS -- TEST 'control_iovr5_intel' [07:37, 02:22](632 MB) -PASS -- TEST 'control_p8_intel' [10:30, 02:45](1859 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [09:30, 02:56](1856 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [09:27, 02:46](1859 MB) -PASS -- TEST 'control_restart_p8_intel' [05:50, 01:38](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [08:40, 02:45](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [07:06, 01:38](1012 MB) -PASS -- TEST 'control_decomp_p8_intel' [09:41, 02:48](1845 MB) -PASS -- TEST 'control_2threads_p8_intel' [13:21, 05:38](1935 MB) -PASS -- TEST 'control_p8_lndp_intel' [11:03, 04:44](1857 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [12:31, 03:54](1910 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:21, 02:59](1863 MB) -PASS -- TEST 'merra2_thompson_intel' [11:58, 03:18](1850 MB) -PASS -- TEST 'regional_control_intel' [06:51, 04:57](877 MB) -PASS -- TEST 'regional_restart_intel' [04:49, 02:44](880 MB) -PASS -- TEST 'regional_decomp_intel' [07:46, 05:18](877 MB) -PASS -- TEST 'regional_2threads_intel' [12:52, 07:20](990 MB) -PASS -- TEST 'regional_noquilt_intel' [06:54, 04:56](1173 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [06:48, 05:02](876 MB) -PASS -- TEST 'regional_wofs_intel' [09:50, 07:06](1609 MB) - -PASS -- COMPILE 'rrfs_intel' [09:23, 08:15] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [12:40, 07:06](1016 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:19, 04:16](1180 MB) -PASS -- TEST 'rap_decomp_intel' [12:22, 07:20](1015 MB) -PASS -- TEST 'rap_2threads_intel' [20:45, 15:38](1083 MB) -PASS -- TEST 'rap_restart_intel' [10:02, 03:41](772 MB) -PASS -- TEST 'rap_sfcdiff_intel' [12:33, 07:01](1012 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [12:14, 07:18](1013 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [11:39, 05:17](786 MB) -PASS -- TEST 'hrrr_control_intel' [09:44, 03:41](1006 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [09:38, 03:45](1013 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [12:38, 07:45](1071 MB) -PASS -- TEST 'hrrr_control_restart_intel' [06:35, 01:59](756 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:30, 06:58](1008 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [13:42, 09:14](1970 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [12:40, 08:55](1963 MB) - -PASS -- COMPILE 'csawmg_intel' [09:22, 07:36] -PASS -- TEST 'control_csawmg_intel' [10:54, 06:18](963 MB) -PASS -- TEST 'control_ras_intel' [07:32, 03:11](670 MB) - -PASS -- COMPILE 'wam_intel' [09:23, 07:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [16:09, 11:49](1661 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 07:49] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [08:27, 02:50](1857 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 04:45](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:19, 04:42] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [11:11, 02:27](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [14:23, 02:30](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:35, 03:16](822 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:35, 02:57](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [11:06, 04:34](1108 MB) -PASS -- TEST 'control_ras_debug_intel' [08:38, 02:58](829 MB) -PASS -- TEST 'control_diag_debug_intel' [14:18, 02:55](1673 MB) -PASS -- TEST 'control_debug_p8_intel' [11:06, 02:52](1896 MB) -PASS -- TEST 'regional_debug_intel' [23:16, 18:06](928 MB) -PASS -- TEST 'rap_control_debug_intel' [11:42, 05:22](1201 MB) -PASS -- TEST 'hrrr_control_debug_intel' [11:45, 05:15](1191 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:38, 05:20](1201 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [09:36, 05:21](1200 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [09:37, 05:21](1202 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:46, 05:35](1284 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:29](1198 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:33, 05:30](1203 MB) -PASS -- TEST 'rap_lndp_debug_intel' [09:35, 05:25](1205 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [09:35, 05:23](1200 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:35, 05:17](1197 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [10:36, 05:22](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [12:37, 08:38](1194 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [09:34, 05:18](1194 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:36, 05:22](1199 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:37, 05:27](1199 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:47, 09:18](1205 MB) - -PASS -- COMPILE 'wam_debug_intel' [06:20, 03:17] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [18:13, 14:01](1701 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:33] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:22, 03:58](1038 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [12:26, 05:47](891 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [10:31, 03:04](883 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [19:33, 13:24](934 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:51, 06:49](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [10:03, 03:13](887 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:32, 04:20](751 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:41](719 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:30] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [08:17, 02:01](1079 MB) -PASS -- TEST 'conus13km_2threads_intel' [08:05, 01:39](1063 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:55, 01:19](772 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:39] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [08:55, 03:59](918 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:20] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [09:36, 05:11](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [09:38, 05:04](1069 MB) -PASS -- TEST 'conus13km_debug_intel' [18:17, 14:40](1133 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [18:19, 14:45](850 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [27:26, 22:53](1144 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [19:14, 14:43](1232 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:20] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:35, 05:14](1103 MB) - -PASS -- COMPILE 'hafsw_intel' [13:29, 09:17] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [16:49, 05:24](703 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [19:59, 03:50](1050 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [12:00, 06:50](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:52, 11:42](794 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [25:12, 13:01](810 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:12, 05:23](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [17:58, 06:49](476 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [17:26, 02:56](377 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [41:15, 07:57](445 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:00, 03:44](494 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:08, 03:29](491 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [20:30, 04:36](555 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [14:48, 01:35](403 MB) -PASS -- TEST 'gnv1_nested_intel' [10:42, 03:59](1703 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [09:24, 03:45] ( 1461 warnings 1471 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:35, 13:57](596 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [13:26, 08:59] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:42, 07:34](613 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [35:50, 07:44](783 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [17:31, 09:27] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [33:03, 05:58](773 MB) - -PASS -- COMPILE 'hafs_all_intel' [17:32, 09:14] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [12:11, 06:25](753 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:47, 06:28](730 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:36, 15:54](894 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [16:30, 09:21] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:25, 02:32](767 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:33](745 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:23](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [05:25, 02:25](645 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:26](644 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:32](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:25, 02:33](767 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:24, 02:23](647 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:34, 05:56](693 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:28, 05:56](672 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:21, 02:31](768 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:30](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:27, 04:30](2035 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [17:31, 09:17] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:24, 02:32](768 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [08:22, 00:50] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:42, 01:03](299 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 00:52](446 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:35, 00:40](449 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [17:32, 09:45] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:36, 03:41](1904 MB) - -PASS -- COMPILE 'atml_intel' [14:27, 09:06] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:31, 03:27](1881 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:01, 02:05](1029 MB) - -PASS -- COMPILE 'atml_debug_intel' [08:22, 04:07] ( 874 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [10:33, 05:35](1919 MB) - -PASS -- COMPILE 'atmw_intel' [10:24, 08:42] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:21, 01:55](1876 MB) - -PASS -- COMPILE 'atmaero_intel' [12:26, 07:55] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:03, 04:18](3113 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [10:03, 04:52](3002 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:48, 04:56](3010 MB) - -PASS -- COMPILE 'atmaq_intel' [11:24, 07:28] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [19:41, 15:30](2392 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:22] ( 850 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [44:53, 40:28](1854 MB) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [30:57, 25:35](1966 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [19:46, 03:43](675 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [19:09, 02:16](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [18:14, 02:26](1579 MB) +PASS -- TEST 'control_latlon_intel' [17:00, 02:22](1577 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:17, 02:23](1576 MB) +PASS -- TEST 'control_c48_intel' [11:15, 06:12](1583 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [09:57, 05:43](707 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:14, 06:16](1586 MB) +PASS -- TEST 'control_c192_intel' [15:19, 06:54](1697 MB) +PASS -- TEST 'control_c384_intel' [26:45, 08:19](1987 MB) +PASS -- TEST 'control_c384gdas_intel' [35:04, 08:47](1157 MB) +PASS -- TEST 'control_stochy_intel' [06:34, 01:37](632 MB) +PASS -- TEST 'control_stochy_restart_intel' [04:34, 00:57](401 MB) +PASS -- TEST 'control_lndp_intel' [05:32, 01:31](636 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 02:24](631 MB) +PASS -- TEST 'control_iovr5_intel' [06:35, 02:23](628 MB) +PASS -- TEST 'control_p8_intel' [08:34, 02:47](1859 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [08:33, 02:57](1856 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [09:31, 02:45](1858 MB) +PASS -- TEST 'control_restart_p8_intel' [04:43, 01:42](1007 MB) +PASS -- TEST 'control_noqr_p8_intel' [07:42, 02:48](1854 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:44, 01:39](1008 MB) +PASS -- TEST 'control_decomp_p8_intel' [07:36, 02:51](1846 MB) +PASS -- TEST 'control_2threads_p8_intel' [11:28, 05:38](1936 MB) +PASS -- TEST 'control_p8_lndp_intel' [09:06, 04:46](1863 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:28, 03:55](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:20, 03:01](1864 MB) +PASS -- TEST 'merra2_thompson_intel' [10:00, 03:20](1851 MB) +PASS -- TEST 'regional_control_intel' [07:56, 05:02](876 MB) +PASS -- TEST 'regional_restart_intel' [04:51, 02:47](884 MB) +PASS -- TEST 'regional_decomp_intel' [07:56, 05:17](878 MB) +PASS -- TEST 'regional_2threads_intel' [10:51, 07:22](993 MB) +PASS -- TEST 'regional_noquilt_intel' [06:48, 04:59](1171 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:49, 05:00](876 MB) +PASS -- TEST 'regional_wofs_intel' [09:52, 07:03](1609 MB) + +PASS -- COMPILE 'rrfs_intel' [09:23, 08:12] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [22:57, 07:06](1016 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [23:40, 04:15](1198 MB) +PASS -- TEST 'rap_decomp_intel' [20:49, 07:21](1015 MB) +PASS -- TEST 'rap_2threads_intel' [31:05, 15:40](1088 MB) +PASS -- TEST 'rap_restart_intel' [08:35, 03:42](772 MB) +PASS -- TEST 'rap_sfcdiff_intel' [19:55, 07:01](1014 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [18:55, 07:17](1013 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:34, 05:19](782 MB) +PASS -- TEST 'hrrr_control_intel' [13:41, 03:39](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [14:48, 03:44](1011 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [18:56, 07:45](1072 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 01:59](755 MB) +PASS -- TEST 'rrfs_v1beta_intel' [25:00, 06:58](1008 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [24:55, 09:13](1970 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [24:57, 08:55](1962 MB) + +PASS -- COMPILE 'csawmg_intel' [09:24, 07:31] +PASS -- TEST 'control_csawmg_intel' [09:00, 06:25](962 MB) +PASS -- TEST 'control_ras_intel' [05:32, 03:13](669 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:26] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:10, 11:55](1663 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:23, 07:48] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:28, 02:53](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [06:54, 04:53](873 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:21, 04:34] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:56, 02:28](1605 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [06:02, 02:30](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:30, 03:16](824 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:33, 02:56](827 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:55, 04:37](1109 MB) +PASS -- TEST 'control_ras_debug_intel' [05:32, 02:59](832 MB) +PASS -- TEST 'control_diag_debug_intel' [07:04, 02:56](1672 MB) +PASS -- TEST 'control_debug_p8_intel' [06:52, 02:54](1900 MB) +PASS -- TEST 'regional_debug_intel' [21:05, 18:05](951 MB) +PASS -- TEST 'rap_control_debug_intel' [08:37, 05:22](1201 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:38, 05:17](1191 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:42, 05:21](1198 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:35, 05:23](1199 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:32, 05:23](1201 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:49, 05:36](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [09:34, 05:30](1197 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [10:35, 05:30](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [09:35, 05:25](1207 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [10:35, 05:22](1203 MB) +PASS -- TEST 'rap_noah_debug_intel' [09:35, 05:16](1193 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [10:35, 05:22](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [13:39, 08:40](1198 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [11:36, 05:18](1191 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [11:37, 05:23](1200 MB) +PASS -- TEST 'rap_flake_debug_intel' [11:37, 05:22](1199 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [17:52, 09:17](1203 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:19, 03:16] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [20:16, 14:05](1700 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 07:39] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [12:27, 04:00](1044 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:33, 05:47](889 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [13:21, 03:05](886 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [20:34, 13:27](946 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [16:37, 06:45](928 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:11, 03:13](882 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:34, 04:21](749 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:41](720 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:22, 07:33] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [09:20, 02:00](1079 MB) +PASS -- TEST 'conus13km_2threads_intel' [08:10, 01:41](1076 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:57, 01:20](772 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:24, 07:40] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [09:58, 04:00](917 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:19, 03:21] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [11:39, 05:11](1074 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [11:40, 05:06](1068 MB) +PASS -- TEST 'conus13km_debug_intel' [21:23, 14:41](1159 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [21:22, 14:43](840 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [29:23, 22:57](1117 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [21:15, 14:41](1205 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:20, 03:16] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:38, 05:13](1104 MB) + +PASS -- COMPILE 'hafsw_intel' [14:28, 09:18] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [18:51, 05:26](700 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [22:00, 03:51](1047 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [13:02, 06:50](756 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [17:51, 11:41](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [27:16, 13:04](892 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [11:11, 05:25](465 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [25:01, 06:49](471 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [19:30, 02:54](374 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [28:05, 07:58](446 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:03, 03:45](491 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [09:10, 03:32](491 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [25:33, 04:32](553 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [17:50, 01:35](407 MB) +PASS -- TEST 'gnv1_nested_intel' [08:37, 03:59](1703 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:24, 03:55] ( 1461 warnings 1471 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [34:48, 13:58](660 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [15:32, 09:07] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [28:42, 07:38](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [29:44, 07:41](785 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [14:28, 09:20] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [27:57, 05:57](772 MB) + +PASS -- COMPILE 'hafs_all_intel' [14:27, 08:39] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:44, 06:27](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:43, 06:28](728 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:33, 15:59](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [13:28, 09:14] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:24, 02:33](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:26, 01:33](756 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:23, 02:23](647 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:24, 02:25](653 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:23, 02:26](648 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:23, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:33](767 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:23, 02:23](648 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:32, 05:59](686 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:28, 06:07](671 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:32](769 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 04:31](2032 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:26, 04:31](2035 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:25, 09:22] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:23, 02:34](755 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:16, 00:44] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [06:41, 01:04](302 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:31, 00:53](447 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [07:38, 00:42](446 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:29, 09:40] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:41, 03:41](1904 MB) + +PASS -- COMPILE 'atml_intel' [13:28, 09:08] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [10:46, 03:25](1883 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:03, 02:05](1027 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:22, 04:08] ( 874 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [12:40, 05:33](1920 MB) + +PASS -- COMPILE 'atmw_intel' [12:25, 08:19] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [07:26, 01:56](1878 MB) + +PASS -- COMPILE 'atmaero_intel' [11:25, 07:55] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:08, 04:16](3112 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [12:09, 04:51](3006 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [11:50, 04:56](3011 MB) + +PASS -- COMPILE 'atmaq_intel' [10:24, 07:29] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [22:50, 15:37](2397 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [08:21, 03:21] ( 850 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [48:07, 40:25](1860 MB) SYNOPSIS: -Starting Date/Time: 20250417 23:58:38 -Ending Date/Time: 20250418 02:37:53 -Total Time: 02h:39m:43s +Starting Date/Time: 20250421 11:44:55 +Ending Date/Time: 20250421 14:23:20 +Total Time: 02h:38m:55s Compiles Completed: 39/39 Tests Completed: 181/181 diff --git a/tests/logs/RegressionTests_derecho.log b/tests/logs/RegressionTests_derecho.log index 19689bef0e..8ae6d07a0f 100644 --- a/tests/logs/RegressionTests_derecho.log +++ b/tests/logs/RegressionTests_derecho.log @@ -1,7 +1,7 @@ ====START OF DERECHO REGRESSION TESTING LOG==== UFSWM hash used in testing: -73ef086c74a4d1855551973d55ece7f5824692b4 +1fb9ffb1453250521c63e4719d73b74cee9772be Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,290 +39,290 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /glade/derecho/scratch/epicufsrt/ufs-weather-model/RT//NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_72563 +COMPARISON DIRECTORY: /glade/derecho/scratch/jongkim/FV3_RT/rt_56276 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: nral0032 * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [24:22, 22:15] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:49, 06:10](3196 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:29, 23:51] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [18:31, 14:01](1907 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:59, 15:07](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:02, 07:20](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:33, 16:01](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [26:29, 24:00] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [17:32, 13:51](1909 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:20, 12:06] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:35, 22:11](1937 MB) - -PASS -- COMPILE 's2swa_intel' [24:28, 22:19] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [13:00, 08:09](3221 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:53, 08:09](3219 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:53, 04:53](3144 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [12:34, 08:00](3248 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [10:19, 04:47](3172 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [18:32, 13:40](3795 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:28, 07:49](3209 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [11:22, 06:33](3530 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:59, 07:59](3228 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [16:16, 08:45](3808 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [13:28, 05:33](3615 MB) - -PASS -- COMPILE 's2swal_intel' [25:29, 22:40] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [12:36, 08:07](3228 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [10:23, 04:54](3155 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:01, 07:52](3204 MB) - -PASS -- COMPILE 's2sw_intel' [23:20, 20:27] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:58, 04:55](1913 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:16, 06:57](1969 MB) - -PASS -- COMPILE 's2swa_debug_intel' [15:21, 11:58] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [17:21, 12:40](3287 MB) - -PASS -- COMPILE 's2sw_debug_intel' [14:19, 11:01] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:54, 05:55](1947 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [19:20, 16:22] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:01, 05:07](1975 MB) - -PASS -- COMPILE 's2s_intel' [19:23, 16:35] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:18, 05:50](2874 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:20, 02:15](2885 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:35, 01:31](2293 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:18, 22:02] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:16, 06:12](3199 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [25:23, 23:41] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [17:55, 13:57](1900 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [18:58, 14:53](1929 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 07:07](1058 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [19:56, 15:50](1878 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:19, 23:31] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [17:09, 13:42](1912 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [13:17, 11:33] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [25:54, 22:28](1931 MB) + +PASS -- COMPILE 's2swa_intel' [24:18, 21:58] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:40, 07:38](3217 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:32, 07:55](3220 MB) +PASS -- TEST 'cpld_restart_p8_intel' [09:55, 04:35](3141 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:23, 07:48](3249 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [09:57, 04:50](3173 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [17:17, 13:25](3798 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:08, 07:21](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:08, 06:13](3533 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:35, 07:56](3226 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [15:15, 08:34](3807 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [11:31, 05:42](3613 MB) + +PASS -- COMPILE 's2swal_intel' [24:18, 22:14] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:30, 07:46](3229 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:54, 04:44](3152 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:03, 07:51](3203 MB) + +PASS -- COMPILE 's2sw_intel' [22:24, 20:11] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:40, 04:48](1909 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [10:55, 06:39](1981 MB) + +PASS -- COMPILE 's2swa_debug_intel' [13:17, 11:26] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:01, 12:16](3286 MB) + +PASS -- COMPILE 's2sw_debug_intel' [13:17, 10:48] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:30, 05:59](1946 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [18:19, 16:19] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:37, 04:59](1980 MB) + +PASS -- COMPILE 's2s_intel' [18:20, 16:40] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:07, 05:35](2875 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 01:57](2883 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:17, 01:20](2293 MB) PASS -- COMPILE 's2swa_faster_intel' [26:24, 24:00] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:34, 07:58](3227 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:22, 22:13] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:21, 13:56](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [12:44, 07:13](1106 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [20:05, 16:00](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:19, 10:53] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 24:20](1966 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [16:22, 13:58] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:59, 03:28](668 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:13, 02:03](1562 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:21, 02:10](1571 MB) -PASS -- TEST 'control_latlon_intel' [05:02, 02:06](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:10, 02:14](1567 MB) -PASS -- TEST 'control_c48_intel' [09:08, 05:48](1577 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [07:40, 05:18](701 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:07, 05:42](1578 MB) -PASS -- TEST 'control_c192_intel' [10:08, 06:05](1686 MB) -PASS -- TEST 'control_c384_intel' [16:01, 06:43](1972 MB) -PASS -- TEST 'control_c384gdas_intel' [20:07, 07:18](1160 MB) -PASS -- TEST 'control_stochy_intel' [04:45, 01:27](619 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:39, 00:55](434 MB) -PASS -- TEST 'control_lndp_intel' [03:39, 01:23](619 MB) -PASS -- TEST 'control_iovr4_intel' [04:49, 02:07](614 MB) -PASS -- TEST 'control_iovr5_intel' [04:54, 02:10](618 MB) -PASS -- TEST 'control_p8_intel' [07:39, 03:12](1858 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:29, 03:06](1851 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:54, 03:03](1854 MB) -PASS -- TEST 'control_restart_p8_intel' [05:34, 02:16](1005 MB) -PASS -- TEST 'control_noqr_p8_intel' [07:47, 03:07](1849 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:20, 02:12](1011 MB) -PASS -- TEST 'control_decomp_p8_intel' [08:40, 03:07](1849 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:42, 04:56](1937 MB) -PASS -- TEST 'control_p8_lndp_intel' [09:44, 04:59](1849 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [09:18, 04:05](1908 MB) -PASS -- TEST 'control_p8_mynn_intel' [09:02, 03:18](1856 MB) -PASS -- TEST 'merra2_thompson_intel' [09:00, 03:38](1863 MB) -PASS -- TEST 'regional_control_intel' [08:08, 05:01](882 MB) -PASS -- TEST 'regional_restart_intel' [06:11, 03:01](882 MB) -PASS -- TEST 'regional_decomp_intel' [09:03, 05:02](881 MB) -PASS -- TEST 'regional_noquilt_intel' [09:04, 04:51](1185 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:03, 04:56](878 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:04, 04:54](881 MB) -PASS -- TEST 'regional_wofs_intel' [09:00, 05:49](1615 MB) - -PASS -- COMPILE 'rrfs_intel' [14:35, 12:23] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [09:30, 06:12](1010 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:01, 03:39](1168 MB) -PASS -- TEST 'rap_decomp_intel' [10:26, 06:25](1009 MB) -PASS -- TEST 'rap_2threads_intel' [15:16, 11:27](1087 MB) -PASS -- TEST 'rap_restart_intel' [07:13, 03:15](875 MB) -PASS -- TEST 'rap_sfcdiff_intel' [09:25, 06:06](1009 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:28, 06:24](1006 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [08:20, 04:38](877 MB) -PASS -- TEST 'hrrr_control_intel' [06:28, 03:13](1002 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [07:16, 03:20](1004 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:14, 05:44](1079 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:53, 01:47](835 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:23, 06:03](1002 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:51, 08:06](1960 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:53, 07:46](1948 MB) - -PASS -- COMPILE 'csawmg_intel' [13:29, 11:30] -PASS -- TEST 'control_csawmg_intel' [09:33, 06:15](961 MB) -PASS -- TEST 'control_ras_intel' [05:58, 02:53](658 MB) - -PASS -- COMPILE 'wam_intel' [13:19, 11:09] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:42, 10:11](1650 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [13:29, 11:35] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:53, 03:18](1845 MB) -PASS -- TEST 'regional_control_faster_intel' [08:19, 04:41](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [12:19, 09:49] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:33, 02:10](1599 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:37, 02:13](1604 MB) -PASS -- TEST 'control_stochy_debug_intel' [06:04, 02:57](804 MB) -PASS -- TEST 'control_lndp_debug_intel' [06:02, 02:36](809 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:34, 04:42](1114 MB) -PASS -- TEST 'control_ras_debug_intel' [06:05, 02:40](812 MB) -PASS -- TEST 'control_diag_debug_intel' [07:14, 02:37](1663 MB) -PASS -- TEST 'control_debug_p8_intel' [06:31, 03:05](1890 MB) -PASS -- TEST 'regional_debug_intel' [19:33, 16:28](931 MB) -PASS -- TEST 'rap_control_debug_intel' [08:08, 04:42](1191 MB) -PASS -- TEST 'hrrr_control_debug_intel' [08:07, 04:36](1185 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:08, 04:47](1191 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:07, 04:43](1190 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:08, 04:43](1192 MB) -PASS -- TEST 'rap_diag_debug_intel' [09:27, 04:58](1274 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:11, 04:49](1196 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:53, 04:50](1189 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:48, 04:45](1193 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:02, 04:49](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:45, 04:36](1193 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:45, 04:54](1191 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:36, 07:37](1192 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:43, 04:40](1186 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:43, 04:43](1192 MB) -PASS -- TEST 'rap_flake_debug_intel' [07:46, 04:42](1191 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:18, 08:02](1197 MB) - -PASS -- COMPILE 'wam_debug_intel' [08:29, 06:14] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:53, 12:11](1692 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:25, 11:12] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:11, 03:30](1035 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:17, 05:11](886 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:12, 02:48](885 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:16, 09:37](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [08:19, 04:56](927 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:12, 02:56](883 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:05, 03:55](791 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:58, 01:35](772 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:21, 11:00] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [07:21, 01:47](1098 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:31, 01:15](1099 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [04:25, 01:07](991 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 11:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:18, 03:39](923 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [09:17, 06:37] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:51, 04:31](1074 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:51, 04:26](1068 MB) -PASS -- TEST 'conus13km_debug_intel' [17:03, 12:36](1155 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:00, 12:43](845 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [17:57, 13:47](1172 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:55, 12:42](1224 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [09:19, 06:24] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:45, 04:37](1111 MB) - -PASS -- COMPILE 'hafsw_intel' [20:26, 17:40] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:35, 04:24](757 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:04, 03:04](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:02, 06:22](785 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [15:40, 10:15](835 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [16:45, 11:21](825 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:30, 04:35](465 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:40, 05:33](488 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:08, 02:14](385 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:08, 05:59](452 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:06, 03:15](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:27, 03:00](503 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:37, 03:39](568 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:37, 01:10](420 MB) -PASS -- TEST 'gnv1_nested_intel' [08:40, 03:36](1694 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [10:25, 08:12] ( 1479 warnings 1451 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:26, 11:54](605 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [19:21, 17:21] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:53, 06:53](614 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:54, 06:55](678 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [21:22, 18:59] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:10, 05:08](664 MB) - -PASS -- COMPILE 'hafs_all_intel' [18:24, 15:49] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:50, 05:37](861 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:48, 05:39](846 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [20:22, 16:12](900 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [11:20, 08:49] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [05:40, 02:31](770 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:57, 01:32](756 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [05:39, 02:23](647 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:36, 02:26](650 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:40, 02:26](647 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [05:55, 02:31](769 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [05:44, 02:32](768 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [05:50, 02:23](650 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [11:18, 05:50](697 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [11:23, 05:48](677 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:46, 02:30](769 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:56, 03:57](2037 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [07:00, 03:54](2037 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [09:20, 05:52] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:35, 05:12](753 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [12:19, 08:40] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [05:57, 02:32](769 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [06:19, 02:44] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:53, 01:08](306 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:49, 00:51](451 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [04:00, 00:38](456 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:20, 13:22] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:43, 03:48](1906 MB) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:01, 07:47](3229 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [24:24, 22:18] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [17:35, 13:42](1929 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:08, 07:14](1107 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [19:43, 15:42](1908 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [13:23, 10:54] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:39, 24:01](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [16:17, 13:48] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:42, 03:23](666 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:57, 02:01](1561 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:05, 02:07](1567 MB) +PASS -- TEST 'control_latlon_intel' [04:59, 02:05](1562 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:05, 02:08](1563 MB) +PASS -- TEST 'control_c48_intel' [08:55, 05:41](1579 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:38, 05:16](701 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:00, 05:41](1580 MB) +PASS -- TEST 'control_c192_intel' [09:20, 06:03](1686 MB) +PASS -- TEST 'control_c384_intel' [12:45, 06:38](1977 MB) +PASS -- TEST 'control_c384gdas_intel' [15:07, 07:08](1163 MB) +PASS -- TEST 'control_stochy_intel' [04:37, 01:27](620 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:31, 00:54](428 MB) +PASS -- TEST 'control_lndp_intel' [03:29, 01:20](620 MB) +PASS -- TEST 'control_iovr4_intel' [04:40, 02:06](616 MB) +PASS -- TEST 'control_iovr5_intel' [04:39, 02:06](618 MB) +PASS -- TEST 'control_p8_intel' [06:39, 02:54](1852 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:40, 03:07](1857 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:32, 02:58](1856 MB) +PASS -- TEST 'control_restart_p8_intel' [05:19, 02:10](1006 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:30, 03:07](1852 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:14, 01:57](1014 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:13, 03:02](1850 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:14, 04:33](1938 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:05, 04:42](1852 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:20, 03:58](1903 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:20, 03:02](1865 MB) +PASS -- TEST 'merra2_thompson_intel' [06:14, 03:19](1858 MB) +PASS -- TEST 'regional_control_intel' [07:52, 04:47](877 MB) +PASS -- TEST 'regional_restart_intel' [05:45, 02:44](891 MB) +PASS -- TEST 'regional_decomp_intel' [07:43, 04:50](885 MB) +PASS -- TEST 'regional_noquilt_intel' [07:44, 04:33](1186 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:47, 04:44](880 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 04:45](878 MB) +PASS -- TEST 'regional_wofs_intel' [08:51, 05:49](1615 MB) + +PASS -- COMPILE 'rrfs_intel' [14:25, 12:18] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:01, 06:07](1008 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:58, 03:38](1182 MB) +PASS -- TEST 'rap_decomp_intel' [08:59, 06:25](1010 MB) +PASS -- TEST 'rap_2threads_intel' [14:58, 11:23](1091 MB) +PASS -- TEST 'rap_restart_intel' [06:17, 03:14](877 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:00, 06:05](1010 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:02, 06:21](1009 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [08:07, 04:36](878 MB) +PASS -- TEST 'hrrr_control_intel' [05:59, 03:11](1007 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:59, 03:16](1006 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [08:58, 05:42](1080 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:34, 01:46](836 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:53, 06:01](1008 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:30, 08:00](1955 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:37, 07:44](1947 MB) + +PASS -- COMPILE 'csawmg_intel' [13:24, 11:18] +PASS -- TEST 'control_csawmg_intel' [08:49, 06:00](962 MB) +PASS -- TEST 'control_ras_intel' [05:33, 02:51](661 MB) + +PASS -- COMPILE 'wam_intel' [13:24, 11:01] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [12:59, 10:09](1646 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [13:22, 11:34] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:15, 02:54](1850 MB) +PASS -- TEST 'regional_control_faster_intel' [06:47, 04:24](874 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [12:15, 09:42] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:28, 02:09](1602 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:29, 02:13](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:56, 02:52](807 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:56, 02:33](805 MB) +PASS -- TEST 'control_csawmg_debug_intel' [08:36, 04:43](1114 MB) +PASS -- TEST 'control_ras_debug_intel' [05:53, 02:36](813 MB) +PASS -- TEST 'control_diag_debug_intel' [06:48, 02:35](1667 MB) +PASS -- TEST 'control_debug_p8_intel' [06:25, 02:56](1896 MB) +PASS -- TEST 'regional_debug_intel' [19:26, 16:15](929 MB) +PASS -- TEST 'rap_control_debug_intel' [08:06, 04:41](1193 MB) +PASS -- TEST 'hrrr_control_debug_intel' [08:05, 04:32](1187 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [08:07, 04:45](1191 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [08:06, 04:40](1189 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:06, 04:56](1193 MB) +PASS -- TEST 'rap_diag_debug_intel' [09:19, 04:52](1277 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:07, 04:50](1188 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [08:07, 04:48](1189 MB) +PASS -- TEST 'rap_lndp_debug_intel' [08:08, 04:48](1198 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:36, 04:42](1191 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:33, 04:42](1188 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:40, 04:41](1191 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:37, 07:33](1193 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:31, 04:42](1185 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:39, 04:44](1194 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:43, 04:40](1190 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:05, 08:00](1195 MB) + +PASS -- COMPILE 'wam_debug_intel' [08:14, 06:16] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:10, 12:19](1694 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [13:20, 11:06] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:51, 03:29](1033 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [08:12, 05:07](885 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:05, 02:45](882 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [13:01, 09:34](942 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:56, 04:54](936 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:48, 02:53](884 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:11, 03:55](789 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:35, 01:33](777 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [13:22, 10:58] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:24, 01:42](1096 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:11, 01:13](1099 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:02, 01:05](990 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [13:19, 10:59] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:00, 03:37](921 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [08:15, 06:27] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:34, 04:37](1073 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:33, 04:32](1070 MB) +PASS -- TEST 'conus13km_debug_intel' [16:22, 12:33](1156 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:09, 12:37](845 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [17:15, 13:33](1162 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:08, 12:34](1223 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [08:14, 06:16] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:35, 04:36](1110 MB) + +PASS -- COMPILE 'hafsw_intel' [19:21, 17:37] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:22, 04:22](764 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:43, 03:00](1044 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:28, 06:18](785 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:31, 10:12](831 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [14:45, 11:19](824 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:13, 04:32](467 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:18, 05:34](486 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:04, 02:14](383 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:55, 05:56](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:55, 03:10](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [06:11, 02:59](503 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:12, 03:34](567 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:36, 01:09](417 MB) +PASS -- TEST 'gnv1_nested_intel' [08:12, 03:32](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [10:20, 08:10] ( 1479 warnings 1451 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:15, 12:06](607 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [19:17, 17:08] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:15, 06:41](607 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:29, 06:43](675 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [20:20, 18:43] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:56, 05:04](662 MB) + +PASS -- COMPILE 'hafs_all_intel' [17:19, 15:41] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:28, 05:34](857 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:19, 05:34](845 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:21, 16:11](897 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [11:13, 08:47] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:22, 02:29](767 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:33, 01:30](757 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:37, 02:20](645 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:37, 02:24](646 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:27, 02:23](651 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:31, 02:29](768 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:24, 02:30](770 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:33, 02:21](649 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:43, 05:42](696 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:42, 05:39](677 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:20, 02:29](759 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:27, 03:49](1975 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:29, 03:49](2036 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [08:23, 05:52] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:24, 05:07](752 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [10:26, 08:34] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:33, 02:29](770 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [05:22, 02:38] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:37, 01:10](310 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:40, 00:50](451 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [03:40, 00:37](452 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [15:22, 13:24] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:34, 03:48](1899 MB) PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:20, 12:20] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:40, 05:04](1902 MB) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:15, 04:56](1905 MB) -PASS -- COMPILE 'atml_intel' [17:20, 14:45] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [07:45, 03:39](1874 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [07:22, 02:23](1035 MB) +PASS -- COMPILE 'atml_intel' [16:19, 14:38] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [07:39, 03:48](1886 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:54, 02:18](1032 MB) -PASS -- COMPILE 'atml_debug_intel' [11:19, 08:53] ( 889 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:53, 05:26](1921 MB) +PASS -- COMPILE 'atml_debug_intel' [11:16, 08:43] ( 889 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:23, 04:58](1919 MB) -PASS -- COMPILE 'atmw_intel' [16:21, 14:09] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [06:41, 02:27](1875 MB) +PASS -- COMPILE 'atmw_intel' [16:15, 14:06] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:16, 02:10](1876 MB) -PASS -- COMPILE 'atmaero_intel' [14:22, 12:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:47, 04:21](3124 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [07:49, 04:19](2995 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:18, 04:23](3016 MB) +PASS -- COMPILE 'atmaero_intel' [14:16, 12:20] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [07:25, 04:09](3120 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [07:32, 04:15](2994 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [07:16, 04:18](3011 MB) -PASS -- COMPILE 'atmaq_intel' [14:20, 12:21] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [20:59, 14:10](3025 MB) +PASS -- COMPILE 'atmaq_intel' [14:20, 12:10] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [18:28, 13:47](3025 MB) -PASS -- COMPILE 'atmaq_debug_intel' [09:18, 07:22] ( 864 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [41:02, 34:28](3037 MB) +PASS -- COMPILE 'atmaq_debug_intel' [09:20, 07:15] ( 864 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [38:31, 34:10](3040 MB) -PASS -- COMPILE 'atm_fbh_intel' [13:29, 11:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:50, 08:01](809 MB) +PASS -- COMPILE 'atm_fbh_intel' [13:19, 11:00] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [10:34, 07:59](810 MB) SYNOPSIS: -Starting Date/Time: 20250416 13:54:34 -Ending Date/Time: 20250416 16:01:23 -Total Time: 02h:08m:06s +Starting Date/Time: 20250420 07:49:50 +Ending Date/Time: 20250420 09:49:28 +Total Time: 02h:00m:40s Compiles Completed: 44/44 Tests Completed: 186/186 diff --git a/tests/logs/RegressionTests_gaeac5.log b/tests/logs/RegressionTests_gaeac5.log index 28aba963c8..e3d5680960 100644 --- a/tests/logs/RegressionTests_gaeac5.log +++ b/tests/logs/RegressionTests_gaeac5.log @@ -1,7 +1,7 @@ ====START OF GAEAC5 REGRESSION TESTING LOG==== UFSWM hash used in testing: -a96c386a43d7be0056828b13953485eb6fa35c18 +64c0a81d92844ffb7b9b817c8b3f64462dc3b2a3 Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,390 +39,317 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229627 +COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_1636359 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [22:16, 20:11] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [22:26, 12:07](3178 MB) -PASS -- TEST 'cpld_control_gefs_intel' [41:03, 20:46](4396 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [33:41, 11:34](4220 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [26:16, 24:27] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [28:06, 17:44](1908 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [28:40, 18:20](1937 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:33, 08:41](1067 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [30:15, 19:45](1882 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:16, 23:10] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:59, 17:45](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [11:15, 09:07] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:41, 25:42](1923 MB) - -PASS -- COMPILE 's2swa_intel' [01:20, 00:02] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [27:02, 13:04](3214 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [27:52, 12:29](3213 MB) -PASS -- TEST 'cpld_restart_p8_intel' [22:17, 09:53](3134 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [29:23, 12:48](3231 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [19:55, 07:59](3153 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [26:46, 13:27](3431 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [28:00, 12:37](3204 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [25:12, 11:42](3152 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [29:29, 12:54](3207 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [29:59, 13:57](3482 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [28:57, 12:27](3590 MB) - -PASS -- COMPILE 's2swal_intel' [29:16, 27:39] ( 1 warnings 6 remarks ) -FAILED: TEST TIMED OUT -- TEST 'cpld_control_p8_lnd_intel' [, ]( MB) -FAILED: UNABLE TO START TEST -- TEST 'cpld_restart_p8_lnd_intel' [, ]( MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [22:04, 12:45](3188 MB) - -PASS -- COMPILE 's2sw_intel' [18:16, 16:48] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [17:12, 07:54](1909 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [20:22, 09:52](1961 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:15, 08:31] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [21:17, 15:05](3255 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:15, 07:28] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [14:00, 06:07](1931 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [13:14, 11:36] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [14:09, 07:02](1970 MB) - -PASS -- COMPILE 's2s_intel' [26:16, 24:24] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [21:01, 08:22](2862 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [12:27, 03:01](2863 MB) -PASS -- TEST 'cpld_restart_c48_intel' [09:23, 00:58](2280 MB) - -PASS -- COMPILE 's2swa_faster_intel' [41:17, 39:55] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [25:40, 12:23](3211 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [42:20, 40:12] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [29:23, 16:35](1914 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [21:29, 08:26](1099 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [32:55, 19:14](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [45:17, 43:32] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [38:17, 27:34](1939 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [03:25, 01:47] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [11:11, 05:09](656 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [13:13, 04:30](1555 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [10:52, 04:04](1562 MB) -PASS -- TEST 'control_latlon_intel' [11:10, 04:21](1555 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [11:10, 04:45](1554 MB) -PASS -- TEST 'control_c48_intel' [18:54, 08:08](1561 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [16:42, 06:18](685 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [17:56, 07:53](1563 MB) -PASS -- TEST 'control_c192_intel' [15:32, 08:15](1683 MB) -PASS -- TEST 'control_c384_intel' [23:21, 15:30](1971 MB) -PASS -- TEST 'control_c384gdas_intel' [27:03, 15:52](1159 MB) -PASS -- TEST 'control_stochy_intel' [08:03, 02:42](613 MB) -PASS -- TEST 'control_stochy_restart_intel' [05:57, 01:02](414 MB) -PASS -- TEST 'control_lndp_intel' [07:44, 02:45](610 MB) -PASS -- TEST 'control_iovr4_intel' [06:24, 02:58](606 MB) -PASS -- TEST 'control_iovr5_intel' [06:29, 03:00](610 MB) -PASS -- TEST 'control_p8_intel' [13:31, 04:10](1850 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [15:02, 04:58](1837 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:55, 04:11](1848 MB) -PASS -- TEST 'control_restart_p8_intel' [15:18, 03:13](995 MB) -PASS -- TEST 'control_noqr_p8_intel' [15:00, 04:42](1845 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [14:23, 03:21](984 MB) -PASS -- TEST 'control_decomp_p8_intel' [15:21, 05:10](1846 MB) -PASS -- TEST 'control_2threads_p8_intel' [16:11, 05:48](1917 MB) -PASS -- TEST 'control_p8_lndp_intel' [14:37, 07:40](1851 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [15:28, 04:58](1897 MB) -PASS -- TEST 'control_p8_mynn_intel' [18:47, 05:31](1850 MB) -PASS -- TEST 'merra2_thompson_intel' [16:44, 04:54](1854 MB) -PASS -- TEST 'regional_control_intel' [11:39, 05:29](866 MB) -PASS -- TEST 'regional_restart_intel' [08:36, 02:32](873 MB) -PASS -- TEST 'regional_decomp_intel' [11:39, 05:58](874 MB) -PASS -- TEST 'regional_2threads_intel' [08:56, 04:00](993 MB) -PASS -- TEST 'regional_noquilt_intel' [09:59, 05:04](1179 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [10:44, 04:54](865 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:12, 04:55](867 MB) -PASS -- TEST 'regional_wofs_intel' [12:57, 06:27](1600 MB) - -PASS -- COMPILE 'rrfs_intel' [40:23, 39:01] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [17:16, 07:59](999 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [09:51, 04:03](1235 MB) -PASS -- TEST 'rap_decomp_intel' [17:10, 07:49](999 MB) -PASS -- TEST 'rap_2threads_intel' [17:44, 08:09](1066 MB) -PASS -- TEST 'rap_restart_intel' [12:41, 04:35](871 MB) -PASS -- TEST 'rap_sfcdiff_intel' [17:19, 07:18](997 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [17:19, 07:32](998 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [13:41, 06:02](871 MB) -PASS -- TEST 'hrrr_control_intel' [14:57, 04:21](992 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [14:56, 04:29](990 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [14:57, 04:15](1050 MB) -PASS -- TEST 'hrrr_control_restart_intel' [08:29, 03:12](821 MB) -PASS -- TEST 'rrfs_v1beta_intel' [17:28, 07:22](992 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [15:10, 09:13](1946 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [14:18, 09:01](1938 MB) - -PASS -- COMPILE 'csawmg_intel' [35:20, 33:32] -PASS -- TEST 'control_csawmg_intel' [13:34, 07:51](950 MB) -PASS -- TEST 'control_ras_intel' [10:26, 05:09](653 MB) - -PASS -- COMPILE 'wam_intel' [38:16, 36:16] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [19:51, 13:38](1632 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [43:24, 41:42] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [14:16, 04:48](1849 MB) -PASS -- TEST 'regional_control_faster_intel' [10:32, 05:25](865 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [47:19, 45:46] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [13:28, 04:30](1578 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [11:32, 04:13](1578 MB) -PASS -- TEST 'control_stochy_debug_intel' [08:19, 04:04](788 MB) -PASS -- TEST 'control_lndp_debug_intel' [08:17, 03:34](787 MB) -PASS -- TEST 'control_csawmg_debug_intel' [12:40, 06:16](1087 MB) -PASS -- TEST 'control_ras_debug_intel' [08:32, 03:51](789 MB) -PASS -- TEST 'control_diag_debug_intel' [12:14, 04:55](1648 MB) -PASS -- TEST 'control_debug_p8_intel' [11:33, 04:54](1875 MB) -PASS -- TEST 'regional_debug_intel' [25:07, 17:10](906 MB) -PASS -- TEST 'rap_control_debug_intel' [12:06, 06:16](1166 MB) -PASS -- TEST 'hrrr_control_debug_intel' [10:59, 06:00](1155 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [12:04, 06:20](1166 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [10:59, 06:03](1166 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [11:15, 06:29](1160 MB) -PASS -- TEST 'rap_diag_debug_intel' [11:12, 06:23](1254 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [11:45, 06:07](1168 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [11:39, 06:26](1166 MB) -PASS -- TEST 'rap_lndp_debug_intel' [11:42, 06:24](1169 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [11:21, 06:37](1167 MB) -PASS -- TEST 'rap_noah_debug_intel' [10:53, 05:20](1167 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [11:56, 06:13](1169 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [14:23, 09:12](1167 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [10:09, 06:04](1162 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [11:30, 06:23](1171 MB) -PASS -- TEST 'rap_flake_debug_intel' [09:35, 05:58](1168 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [16:55, 09:49](1172 MB) - -PASS -- COMPILE 'wam_debug_intel' [34:23, 33:06] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [20:55, 15:13](1658 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [43:24, 41:40] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [09:09, 04:27](1071 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [14:55, 07:10](875 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [12:03, 03:34](871 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [15:16, 08:56](912 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [12:56, 05:08](902 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [11:32, 04:59](869 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [11:20, 04:16](772 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [08:19, 02:12](751 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [37:14, 35:55] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [10:12, 04:01](1095 MB) -PASS -- TEST 'conus13km_2threads_intel' [06:25, 01:34](1089 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [06:58, 01:40](994 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [42:17, 41:06] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [14:20, 06:17](911 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [36:26, 35:10] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [10:10, 05:45](1047 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [10:59, 06:10](1040 MB) -PASS -- TEST 'conus13km_debug_intel' [21:17, 14:31](1136 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [21:11, 14:58](827 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [18:18, 12:26](1119 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:39, 14:08](1197 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [33:23, 31:54] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [10:20, 06:10](1082 MB) - -PASS -- COMPILE 'hafsw_intel' [56:24, 54:57] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [12:00, 07:03](836 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:57, 04:53](1137 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [16:07, 08:21](850 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:26, 11:37](890 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:40, 13:22](909 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [13:44, 06:53](472 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [13:45, 07:47](504 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [13:00, 03:18](391 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [24:21, 10:30](480 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [10:39, 05:43](506 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [10:34, 04:56](508 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [15:25, 07:43](575 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [09:44, 04:12](427 MB) -PASS -- TEST 'gnv1_nested_intel' [17:58, 07:56](1699 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [03:28, 01:56] ( 1479 warnings 1451 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [21:52, 14:17](604 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:46] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:22, 07:23](624 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:23, 07:35](809 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [57:24, 56:05] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:12, 08:57](805 MB) - -PASS -- COMPILE 'hafs_all_intel' [45:24, 43:45] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [13:32, 07:59](863 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [13:44, 07:44](844 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [25:50, 20:06](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [38:24, 37:09] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [09:38, 05:22](753 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [06:03, 02:24](754 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [07:38, 03:05](645 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [11:23, 07:11](646 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [07:38, 03:10](641 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [07:38, 03:21](767 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [09:38, 05:24](752 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:38, 03:07](644 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [14:06, 09:13](695 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:12, 08:01](673 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:35, 03:25](765 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:50, 05:10](2033 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [09:17, 06:56](2032 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [46:28, 44:58] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [10:08, 06:21](747 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [44:24, 42:22] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [07:01, 04:00](753 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [17:21, 15:57] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [23:35, 17:14](322 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [16:45, 10:38](462 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [13:22, 07:12](460 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [18:15, 16:46] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [14:22, 05:37](451 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [11:28, 05:12](252 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [44:22, 43:03] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:32, 04:01](1910 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [38:19, 36:22] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [09:17, 05:15](1890 MB) - -PASS -- COMPILE 'atml_intel' [38:22, 36:29] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [08:56, 05:04](1871 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:41, 02:42](1027 MB) - -PASS -- COMPILE 'atml_debug_intel' [27:23, 25:54] ( 889 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [09:48, 05:23](1901 MB) - -PASS -- COMPILE 'atmw_intel' [30:19, 28:13] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [04:54, 02:12](1876 MB) - -PASS -- COMPILE 'atmaero_intel' [27:20, 25:33] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [09:25, 06:42](3094 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:26, 06:47](2982 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:15, 07:04](3002 MB) - -PASS -- COMPILE 'atmaq_intel' [22:22, 20:52] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [18:25, 16:07](2973 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [18:19, 16:13] ( 864 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [39:55, 36:57](2981 MB) - -PASS -- COMPILE 'atm_fbh_intel' [19:24, 17:45] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [11:40, 09:27](797 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:11, 20:16] -PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:12, 15:35](1903 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [11:12, 10:10] -PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [28:42, 24:13](1920 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:17, 19:47] -PASS -- TEST 'cpld_control_sfs_intelllvm' [17:07, 13:57](1890 MB) - -PASS -- COMPILE 's2swa_intelllvm' [17:16, 16:01] -PASS -- TEST 'cpld_control_p8_intelllvm' [13:25, 09:39](3213 MB) - -PASS -- COMPILE 'datm_cdeps_intelllvm' [13:11, 11:29] -PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:51, 02:32](764 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [08:15, 06:13] -PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:25, 05:25](747 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:11, 12:50] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [09:57, 07:29](3179 MB) +PASS -- TEST 'cpld_control_gefs_intel' [28:51, 15:48](4403 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [16:00, 07:08](4230 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [21:11, 19:21] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:36, 15:11](1894 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [19:24, 15:16](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [08:53, 06:56](1051 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [20:36, 17:13](1877 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [22:11, 20:52] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [16:44, 14:05](1891 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:10, 07:14] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [31:58, 24:16](1923 MB) + +PASS -- COMPILE 's2swa_intel' [16:11, 14:43] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:36, 09:39](3208 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:39, 09:17](3208 MB) +PASS -- TEST 'cpld_restart_p8_intel' [12:27, 05:15](3136 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:28, 09:05](3229 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [13:24, 05:19](3153 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [12:27, 09:48](3429 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [11:26, 08:56](3205 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:51, 07:44](3151 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:39, 09:17](3208 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [13:30, 09:26](3484 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [13:49, 10:53](3599 MB) + +PASS -- COMPILE 's2swal_intel' [16:11, 14:17] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [12:34, 10:06](3217 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [12:41, 07:04](3143 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:27, 09:08](3188 MB) + +PASS -- COMPILE 's2sw_intel' [15:11, 13:50] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:53, 04:59](1914 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [08:55, 06:55](1970 MB) + +PASS -- COMPILE 's2swa_debug_intel' [09:10, 07:23] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [15:55, 13:42](3254 MB) + +PASS -- COMPILE 's2sw_debug_intel' [08:10, 06:48] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [07:52, 05:44](1937 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [13:11, 12:04] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [08:16, 04:56](1971 MB) + +PASS -- COMPILE 's2s_intel' [15:11, 13:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [07:39, 05:31](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:49, 01:39](2862 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:40, 00:58](2282 MB) + +PASS -- COMPILE 's2swa_faster_intel' [15:11, 13:27] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [17:04, 08:56](3213 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [21:12, 19:58] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [16:59, 14:26](1913 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [08:53, 06:54](1083 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [18:56, 16:18](1886 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [10:10, 08:10] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:58, 27:13](1943 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:29] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:26, 03:43](655 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:56, 02:31](1551 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:58, 02:35](1559 MB) +PASS -- TEST 'control_latlon_intel' [04:53, 02:33](1556 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:01, 02:35](1554 MB) +PASS -- TEST 'control_c48_intel' [07:59, 06:02](1560 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [07:28, 05:42](683 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [08:00, 06:07](1564 MB) +PASS -- TEST 'control_c192_intel' [09:57, 06:49](1683 MB) +PASS -- TEST 'control_c384_intel' [16:17, 13:46](1969 MB) +PASS -- TEST 'control_c384gdas_intel' [17:59, 14:31](1164 MB) +PASS -- TEST 'control_stochy_intel' [03:21, 01:39](611 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:58](411 MB) +PASS -- TEST 'control_lndp_intel' [03:20, 01:39](611 MB) +PASS -- TEST 'control_iovr4_intel' [04:21, 02:30](609 MB) +PASS -- TEST 'control_iovr5_intel' [04:20, 02:32](605 MB) +PASS -- TEST 'control_p8_intel' [04:47, 02:53](1846 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [10:29, 03:09](1842 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [05:21, 02:53](1846 MB) +PASS -- TEST 'control_restart_p8_intel' [07:36, 02:08](996 MB) +PASS -- TEST 'control_noqr_p8_intel' [08:53, 02:55](1841 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [04:47, 01:30](1001 MB) +PASS -- TEST 'control_decomp_p8_intel' [08:28, 02:53](1837 MB) +PASS -- TEST 'control_2threads_p8_intel' [08:26, 02:57](1922 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:20, 04:39](1851 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [09:50, 03:55](1900 MB) +PASS -- TEST 'control_p8_mynn_intel' [09:14, 03:04](1853 MB) +PASS -- TEST 'merra2_thompson_intel' [08:31, 03:53](1845 MB) +PASS -- TEST 'regional_control_intel' [07:25, 04:35](868 MB) +PASS -- TEST 'regional_restart_intel' [05:06, 02:29](887 MB) +PASS -- TEST 'regional_decomp_intel' [07:26, 04:51](874 MB) +PASS -- TEST 'regional_2threads_intel' [07:07, 04:10](991 MB) +PASS -- TEST 'regional_noquilt_intel' [07:58, 04:53](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:55, 05:01](869 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [10:41, 05:44](868 MB) +PASS -- TEST 'regional_wofs_intel' [11:44, 07:25](1600 MB) + +PASS -- COMPILE 'rrfs_intel' [12:11, 10:15] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [10:29, 06:38](996 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:24, 03:57](1236 MB) +PASS -- TEST 'rap_decomp_intel' [09:42, 06:48](998 MB) +PASS -- TEST 'rap_2threads_intel' [10:31, 08:02](1076 MB) +PASS -- TEST 'rap_restart_intel' [05:36, 03:25](870 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:35, 06:54](996 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [08:42, 06:51](996 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [06:37, 04:52](871 MB) +PASS -- TEST 'hrrr_control_intel' [05:51, 03:40](994 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [05:45, 03:37](993 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [05:45, 03:59](1065 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:25, 01:54](825 MB) +PASS -- TEST 'rrfs_v1beta_intel' [08:51, 06:44](993 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [10:33, 08:39](1949 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [10:28, 08:26](1938 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:47] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:20](950 MB) +PASS -- TEST 'control_ras_intel' [05:25, 03:22](652 MB) + +PASS -- COMPILE 'wam_intel' [10:11, 09:07] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:58, 11:47](1640 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:11, 09:17] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:44, 03:00](1849 MB) +PASS -- TEST 'regional_control_faster_intel' [06:30, 04:25](866 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:20] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:40, 02:29](1578 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:39, 02:33](1578 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:21, 03:02](788 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:18, 02:43](787 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:24, 04:22](1087 MB) +PASS -- TEST 'control_ras_debug_intel' [04:18, 02:48](789 MB) +PASS -- TEST 'control_diag_debug_intel' [04:30, 02:46](1640 MB) +PASS -- TEST 'control_debug_p8_intel' [04:24, 02:47](1869 MB) +PASS -- TEST 'regional_debug_intel' [18:33, 16:18](907 MB) +PASS -- TEST 'rap_control_debug_intel' [06:22, 05:00](1168 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:22, 04:55](1163 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:22, 04:54](1170 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:28, 05:03](1166 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:20, 05:01](1167 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:24, 05:11](1255 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:21, 05:03](1168 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:19, 05:05](1167 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:21, 04:57](1169 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:21, 04:59](1167 MB) +PASS -- TEST 'rap_noah_debug_intel' [06:20, 04:52](1165 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [06:20, 04:56](1168 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [09:55, 07:51](1165 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:21, 05:08](1163 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:22, 04:55](1172 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:23, 05:19](1169 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:41, 08:36](1169 MB) + +PASS -- COMPILE 'wam_debug_intel' [06:10, 04:30] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [14:49, 13:06](1661 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [10:11, 09:04] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [05:54, 03:47](1071 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [07:48, 05:43](874 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [05:36, 03:11](873 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [08:39, 06:57](927 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [05:34, 03:36](902 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [05:34, 03:23](869 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [07:29, 04:08](776 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:28, 01:41](754 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [10:15, 09:08] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:58, 01:53](1097 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:19, 00:58](1095 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:12](991 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [15:12, 13:55] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [05:42, 04:04](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:34] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:59, 04:49](1046 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:20, 04:43](1042 MB) +PASS -- TEST 'conus13km_debug_intel' [16:00, 13:05](1133 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:28](824 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [12:43, 11:02](1119 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:49, 13:18](1199 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [06:11, 04:33] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 04:54](1085 MB) + +PASS -- COMPILE 'hafsw_intel' [16:12, 14:36] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:05, 04:58](841 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:26, 03:26](1068 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:17, 07:31](854 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [13:08, 10:55](894 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [15:23, 12:13](908 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 05:12](469 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:16, 06:29](498 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [04:49, 02:43](395 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [12:41, 07:18](475 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:44, 04:32](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:53, 03:27](507 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:17, 04:29](578 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:01, 01:30](427 MB) +PASS -- TEST 'gnv1_nested_intel' [07:31, 04:17](1699 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [11:14, 10:03] ( 1479 warnings 1451 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [14:55, 12:36](602 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [17:11, 15:26] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [10:36, 07:31](627 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [10:18, 07:42](809 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [18:11, 16:31] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [08:55, 05:46](806 MB) + +PASS -- COMPILE 'hafs_all_intel' [18:11, 16:27] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [08:41, 06:08](859 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:31, 06:15](842 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [22:07, 20:01](894 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [12:11, 10:09] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:50, 01:36](753 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:22, 02:32](641 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:31](641 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:20, 02:33](645 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:37](765 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:19, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:18, 02:30](642 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [08:55, 06:11](697 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [07:58, 06:06](673 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:31, 02:39](766 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:20, 04:41](2029 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:23, 04:44](2029 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [11:11, 09:32] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [07:20, 05:26](736 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [15:11, 13:20] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:20, 02:37](766 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [09:17, 07:56] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [05:35, 03:54](324 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:42, 01:24](460 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:37, 01:02](464 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:10, 01:52] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [03:41, 00:34](451 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:44, 00:37](253 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:52] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [05:52, 03:53](1897 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 10:04] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:54, 05:44](1898 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:59] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [08:01, 05:34](1871 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [06:37, 04:18](1022 MB) + +PASS -- COMPILE 'atml_debug_intel' [07:10, 05:36] ( 889 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:55, 06:01](1902 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:48] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:34, 02:21](1868 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 09:26] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [11:45, 06:19](3102 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [11:39, 06:32](2981 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [10:49, 06:46](2998 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 09:09] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [18:55, 15:42](2974 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [06:10, 04:51] ( 864 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [40:47, 37:04](2981 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:15, 09:18] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [12:02, 09:30](796 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intelllvm' [22:13, 20:30] +PASS -- TEST 'cpld_control_gfsv17_intelllvm' [18:27, 14:50](1893 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intelllvm' [08:15, 06:43] +PASS -- TEST 'cpld_debug_gfsv17_intelllvm' [27:15, 24:55](1925 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intelllvm' [21:12, 19:19] +PASS -- TEST 'cpld_control_sfs_intelllvm' [16:11, 14:00](1896 MB) + +PASS -- COMPILE 's2swa_intelllvm' [16:15, 14:16] +PASS -- TEST 'cpld_control_p8_intelllvm' [12:32, 09:34](3214 MB) + +PASS -- COMPILE 'datm_cdeps_intelllvm' [11:11, 10:00] +PASS -- TEST 'datm_cdeps_control_cfsr_intelllvm' [04:21, 02:31](765 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intelllvm' [08:12, 07:02] +PASS -- TEST 'datm_cdeps_debug_cfsr_intelllvm' [07:23, 05:22](749 MB) SYNOPSIS: -Starting Date/Time: 20250417 12:41:04 -Ending Date/Time: 20250417 16:04:51 -Total Time: 03h:25m:53s +Starting Date/Time: 20250421 11:10:16 +Ending Date/Time: 20250421 13:03:45 +Total Time: 01h:54m:37s Compiles Completed: 51/51 -Tests Completed: 195/197 -Failed Tests: -* TEST cpld_control_p8_lnd_intel: FAILED: TEST TIMED OUT --- LOG: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_229627/cpld_control_p8_lnd_intel/err -* TEST cpld_restart_p8_lnd_intel: FAILED: UNABLE TO START TEST --- LOG: N/A - -NOTES: -A file 'test_changes.list' was generated with list of all failed tests. -You can use './rt.sh -c -b test_changes.list' to create baselines for the failed tests. -If you are using this log as a pull request verification, please commit 'test_changes.list'. - -Result: FAILURE - -====END OF GAEAC5 REGRESSION TESTING LOG==== -====START OF GAEAC5 REGRESSION TESTING LOG==== - -UFSWM hash used in testing: -fd78d43620596eaf208a9d88f4abab6cfbe538c4 - -Submodule hashes used in testing: - d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) - 642e81395472d5887b54f601b60ee607ed39bf09 AQM/src/model/CMAQ (CMAQv5.2.1_07Feb2018-6194-g642e81395) - 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) - 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) - 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) - cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) - 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) - 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) - 11359cb04a420fc87e4cf0f035f4d1215ab24488 FV3/ccpp/framework (2025-01-06-dev-5-g11359cb) - c7479db50d9f01c5e92ed0eaf8618724ec7e0fc6 FV3/ccpp/physics (EP4-1454-gc7479db5) - 74a0e098b2163425e4b5466c2dfcf8ae26d560a5 FV3/ccpp/physics/physics/Radiation/RRTMGP/rte-rrtmgp (v1.6) - 5282f12f3c1e672b5b2512cc23fa3e7e086280aa FV3/upp (upp_v10.2.0-268-g5282f12f) --179cae1dd84401cf25d250bd9102e66560a9d328 FV3/upp/sorc/libIFI.fd --3d35332fe66e3e63a285cc8d96facdf255a33481 FV3/upp/sorc/ncep_post.fd/post_gtg.fd - 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) - bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) - c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) - 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) - 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) - 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) - d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) - 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) - - -NOTES: -[Times](Memory) are at the end of each compile/test in format [MM:SS](Size). -The first time is for the full script (prep+run+finalize). -The second time is specifically for the run phase. -Times/Memory will be empty for failed tests. - -BASELINE DIRECTORY: /gpfs/f5/epic/world-shared/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /gpfs/f5/epic/scratch/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_971604 - -RT.SH OPTIONS USED: -* (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf.timeout -* (-e) - USE ECFLOW - -PASS -- COMPILE 's2swal_intel' [16:11, 14:37] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [12:38, 09:33](3212 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [09:40, 05:56](3143 MB) - -SYNOPSIS: -Starting Date/Time: 20250417 16:13:51 -Ending Date/Time: 20250417 16:53:52 -Total Time: 00h:40m:34s -Compiles Completed: 1/1 -Tests Completed: 2/2 +Tests Completed: 197/197 NOTES: A file 'test_changes.list' was generated but is empty. diff --git a/tests/logs/RegressionTests_gaeac6.log b/tests/logs/RegressionTests_gaeac6.log index 72aaa7536d..ef7821ee22 100644 --- a/tests/logs/RegressionTests_gaeac6.log +++ b/tests/logs/RegressionTests_gaeac6.log @@ -1,7 +1,7 @@ ====START OF GAEAC6 REGRESSION TESTING LOG==== UFSWM hash used in testing: -a96c386a43d7be0056828b13953485eb6fa35c18 +1fb9ffb1453250521c63e4719d73b74cee9772be Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,295 +39,294 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /gpfs/f6/bil-fire8/world-shared/role.epic/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Fernando.Andrade-maldonado/RT_RUNDIRS/Fernando.Andrade-maldonado/FV3_RT/rt_3832015 +COMPARISON DIRECTORY: /gpfs/f6/bil-fire8/proj-shared/Jong.Kim/RT_RUNDIRS/Jong.Kim/FV3_RT/rt_753916 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: bil-fire8 -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [10:11, 08:26] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:58, 04:04](2029 MB) -PASS -- TEST 'cpld_control_gefs_intel' [18:16, 09:29](3048 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [11:16, 03:36](2687 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [21:03, 09:28](3070 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:14, 12:39] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [13:26, 10:10](1918 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:56, 11:05](1955 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [06:55, 05:03](1084 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [14:14, 11:57](1901 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [54:27, 52:36] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [11:28, 10:01](1912 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:11, 03:32] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [17:52, 15:26](1946 MB) - -PASS -- COMPILE 's2swa_intel' [10:11, 08:36] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [08:36, 05:10](2064 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:32, 05:06](2076 MB) -PASS -- TEST 'cpld_restart_p8_intel' [05:08, 02:49](1611 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [08:22, 05:11](2088 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [04:55, 02:49](1449 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [08:14, 06:02](2232 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [07:36, 04:58](2062 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [07:19, 04:09](2018 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [08:16, 05:09](2064 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [09:17, 05:41](2400 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [06:39, 03:29](2666 MB) - -PASS -- COMPILE 's2swal_intel' [15:19, 13:27] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [07:45, 05:08](2060 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:29, 02:49](1620 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [08:13, 05:11](1910 MB) - -PASS -- COMPILE 's2sw_intel' [10:11, 08:09] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [05:14, 03:02](1936 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:26, 04:28](1846 MB) - -PASS -- COMPILE 's2swa_debug_intel' [24:15, 22:58] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [11:15, 08:29](2097 MB) - -PASS -- COMPILE 's2sw_debug_intel' [05:11, 03:21] ( 1427 warnings 1179 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:09, 03:49](1966 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [08:11, 06:23] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:13, 03:10](1980 MB) - -PASS -- COMPILE 's2s_intel' [08:12, 06:31] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [06:43, 04:09](2853 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [03:56, 01:15](2870 MB) -PASS -- TEST 'cpld_restart_c48_intel' [03:02, 00:44](2291 MB) - -PASS -- COMPILE 's2swa_faster_intel' [11:13, 09:31] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [06:56, 04:59](2056 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:13, 12:35] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [11:52, 10:08](1933 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:12, 05:04](1112 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:00, 11:52](1915 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:29] ( 1537 warnings 1917 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [19:10, 17:00](1958 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [08:12, 06:12] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [04:20, 02:30](530 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [03:32, 01:34](1430 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:32, 01:39](1434 MB) -PASS -- TEST 'control_latlon_intel' [03:32, 01:38](1430 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:18, 01:38](1429 MB) -PASS -- TEST 'control_c48_intel' [06:32, 04:35](1563 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [06:21, 04:15](682 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [06:35, 04:35](1562 MB) -PASS -- TEST 'control_c192_intel' [06:40, 04:43](1683 MB) -PASS -- TEST 'control_c384_intel' [11:50, 09:27](1965 MB) -PASS -- TEST 'control_c384gdas_intel' [13:16, 09:56](1172 MB) -PASS -- TEST 'control_stochy_intel' [03:25, 01:10](485 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:20, 00:40](288 MB) -PASS -- TEST 'control_lndp_intel' [03:20, 01:07](485 MB) -PASS -- TEST 'control_iovr4_intel' [03:23, 01:41](485 MB) -PASS -- TEST 'control_iovr5_intel' [03:22, 01:41](483 MB) -PASS -- TEST 'control_p8_intel' [03:41, 01:53](1722 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [03:39, 02:06](1718 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [03:41, 01:53](1720 MB) -PASS -- TEST 'control_restart_p8_intel' [03:40, 01:08](874 MB) -PASS -- TEST 'control_noqr_p8_intel' [03:52, 01:53](1712 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [03:52, 01:09](878 MB) -PASS -- TEST 'control_decomp_p8_intel' [03:56, 01:55](1713 MB) -PASS -- TEST 'control_2threads_p8_intel' [03:50, 02:07](1809 MB) -PASS -- TEST 'control_p8_lndp_intel' [05:31, 03:12](1720 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [05:02, 02:37](1775 MB) -PASS -- TEST 'control_p8_mynn_intel' [03:45, 02:01](1738 MB) -PASS -- TEST 'merra2_thompson_intel' [05:15, 02:13](1718 MB) -PASS -- TEST 'regional_control_intel' [05:25, 03:19](868 MB) -PASS -- TEST 'regional_restart_intel' [03:23, 01:48](887 MB) -PASS -- TEST 'regional_decomp_intel' [05:35, 03:27](869 MB) -PASS -- TEST 'regional_2threads_intel' [04:32, 02:34](1002 MB) -PASS -- TEST 'regional_noquilt_intel' [05:30, 03:16](1173 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [05:58, 03:19](868 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [05:28, 03:15](865 MB) -PASS -- TEST 'regional_wofs_intel' [06:28, 04:22](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [07:11, 06:07] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [06:34, 04:44](875 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:51, 02:48](1214 MB) -PASS -- TEST 'rap_decomp_intel' [06:43, 04:58](872 MB) -PASS -- TEST 'rap_2threads_intel' [07:45, 05:45](948 MB) -PASS -- TEST 'rap_restart_intel' [04:30, 02:32](743 MB) -PASS -- TEST 'rap_sfcdiff_intel' [06:48, 04:43](876 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:30, 04:55](871 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [05:51, 03:32](741 MB) -PASS -- TEST 'hrrr_control_intel' [04:45, 02:31](867 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [04:42, 02:34](866 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [04:35, 02:54](936 MB) -PASS -- TEST 'hrrr_control_restart_intel' [03:30, 01:23](699 MB) -PASS -- TEST 'rrfs_v1beta_intel' [06:37, 04:39](868 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [07:28, 06:04](1821 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:31, 05:52](1815 MB) - -PASS -- COMPILE 'csawmg_intel' [07:13, 05:36] -PASS -- TEST 'control_csawmg_intel' [05:36, 04:08](825 MB) -PASS -- TEST 'control_ras_intel' [04:21, 02:14](527 MB) - -PASS -- COMPILE 'wam_intel' [07:12, 05:17] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [09:44, 07:31](1520 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [07:12, 05:42] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [04:02, 01:55](1728 MB) -PASS -- TEST 'regional_control_faster_intel' [05:39, 03:14](866 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [05:11, 03:37] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:43, 01:36](1455 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:26, 01:36](1453 MB) -PASS -- TEST 'control_stochy_debug_intel' [03:21, 02:04](659 MB) -PASS -- TEST 'control_lndp_debug_intel' [03:18, 01:51](657 MB) -PASS -- TEST 'control_csawmg_debug_intel' [04:26, 02:53](962 MB) -PASS -- TEST 'control_ras_debug_intel' [03:19, 01:52](670 MB) -PASS -- TEST 'control_diag_debug_intel' [03:28, 01:50](1511 MB) -PASS -- TEST 'control_debug_p8_intel' [03:36, 01:47](1752 MB) -PASS -- TEST 'regional_debug_intel' [13:34, 11:26](906 MB) -PASS -- TEST 'rap_control_debug_intel' [05:21, 03:26](1042 MB) -PASS -- TEST 'hrrr_control_debug_intel' [05:27, 03:21](1040 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [05:21, 03:21](1042 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [05:27, 03:26](1043 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:29, 03:23](1041 MB) -PASS -- TEST 'rap_diag_debug_intel' [05:29, 03:31](1124 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:25, 03:27](1046 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:21, 03:22](1041 MB) -PASS -- TEST 'rap_lndp_debug_intel' [05:19, 03:26](1044 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:26](1046 MB) -PASS -- TEST 'rap_noah_debug_intel' [05:19, 03:22](1042 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [05:17, 03:27](1040 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:23, 05:20](1044 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [05:20, 03:27](1035 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [05:22, 03:26](1044 MB) -PASS -- TEST 'rap_flake_debug_intel' [05:28, 03:24](1041 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:47, 05:45](1050 MB) - -PASS -- COMPILE 'wam_debug_intel' [04:11, 02:10] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [10:28, 08:33](1538 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:11, 05:30] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:51, 02:41](1066 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:44, 03:58](751 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:53, 02:10](750 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:42, 04:54](795 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:41, 02:32](784 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:48, 02:17](744 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [04:34, 02:58](641 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:30, 01:11](625 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:11, 05:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:48, 01:21](969 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:22, 00:43](1104 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [02:26, 00:50](874 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:12, 05:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:25, 02:45](785 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:11, 02:16] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:23, 03:17](923 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [04:25, 03:08](923 MB) -PASS -- TEST 'conus13km_debug_intel' [10:42, 08:46](1011 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [10:40, 08:57](706 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [09:30, 07:53](1153 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:31, 08:55](1080 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:08] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:24, 03:19](959 MB) - -PASS -- COMPILE 'hafsw_intel' [09:12, 07:45] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [05:50, 03:33](835 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [04:22, 02:21](1065 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [06:59, 04:45](894 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [09:52, 07:55](935 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [11:01, 08:33](938 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:43, 03:27](482 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:47, 04:18](480 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [03:40, 01:43](392 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [10:28, 04:33](447 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:30, 02:29](497 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:31, 02:18](498 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:34, 02:55](581 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:59](426 MB) -PASS -- TEST 'gnv1_nested_intel' [05:23, 02:45](1690 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [04:11, 02:22] ( 1479 warnings 1451 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:32, 08:12](594 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [09:11, 07:36] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:38, 04:57](625 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:42, 04:59](791 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 07:42] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [07:02, 03:46](792 MB) - -PASS -- COMPILE 'hafs_all_intel' [16:17, 14:58] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [06:54, 04:16](894 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:56, 04:16](876 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:51, 10:54](893 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [06:11, 04:45] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:19, 01:44](765 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:22, 01:02](753 MB) +PASS -- COMPILE 's2swa_32bit_intel' [17:14, 15:30] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [05:29, 04:04](2024 MB) +PASS -- TEST 'cpld_control_gefs_intel' [15:44, 09:40](3060 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [09:40, 03:45](2678 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [14:55, 09:39](3070 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:10, 12:45] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [12:26, 10:13](1915 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [12:26, 11:04](1942 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [07:24, 05:00](1071 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [13:25, 12:02](1907 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:10, 12:53] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [12:20, 10:07](1919 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [05:10, 03:45] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [17:48, 15:37](1951 MB) + +PASS -- COMPILE 's2swa_intel' [10:10, 08:48] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [07:32, 05:06](2067 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [07:33, 05:05](2067 MB) +PASS -- TEST 'cpld_restart_p8_intel' [04:30, 02:47](1610 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [07:31, 05:05](2082 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [04:32, 02:51](1452 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [07:29, 05:57](2225 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [07:29, 04:55](2053 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [05:28, 04:05](2018 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [07:31, 05:04](2061 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [08:45, 05:41](2399 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [05:41, 03:33](2661 MB) + +PASS -- COMPILE 's2swal_intel' [11:10, 09:17] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [09:27, 05:09](2072 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [05:26, 02:49](1621 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [07:24, 05:08](1918 MB) + +PASS -- COMPILE 's2sw_intel' [20:14, 18:22] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [06:26, 03:00](1928 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [07:28, 04:27](1849 MB) + +PASS -- COMPILE 's2swa_debug_intel' [05:10, 03:36] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [10:37, 08:15](2092 MB) + +PASS -- COMPILE 's2sw_debug_intel' [27:11, 25:57] ( 1427 warnings 1179 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [06:24, 03:52](1952 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [08:10, 06:38] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [06:24, 03:10](1981 MB) + +PASS -- COMPILE 's2s_intel' [08:10, 07:01] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [06:20, 04:10](2862 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [03:20, 01:15](2865 MB) +PASS -- TEST 'cpld_restart_c48_intel' [02:19, 00:44](2282 MB) + +PASS -- COMPILE 's2swa_faster_intel' [10:11, 08:51] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [06:30, 04:59](2059 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:11, 12:17] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [12:29, 10:08](1925 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [07:29, 05:05](1100 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [14:28, 11:57](1913 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [05:11, 03:21] ( 1537 warnings 1917 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [18:27, 17:02](1953 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [08:11, 06:22] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [04:18, 02:31](529 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [03:29, 01:33](1421 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [03:31, 01:39](1433 MB) +PASS -- TEST 'control_latlon_intel' [03:26, 01:36](1439 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [03:29, 01:38](1438 MB) +PASS -- TEST 'control_c48_intel' [06:25, 04:34](1560 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [06:17, 04:18](686 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [06:23, 04:34](1561 MB) +PASS -- TEST 'control_c192_intel' [07:27, 04:45](1695 MB) +PASS -- TEST 'control_c384_intel' [12:37, 09:27](1953 MB) +PASS -- TEST 'control_c384gdas_intel' [12:49, 10:01](1174 MB) +PASS -- TEST 'control_stochy_intel' [03:22, 01:09](485 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:19, 00:40](284 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:06](486 MB) +PASS -- TEST 'control_iovr4_intel' [03:25, 01:41](481 MB) +PASS -- TEST 'control_iovr5_intel' [03:25, 01:41](482 MB) +PASS -- TEST 'control_p8_intel' [03:33, 01:52](1730 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [04:33, 01:59](1717 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:27, 01:52](1718 MB) +PASS -- TEST 'control_restart_p8_intel' [03:22, 01:08](870 MB) +PASS -- TEST 'control_noqr_p8_intel' [03:33, 01:51](1713 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:22, 01:06](877 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:19, 01:55](1716 MB) +PASS -- TEST 'control_2threads_p8_intel' [04:19, 02:12](1792 MB) +PASS -- TEST 'control_p8_lndp_intel' [05:18, 03:21](1724 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [04:22, 02:43](1779 MB) +PASS -- TEST 'control_p8_mynn_intel' [03:23, 02:03](1729 MB) +PASS -- TEST 'merra2_thompson_intel' [04:22, 02:14](1733 MB) +PASS -- TEST 'regional_control_intel' [05:19, 03:16](867 MB) +PASS -- TEST 'regional_restart_intel' [03:20, 01:47](884 MB) +PASS -- TEST 'regional_decomp_intel' [05:20, 03:29](872 MB) +PASS -- TEST 'regional_2threads_intel' [04:20, 02:34](1007 MB) +PASS -- TEST 'regional_noquilt_intel' [05:20, 03:16](1173 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [05:21, 03:18](865 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [05:17, 03:17](869 MB) +PASS -- TEST 'regional_wofs_intel' [06:17, 04:22](1598 MB) + +PASS -- COMPILE 'rrfs_intel' [07:10, 06:00] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [06:19, 04:48](876 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [04:29, 02:48](1214 MB) +PASS -- TEST 'rap_decomp_intel' [06:20, 05:03](872 MB) +PASS -- TEST 'rap_2threads_intel' [07:18, 05:43](948 MB) +PASS -- TEST 'rap_restart_intel' [04:20, 02:30](740 MB) +PASS -- TEST 'rap_sfcdiff_intel' [06:21, 04:44](872 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [06:19, 04:54](872 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [05:21, 03:32](736 MB) +PASS -- TEST 'hrrr_control_intel' [04:18, 02:28](870 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [04:18, 02:34](873 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [04:18, 02:54](939 MB) +PASS -- TEST 'hrrr_control_restart_intel' [03:16, 01:21](697 MB) +PASS -- TEST 'rrfs_v1beta_intel' [06:18, 04:51](869 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [07:14, 06:03](1825 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [07:14, 05:56](1815 MB) + +PASS -- COMPILE 'csawmg_intel' [07:11, 05:37] +PASS -- TEST 'control_csawmg_intel' [06:16, 04:07](824 MB) +PASS -- TEST 'control_ras_intel' [04:14, 02:10](526 MB) + +PASS -- COMPILE 'wam_intel' [07:11, 05:37] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [10:22, 07:24](1520 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [07:10, 05:46] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:21, 01:54](1729 MB) +PASS -- TEST 'regional_control_faster_intel' [05:17, 03:08](865 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [28:11, 26:35] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [03:26, 01:33](1455 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:30, 01:37](1462 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:17, 02:04](663 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:17, 01:52](664 MB) +PASS -- TEST 'control_csawmg_debug_intel' [05:24, 02:52](965 MB) +PASS -- TEST 'control_ras_debug_intel' [04:17, 01:52](666 MB) +PASS -- TEST 'control_diag_debug_intel' [04:26, 01:51](1514 MB) +PASS -- TEST 'control_debug_p8_intel' [04:25, 01:47](1749 MB) +PASS -- TEST 'regional_debug_intel' [13:25, 11:17](907 MB) +PASS -- TEST 'rap_control_debug_intel' [05:18, 03:25](1043 MB) +PASS -- TEST 'hrrr_control_debug_intel' [05:19, 03:19](1041 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [05:19, 03:22](1043 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [05:18, 03:20](1048 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [05:18, 03:21](1043 MB) +PASS -- TEST 'rap_diag_debug_intel' [05:20, 03:34](1128 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [05:18, 03:28](1046 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [05:18, 03:25](1047 MB) +PASS -- TEST 'rap_lndp_debug_intel' [05:18, 03:20](1047 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [05:17, 03:23](1044 MB) +PASS -- TEST 'rap_noah_debug_intel' [05:16, 03:16](1044 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [05:15, 03:23](1043 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [07:15, 05:21](1042 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [05:15, 03:17](1042 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [05:15, 03:22](1043 MB) +PASS -- TEST 'rap_flake_debug_intel' [05:15, 03:23](1045 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [07:20, 05:49](1052 MB) + +PASS -- COMPILE 'wam_debug_intel' [04:10, 02:12] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [10:20, 08:39](1543 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [07:10, 05:31] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [04:29, 02:40](1066 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [05:19, 04:00](750 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [04:18, 02:10](752 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [06:18, 04:52](794 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [04:18, 02:32](790 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [04:20, 02:16](746 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [05:20, 02:59](641 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:15, 01:11](626 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [07:10, 05:38] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [03:24, 01:21](968 MB) +PASS -- TEST 'conus13km_2threads_intel' [02:19, 00:42](1103 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [02:19, 00:49](875 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [07:10, 05:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [04:19, 02:44](785 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [04:10, 02:19] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [05:15, 03:14](926 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [05:14, 03:10](919 MB) +PASS -- TEST 'conus13km_debug_intel' [10:22, 08:45](1008 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [10:24, 08:56](704 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [09:20, 07:51](1146 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [10:19, 08:53](1081 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [04:10, 02:09] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [05:15, 03:13](963 MB) + +PASS -- COMPILE 'hafsw_intel' [09:10, 07:48] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [05:43, 03:32](838 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [05:19, 02:20](1066 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [07:47, 04:43](895 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [10:45, 07:41](937 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [10:48, 08:11](938 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [05:32, 03:25](478 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [06:47, 04:17](482 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [03:26, 01:42](396 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [07:01, 04:31](458 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [04:27, 02:28](497 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [04:27, 02:19](501 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [04:29, 02:55](576 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [02:20, 00:57](429 MB) +PASS -- TEST 'gnv1_nested_intel' [04:44, 02:46](1704 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [24:11, 22:43] ( 1479 warnings 1451 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [10:31, 08:18](590 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [10:11, 08:15] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [06:34, 04:55](626 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [06:34, 04:59](794 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [09:12, 08:07] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [05:45, 03:46](789 MB) + +PASS -- COMPILE 'hafs_all_intel' [10:12, 08:20] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [06:44, 04:17](889 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [06:43, 04:21](878 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [12:35, 10:57](892 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [06:10, 04:51] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [03:14, 01:44](752 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [02:14, 01:03](751 MB) PASS -- TEST 'datm_cdeps_control_gefs_intel' [03:14, 01:38](644 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:17, 01:38](641 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:18, 01:39](646 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 01:42](765 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:15, 01:43](751 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:15, 01:36](645 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:41, 04:10](706 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [05:34, 04:07](685 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:16, 01:44](752 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:20, 02:45](2030 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [04:16, 02:46](2036 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [03:14, 01:42](645 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [03:14, 01:40](639 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [03:14, 01:43](764 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [03:14, 01:44](765 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [03:14, 01:35](652 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [06:29, 04:10](705 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [06:27, 04:12](683 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [03:13, 01:43](765 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [04:14, 02:46](2030 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [04:14, 02:47](2029 MB) -PASS -- COMPILE 'datm_cdeps_debug_intel' [04:11, 02:40] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:16, 03:45](748 MB) +PASS -- COMPILE 'datm_cdeps_debug_intel' [19:11, 17:21] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [05:14, 03:48](748 MB) -PASS -- COMPILE 'datm_cdeps_faster_intel' [39:16, 37:52] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:18, 01:44](765 MB) +PASS -- COMPILE 'datm_cdeps_faster_intel' [06:10, 05:03] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [03:14, 01:43](765 MB) -PASS -- COMPILE 'datm_cdeps_land_intel' [02:11, 00:39] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:24, 00:56](324 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:21, 00:42](461 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:33](461 MB) +PASS -- COMPILE 'datm_cdeps_land_intel' [02:10, 00:41] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:22, 01:07](325 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:19, 00:46](461 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:19, 00:34](461 MB) -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:12, 06:06] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:42, 02:23](1795 MB) +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [07:10, 06:06] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [04:24, 02:25](1795 MB) -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 06:02] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [05:25, 03:09](1776 MB) +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [07:11, 05:38] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [04:24, 03:07](1773 MB) -PASS -- COMPILE 'atml_intel' [08:11, 06:26] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [04:29, 02:27](1889 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:22, 01:27](1039 MB) +PASS -- COMPILE 'atml_intel' [08:10, 06:12] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [04:25, 02:36](1889 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:24, 01:31](1039 MB) -PASS -- COMPILE 'atml_debug_intel' [04:11, 02:45] ( 889 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:29, 03:22](1912 MB) +PASS -- COMPILE 'atml_debug_intel' [04:11, 02:53] ( 889 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [05:27, 03:21](1919 MB) -PASS -- COMPILE 'atmw_intel' [09:11, 07:26] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:27, 01:15](1758 MB) +PASS -- COMPILE 'atmw_intel' [09:10, 07:33] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:22, 01:17](1761 MB) -PASS -- COMPILE 'atmaero_intel' [07:11, 05:51] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [04:28, 02:45](1947 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [05:49, 03:13](1604 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:33, 03:18](1622 MB) +PASS -- COMPILE 'atmaero_intel' [07:10, 05:46] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [04:24, 02:46](1958 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [05:29, 03:13](1604 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [05:25, 03:15](1620 MB) -PASS -- COMPILE 'atmaq_intel' [07:11, 05:23] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [14:50, 12:17](2983 MB) +PASS -- COMPILE 'atmaq_intel' [07:10, 05:41] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [14:34, 12:13](2982 MB) -PASS -- COMPILE 'atmaq_debug_intel' [04:11, 02:18] ( 864 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [28:02, 25:40](2997 MB) +PASS -- COMPILE 'atmaq_debug_intel' [04:10, 02:14] ( 864 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [27:46, 25:39](2992 MB) -PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:47] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [07:27, 05:59](795 MB) +PASS -- COMPILE 'atm_fbh_intel' [07:11, 05:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [08:20, 05:59](792 MB) SYNOPSIS: -Starting Date/Time: 20250417 12:40:58 -Ending Date/Time: 20250417 14:49:24 -Total Time: 02h:08m:59s +Starting Date/Time: 20250420 09:50:38 +Ending Date/Time: 20250420 11:35:03 +Total Time: 01h:44m:48s Compiles Completed: 44/44 Tests Completed: 190/190 diff --git a/tests/logs/RegressionTests_hera.log b/tests/logs/RegressionTests_hera.log index 22911fc8b2..93a7eda59d 100644 --- a/tests/logs/RegressionTests_hera.log +++ b/tests/logs/RegressionTests_hera.log @@ -1,23 +1,23 @@ ====START OF HERA REGRESSION TESTING LOG==== UFSWM hash used in testing: -a96c386a43d7be0056828b13953485eb6fa35c18 +1fb9ffb1453250521c63e4719d73b74cee9772be Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 041422934cae1570f2f0e67239d5d89f11c6e1b7 GOCART (sdr_v2.1.2.6-119-g0414229) bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -27,396 +27,395 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /scratch2/NAGAPE/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Fernando.Andrade-maldonado/FV3_RT/rt_3808069 +COMPARISON DIRECTORY: /scratch1/NCEPDEV/stmp2/Jong.Kim/FV3_RT/rt_234364 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic -* (-l) - USE CONFIG FILE: rt.conf * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [15:13, 13:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [11:57, 08:16](3301 MB) -PASS -- TEST 'cpld_control_gefs_intel' [34:20, 16:24](4347 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [22:55, 05:32](4208 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [34:22, 16:27](4352 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [20:14, 17:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [22:15, 20:00](1989 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:21, 20:38](2140 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [11:13, 08:10](1261 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:17, 23:36](1877 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [20:13, 17:56] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [21:53, 19:44](1954 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [09:13, 06:53] ( 1537 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [26:07, 23:55](1915 MB) - -PASS -- COMPILE 's2swa_intel' [15:13, 12:51] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:47, 09:51](3371 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:11, 08:58](3357 MB) -PASS -- TEST 'cpld_restart_p8_intel' [09:29, 05:17](3273 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:59, 09:03](3372 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [09:57, 05:06](3302 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [12:33, 09:14](3539 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:46, 08:58](3354 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:30, 07:36](3221 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:09, 09:04](3365 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [14:41, 10:55](3501 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [11:48, 06:45](3730 MB) - -PASS -- COMPILE 's2swal_intel' [16:13, 13:59] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [12:31, 09:43](3308 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:42, 05:00](3223 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [10:44, 07:44](3347 MB) - -PASS -- COMPILE 's2sw_intel' [14:13, 12:00] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [09:08, 06:27](1990 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:11, 06:37](2087 MB) - -PASS -- COMPILE 's2swa_debug_intel' [08:12, 05:48] ( 1427 warnings 1198 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [16:18, 13:48](3366 MB) - -PASS -- COMPILE 's2sw_debug_intel' [07:12, 05:01] ( 1427 warnings 1198 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:13, 06:45](2007 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [14:13, 11:38] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:25, 04:36](2070 MB) - -PASS -- COMPILE 's2s_intel' [13:12, 11:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [10:55, 08:02](3012 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [04:55, 02:33](3013 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:10, 01:43](2440 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:14, 18:07] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [11:32, 08:50](3367 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [19:13, 18:01] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:12, 17:49](2046 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [13:29, 08:16](1237 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:11, 20:23](1927 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:13, 05:00] ( 1537 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:12, 25:14](1969 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [12:13, 10:43] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [05:38, 03:42](704 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [05:02, 02:49](1587 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [05:06, 02:58](1593 MB) -PASS -- TEST 'control_latlon_intel' [04:54, 02:50](1594 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:04, 02:52](1596 MB) -PASS -- TEST 'control_c48_intel' [10:04, 07:24](1697 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:36, 06:43](826 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [10:03, 07:19](1693 MB) -PASS -- TEST 'control_c192_intel' [10:26, 07:51](1786 MB) -PASS -- TEST 'control_c384_intel' [12:43, 08:57](1966 MB) -PASS -- TEST 'control_c384gdas_intel' [14:00, 08:46](1362 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 01:53](659 MB) -PASS -- TEST 'control_stochy_restart_intel' [02:35, 01:03](490 MB) -PASS -- TEST 'control_lndp_intel' [03:26, 01:41](655 MB) -PASS -- TEST 'control_iovr4_intel' [04:29, 02:56](655 MB) -PASS -- TEST 'control_iovr5_intel' [04:31, 02:46](651 MB) -PASS -- TEST 'control_p8_intel' [07:58, 03:25](1880 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [06:06, 03:11](1878 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [04:53, 03:02](1892 MB) -PASS -- TEST 'control_restart_p8_intel' [04:47, 01:56](1116 MB) -PASS -- TEST 'control_noqr_p8_intel' [04:52, 02:58](1887 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [04:09, 01:49](1149 MB) -PASS -- TEST 'control_decomp_p8_intel' [04:49, 03:01](1871 MB) -PASS -- TEST 'control_2threads_p8_intel' [05:52, 03:27](1977 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:46, 05:10](1895 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [06:56, 04:24](1941 MB) -PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:15](1901 MB) -PASS -- TEST 'merra2_thompson_intel' [06:53, 03:35](1889 MB) -PASS -- TEST 'regional_control_intel' [07:37, 05:36](1105 MB) -PASS -- TEST 'regional_restart_intel' [05:37, 03:02](1128 MB) -PASS -- TEST 'regional_decomp_intel' [07:35, 05:58](1103 MB) -PASS -- TEST 'regional_2threads_intel' [07:36, 04:28](1052 MB) -PASS -- TEST 'regional_noquilt_intel' [08:47, 05:44](1394 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:42, 05:45](1106 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [08:38, 05:42](1103 MB) -PASS -- TEST 'regional_wofs_intel' [09:38, 07:23](1924 MB) - -PASS -- COMPILE 'rrfs_intel' [12:11, 10:27] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [10:49, 08:05](1091 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [08:12, 04:33](1308 MB) -PASS -- TEST 'rap_decomp_intel' [10:34, 08:30](1033 MB) -PASS -- TEST 'rap_2threads_intel' [11:36, 09:08](1116 MB) -PASS -- TEST 'rap_restart_intel' [07:45, 04:10](1096 MB) -PASS -- TEST 'rap_sfcdiff_intel' [10:43, 08:22](1089 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:40, 08:32](1042 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [09:44, 06:03](1123 MB) -PASS -- TEST 'hrrr_control_intel' [05:45, 04:08](1043 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [06:39, 04:24](1043 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [06:36, 04:40](1110 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:34, 02:17](998 MB) -PASS -- TEST 'rrfs_v1beta_intel' [09:56, 08:02](1084 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:30, 09:44](1994 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:27](2045 MB) - -PASS -- COMPILE 'csawmg_intel' [11:12, 10:02] -PASS -- TEST 'control_csawmg_intel' [08:42, 06:20](1031 MB) -PASS -- TEST 'control_ras_intel' [05:27, 03:23](752 MB) - -PASS -- COMPILE 'wam_intel' [11:12, 09:46] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [13:48, 11:27](1672 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [12:13, 10:22] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [05:01, 02:56](1880 MB) -PASS -- TEST 'regional_control_faster_intel' [07:35, 05:10](1102 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [08:11, 06:27] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:41, 02:30](1602 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:47, 02:26](1608 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:24, 03:10](806 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:25, 02:49](808 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:41, 04:35](1125 MB) -PASS -- TEST 'control_ras_debug_intel' [04:24, 02:55](813 MB) -PASS -- TEST 'control_diag_debug_intel' [05:56, 03:05](1661 MB) -PASS -- TEST 'control_debug_p8_intel' [05:48, 02:50](1890 MB) -PASS -- TEST 'regional_debug_intel' [20:46, 17:47](1096 MB) -PASS -- TEST 'rap_control_debug_intel' [07:28, 05:01](1203 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:31, 05:04](1198 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [08:27, 05:08](1202 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [08:24, 05:19](1194 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [08:24, 05:13](1201 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:40, 05:23](1285 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [08:25, 05:12](1202 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:18](1198 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:25, 05:30](1201 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:27, 05:05](1204 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:24, 05:08](1204 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:24, 05:13](1203 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:21](1211 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [06:26, 05:02](1194 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:25, 05:17](1201 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:22, 05:09](1199 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [10:52, 08:49](1208 MB) - -PASS -- COMPILE 'atm_debug_dyn32_gnu' [06:11, 04:33] -PASS -- TEST 'control_csawmg_debug_gnu' [06:40, 02:23](710 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:11, 04:06] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [15:54, 13:57](1680 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:11, 10:05] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:07, 04:04](1167 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:38, 06:39](1036 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [07:36, 03:30](975 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:36, 07:29](974 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:43, 03:52](958 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:30, 03:38](919 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:42, 05:01](1019 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 01:54](914 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [12:12, 10:42] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [03:51, 02:07](1231 MB) -PASS -- TEST 'conus13km_2threads_intel' [03:38, 01:13](1206 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:45, 01:14](1117 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:46] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:39, 04:19](1002 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [06:11, 04:26] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:22, 04:57](1078 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:56](1079 MB) -PASS -- TEST 'conus13km_debug_intel' [16:49, 14:13](1235 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [16:48, 14:27](938 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [14:40, 12:28](1210 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:45, 14:14](1299 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:11, 04:01] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:23, 05:00](1160 MB) - -PASS -- COMPILE 'hafsw_intel' [13:14, 11:17] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:20, 04:53](873 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [08:34, 03:43](1121 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:26, 07:01](944 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [17:28, 14:31](981 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [24:31, 19:01](1000 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [07:59, 05:35](484 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [12:21, 06:49](503 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:42, 02:46](352 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:12, 07:13](458 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [06:45, 03:39](507 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:46, 03:32](510 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:50, 04:03](564 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:28, 01:11](389 MB) -PASS -- TEST 'gnv1_nested_intel' [08:34, 04:08](1744 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [06:11, 04:00] ( 1479 warnings 1471 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [18:52, 13:01](595 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [14:12, 11:33] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [17:03, 10:29](605 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [20:03, 10:27](684 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [14:12, 11:52] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [18:28, 08:12](665 MB) - -PASS -- COMPILE 'hafs_all_intel' [12:11, 11:00] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [16:23, 06:44](951 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [15:21, 06:47](929 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:58, 16:20](1214 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [09:11, 07:11] -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:55](1163 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 01:46](1109 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:19, 02:44](1034 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [06:18, 02:48](1031 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [06:18, 02:46](1024 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [06:19, 02:50](1171 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [06:19, 02:47](1162 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [07:20, 02:46](1032 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [12:23, 06:26](1075 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [12:16, 06:32](1045 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:15, 02:53](1164 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [08:19, 03:58](2465 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:03](2516 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:19] ( 4 warnings ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [09:18, 06:22](1069 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [08:12, 07:07] -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:48](1151 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:09] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [02:30, 00:46](265 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:27, 00:45](326 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](331 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:23] -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:34, 00:35](570 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:33, 00:19](448 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:12, 10:33] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:03, 03:45](1999 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:12, 09:44] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [06:59, 04:54](2006 MB) - -PASS -- COMPILE 'atml_intel' [12:11, 10:28] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [05:59, 03:15](1844 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [04:48, 01:48](1087 MB) - -PASS -- COMPILE 'atml_debug_intel' [07:11, 05:21] ( 889 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:54, 05:07](1860 MB) - -PASS -- COMPILE 'atmw_intel' [12:11, 10:45] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:47, 02:02](1919 MB) - -PASS -- COMPILE 'atmaero_intel' [12:12, 10:30] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [06:56, 04:15](3177 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 05:03](3088 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:45, 05:05](3087 MB) - -PASS -- COMPILE 'atmaq_intel' [11:12, 10:00] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [18:46, 15:56](2907 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:26] ( 864 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [43:46, 40:29](2916 MB) - -PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:35] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [14:31, 12:12](1076 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [09:11, 07:13] -PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:38, 08:36](1036 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:43] -PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:45, 05:08](1003 MB) +PASS -- COMPILE 's2swa_32bit_intel' [14:12, 12:31] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:18, 07:37](3311 MB) +PASS -- TEST 'cpld_control_gefs_intel' [33:00, 15:15](4359 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [27:06, 05:33](4211 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [32:43, 15:17](4374 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [19:11, 17:11] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [22:12, 19:42](1984 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [23:27, 20:43](2150 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [11:12, 08:09](1255 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [26:15, 23:36](1872 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [19:11, 17:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [21:47, 19:20](1951 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:11, 05:07] ( 1537 warnings 1967 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [26:09, 23:57](1921 MB) + +PASS -- COMPILE 's2swa_intel' [14:11, 12:55] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:21, 09:39](3372 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [11:26, 08:57](3377 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:18, 05:05](3288 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [11:17, 09:06](3380 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:30, 05:34](3291 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [11:14, 09:05](3537 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:14, 09:34](3357 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:16, 07:30](3230 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [11:24, 08:55](3365 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [14:18, 10:22](3505 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [10:53, 06:36](3734 MB) + +PASS -- COMPILE 's2swal_intel' [15:11, 13:18] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [15:16, 10:02](3310 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [08:20, 04:49](3228 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [10:08, 07:39](3347 MB) + +PASS -- COMPILE 's2sw_intel' [14:11, 12:10] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [09:15, 06:18](2002 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:22, 06:23](2076 MB) + +PASS -- COMPILE 's2swa_debug_intel' [06:11, 04:48] ( 1427 warnings 1198 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [17:23, 13:49](3362 MB) + +PASS -- COMPILE 's2sw_debug_intel' [06:11, 04:38] ( 1427 warnings 1198 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [09:06, 06:45](2024 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:12, 10:44] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:02, 04:26](2083 MB) + +PASS -- COMPILE 's2s_intel' [13:12, 11:09] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [09:44, 07:50](3013 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [04:44, 02:27](3016 MB) +PASS -- TEST 'cpld_restart_c48_intel' [03:47, 01:26](2450 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:12, 17:05] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [11:18, 08:28](3372 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [18:13, 16:48] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [20:05, 17:28](2022 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:25, 08:20](1261 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:15, 20:18](1937 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:12, 04:47] ( 1537 warnings 1967 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [27:07, 25:05](1968 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [12:11, 10:33] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [05:23, 03:29](704 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [04:42, 02:30](1595 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:49, 02:39](1590 MB) +PASS -- TEST 'control_latlon_intel' [04:35, 02:36](1594 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [04:43, 02:38](1589 MB) +PASS -- TEST 'control_c48_intel' [09:41, 07:11](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:30, 06:36](820 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:41, 07:15](1702 MB) +PASS -- TEST 'control_c192_intel' [10:02, 07:38](1789 MB) +PASS -- TEST 'control_c384_intel' [14:11, 08:35](1968 MB) +PASS -- TEST 'control_c384gdas_intel' [14:34, 08:34](1360 MB) +PASS -- TEST 'control_stochy_intel' [03:25, 01:43](649 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:30, 01:04](501 MB) +PASS -- TEST 'control_lndp_intel' [03:22, 01:38](656 MB) +PASS -- TEST 'control_iovr4_intel' [04:23, 02:34](653 MB) +PASS -- TEST 'control_iovr5_intel' [04:27, 02:35](648 MB) +PASS -- TEST 'control_p8_intel' [04:57, 03:02](1881 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:01, 03:13](1873 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [04:50, 02:56](1896 MB) +PASS -- TEST 'control_restart_p8_intel' [03:47, 01:44](1120 MB) +PASS -- TEST 'control_noqr_p8_intel' [04:48, 03:00](1892 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [03:59, 01:43](1123 MB) +PASS -- TEST 'control_decomp_p8_intel' [04:50, 03:02](1877 MB) +PASS -- TEST 'control_2threads_p8_intel' [05:44, 03:19](1970 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:41, 05:12](1898 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [06:49, 04:17](1954 MB) +PASS -- TEST 'control_p8_mynn_intel' [05:52, 03:15](1899 MB) +PASS -- TEST 'merra2_thompson_intel' [05:48, 03:31](1896 MB) +PASS -- TEST 'regional_control_intel' [07:36, 05:36](1107 MB) +PASS -- TEST 'regional_restart_intel' [05:40, 03:13](1136 MB) +PASS -- TEST 'regional_decomp_intel' [07:35, 05:50](1097 MB) +PASS -- TEST 'regional_2threads_intel' [06:34, 04:04](1068 MB) +PASS -- TEST 'regional_noquilt_intel' [07:36, 05:34](1395 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:37, 05:40](1096 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:34, 05:34](1105 MB) +PASS -- TEST 'regional_wofs_intel' [09:35, 07:16](1923 MB) + +PASS -- COMPILE 'rrfs_intel' [11:11, 09:55] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [09:45, 08:02](1088 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:04, 04:23](1296 MB) +PASS -- TEST 'rap_decomp_intel' [10:38, 08:19](1043 MB) +PASS -- TEST 'rap_2threads_intel' [10:38, 08:54](1109 MB) +PASS -- TEST 'rap_restart_intel' [06:57, 04:11](1091 MB) +PASS -- TEST 'rap_sfcdiff_intel' [09:44, 07:59](1098 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [10:43, 08:23](1045 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [07:52, 06:01](1116 MB) +PASS -- TEST 'hrrr_control_intel' [06:42, 04:08](1047 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [06:42, 04:28](1036 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [06:42, 04:25](1109 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:35, 02:14](998 MB) +PASS -- TEST 'rrfs_v1beta_intel' [09:50, 07:55](1089 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:25, 09:51](1991 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:26, 09:18](2052 MB) + +PASS -- COMPILE 'csawmg_intel' [11:11, 09:19] +PASS -- TEST 'control_csawmg_intel' [08:38, 06:19](1038 MB) +PASS -- TEST 'control_ras_intel' [05:23, 03:23](741 MB) + +PASS -- COMPILE 'wam_intel' [11:11, 09:28] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [13:49, 11:30](1665 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [11:12, 09:33] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [04:56, 02:50](1895 MB) +PASS -- TEST 'regional_control_faster_intel' [07:34, 05:11](1115 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [07:11, 05:23] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:17](1598 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:43, 02:25](1603 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:21, 03:09](816 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:49](807 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:35, 04:24](1126 MB) +PASS -- TEST 'control_ras_debug_intel' [04:25, 02:57](822 MB) +PASS -- TEST 'control_diag_debug_intel' [04:53, 02:51](1656 MB) +PASS -- TEST 'control_debug_p8_intel' [04:47, 02:49](1901 MB) +PASS -- TEST 'regional_debug_intel' [19:42, 17:54](1109 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 05:09](1211 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:30, 04:56](1202 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:23, 05:02](1208 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:21, 05:11](1202 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:22, 05:12](1199 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:35, 05:31](1283 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:21, 05:23](1201 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:25, 05:24](1202 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:05](1196 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:26, 05:15](1196 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:26, 05:12](1203 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:06](1205 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:22, 08:25](1207 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [06:23, 05:06](1195 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [06:23, 05:06](1204 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:21, 05:05](1199 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:38, 08:54](1209 MB) + +PASS -- COMPILE 'atm_debug_dyn32_gnu' [05:11, 03:58] +PASS -- TEST 'control_csawmg_debug_gnu' [04:39, 02:22](707 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:11, 03:41] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:48, 14:02](1673 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [11:10, 09:36] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [08:00, 04:00](1161 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:35, 06:39](1042 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:37, 03:32](977 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [10:35, 07:35](975 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [06:33, 03:57](964 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [06:33, 03:50](917 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [06:40, 05:02](1023 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:27, 02:00](912 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [11:10, 09:29] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:55, 02:10](1227 MB) +PASS -- TEST 'conus13km_2threads_intel' [03:39, 01:05](1204 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [03:40, 01:17](1121 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [11:11, 09:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:42, 04:18](1000 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:10, 03:32] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:22, 04:59](1085 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:22, 04:54](1084 MB) +PASS -- TEST 'conus13km_debug_intel' [16:47, 13:49](1229 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [16:52, 14:21](948 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [15:44, 12:35](1209 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [16:44, 14:07](1304 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:10, 03:21] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:26, 05:02](1165 MB) + +PASS -- COMPILE 'hafsw_intel' [13:11, 11:18] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [07:23, 04:57](867 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:32, 03:47](1127 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:33, 06:57](945 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [18:21, 14:42](990 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [21:36, 18:30](1001 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [08:09, 05:47](483 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [09:27, 06:54](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [05:43, 02:51](355 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [11:05, 07:22](453 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [05:49, 03:46](510 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [05:55, 03:35](506 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [06:56, 04:07](564 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [03:27, 01:13](387 MB) +PASS -- TEST 'gnv1_nested_intel' [07:50, 04:05](1744 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:10, 04:03] ( 1479 warnings 1471 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:55, 13:04](557 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [13:11, 11:18] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [13:04, 10:20](613 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [13:08, 10:33](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [13:11, 11:28] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [11:36, 08:12](658 MB) + +PASS -- COMPILE 'hafs_all_intel' [12:11, 10:25] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:24, 06:37](946 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:23, 06:38](958 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:59, 16:26](1213 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [08:11, 06:54] +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 02:53](1161 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:42](1101 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:46](1031 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:17, 02:45](1026 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:17, 02:47](1035 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:18, 02:51](1152 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:23, 02:49](1140 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:20, 02:43](1024 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:27, 06:33](1085 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:24, 06:40](1052 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:16, 02:51](1153 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [05:20, 04:01](2451 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [05:21, 04:01](2457 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [05:11, 03:27] ( 4 warnings ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:19, 06:20](1080 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [08:10, 06:35] +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:52](1149 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [03:11, 01:18] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:31, 01:26](268 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [03:24, 01:18](326 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:26, 00:30](324 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [03:11, 01:27] +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:35, 00:47](569 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:31, 00:20](467 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [12:11, 10:17] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [06:21, 03:47](1991 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [11:11, 09:59] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [07:14, 04:44](2002 MB) + +PASS -- COMPILE 'atml_intel' [12:11, 10:35] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [06:15, 03:22](1859 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [03:48, 01:51](1090 MB) + +PASS -- COMPILE 'atml_debug_intel' [06:11, 04:53] ( 889 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [08:04, 05:09](1873 MB) + +PASS -- COMPILE 'atmw_intel' [12:11, 10:42] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [03:49, 02:04](1916 MB) + +PASS -- COMPILE 'atmaero_intel' [11:11, 09:35] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [06:55, 04:14](3181 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [06:57, 05:02](3077 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [06:44, 05:02](3093 MB) + +PASS -- COMPILE 'atmaq_intel' [11:11, 09:31] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [18:50, 15:51](2907 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:11, 03:27] ( 864 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [42:33, 39:42](2919 MB) + +PASS -- COMPILE 'atm_fbh_intel' [11:11, 09:14] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [13:30, 11:38](1075 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intelllvm' [08:11, 06:25] +PASS -- TEST 'rap_control_dyn32_phy32_intelllvm' [10:38, 08:32](1037 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intelllvm' [08:11, 06:45] +PASS -- TEST 'rap_control_dyn64_phy32_intelllvm' [06:40, 05:03](1008 MB) PASS -- COMPILE 'atm_gnu' [05:11, 04:00] -PASS -- TEST 'control_c48_gnu' [11:43, 09:40](1498 MB) -PASS -- TEST 'control_stochy_gnu' [05:21, 03:34](491 MB) -PASS -- TEST 'control_ras_gnu' [06:20, 05:03](499 MB) -PASS -- TEST 'control_p8_gnu' [06:52, 04:37](1455 MB) -PASS -- TEST 'control_p8_ugwpv1_gnu' [06:52, 04:34](1440 MB) -PASS -- TEST 'control_flake_gnu' [12:23, 11:02](536 MB) - -PASS -- COMPILE 'rrfs_gnu' [06:11, 03:54] -PASS -- TEST 'rap_control_gnu' [13:39, 11:38](838 MB) -PASS -- TEST 'rap_decomp_gnu' [13:41, 12:02](841 MB) -PASS -- TEST 'rap_2threads_gnu' [26:58, 17:29](908 MB) -PASS -- TEST 'rap_restart_gnu' [07:54, 05:55](564 MB) -PASS -- TEST 'rap_sfcdiff_gnu' [14:33, 11:47](840 MB) -PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:39, 11:54](839 MB) -PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:48, 08:39](569 MB) -PASS -- TEST 'hrrr_control_gnu' [08:40, 06:14](834 MB) -PASS -- TEST 'hrrr_control_noqr_gnu' [08:33, 06:08](825 MB) -PASS -- TEST 'hrrr_control_2threads_gnu' [16:40, 08:46](901 MB) -PASS -- TEST 'hrrr_control_decomp_gnu' [10:37, 06:13](838 MB) -PASS -- TEST 'hrrr_control_restart_gnu' [05:27, 03:09](556 MB) -PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:07](646 MB) -PASS -- TEST 'rrfs_v1beta_gnu' [19:45, 11:28](835 MB) - -PASS -- COMPILE 'csawmg_gnu' [05:10, 03:38] -PASS -- TEST 'control_csawmg_gnu' [16:40, 08:48](742 MB) - -PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:08] -PASS -- TEST 'control_diag_debug_gnu' [09:45, 01:47](1259 MB) -PASS -- TEST 'regional_debug_gnu' [18:36, 11:23](757 MB) -PASS -- TEST 'rap_control_debug_gnu' [09:23, 02:46](841 MB) -PASS -- TEST 'hrrr_control_debug_gnu' [09:22, 02:41](841 MB) -PASS -- TEST 'hrrr_gf_debug_gnu' [09:22, 02:44](840 MB) -PASS -- TEST 'hrrr_c3_debug_gnu' [08:23, 02:42](841 MB) -PASS -- TEST 'rap_diag_debug_gnu' [09:37, 02:57](926 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [09:20, 04:18](837 MB) -PASS -- TEST 'rap_progcld_thompson_debug_gnu' [07:20, 02:45](839 MB) -PASS -- TEST 'rrfs_v1beta_debug_gnu' [07:21, 02:46](835 MB) -PASS -- TEST 'control_ras_debug_gnu' [06:19, 01:45](477 MB) -PASS -- TEST 'control_stochy_debug_gnu' [06:19, 01:52](472 MB) -PASS -- TEST 'control_debug_p8_gnu' [06:38, 01:46](1435 MB) -PASS -- TEST 'rap_flake_debug_gnu' [06:25, 02:44](841 MB) -PASS -- TEST 'rap_clm_lake_debug_gnu' [04:24, 02:43](840 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:46, 04:31](846 MB) - -PASS -- COMPILE 'wam_debug_gnu' [05:10, 02:05] - -PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [07:10, 03:57] -PASS -- TEST 'rap_control_dyn32_phy32_gnu' [11:39, 09:58](697 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:38, 05:19](697 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:35, 15:41](738 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:30, 08:03](732 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:31, 05:29](694 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:47, 07:30](544 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:28, 02:47](530 MB) -PASS -- TEST 'conus13km_control_gnu' [05:59, 03:15](859 MB) -PASS -- TEST 'conus13km_2threads_gnu' [03:57, 01:43](868 MB) -PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:55, 01:56](527 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_gnu' [11:11, 09:09] -PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:40, 06:08](724 MB) - -PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:11, 06:06] -PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:25, 02:34](696 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:26, 02:33](695 MB) -PASS -- TEST 'conus13km_debug_gnu' [08:50, 06:52](861 MB) -PASS -- TEST 'conus13km_debug_qr_gnu' [08:51, 07:03](567 MB) -PASS -- TEST 'conus13km_debug_2threads_gnu' [07:45, 05:50](868 MB) -PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:45, 06:57](928 MB) - -PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:13, 06:17] -PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:27, 02:38](723 MB) - -PASS -- COMPILE 's2swa_gnu' [18:11, 16:16] - -PASS -- COMPILE 's2s_gnu' [17:11, 15:46] -PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:41, 11:18](1506 MB) - -PASS -- COMPILE 's2swa_debug_gnu' [04:10, 02:38] - -PASS -- COMPILE 's2sw_pdlib_gnu' [17:11, 15:54] -PASS -- TEST 'cpld_control_pdlib_p8_gnu' [28:52, 25:21](1454 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_gnu' [06:10, 02:34] - -PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:37] -PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:19, 03:10](707 MB) +PASS -- TEST 'control_c48_gnu' [11:41, 09:37](1497 MB) +PASS -- TEST 'control_stochy_gnu' [05:23, 03:33](494 MB) +PASS -- TEST 'control_ras_gnu' [06:21, 05:01](499 MB) +PASS -- TEST 'control_p8_gnu' [06:55, 04:36](1456 MB) +PASS -- TEST 'control_p8_ugwpv1_gnu' [06:53, 04:27](1457 MB) +PASS -- TEST 'control_flake_gnu' [12:24, 10:59](536 MB) + +PASS -- COMPILE 'rrfs_gnu' [05:10, 04:05] +PASS -- TEST 'rap_control_gnu' [13:50, 11:41](842 MB) +PASS -- TEST 'rap_decomp_gnu' [13:50, 11:50](839 MB) +PASS -- TEST 'rap_2threads_gnu' [19:38, 17:32](906 MB) +PASS -- TEST 'rap_restart_gnu' [07:40, 05:51](570 MB) +PASS -- TEST 'rap_sfcdiff_gnu' [13:40, 11:38](838 MB) +PASS -- TEST 'rap_sfcdiff_decomp_gnu' [13:32, 11:44](842 MB) +PASS -- TEST 'rap_sfcdiff_restart_gnu' [10:41, 08:33](569 MB) +PASS -- TEST 'hrrr_control_gnu' [07:37, 05:54](835 MB) +PASS -- TEST 'hrrr_control_noqr_gnu' [07:36, 06:06](826 MB) +PASS -- TEST 'hrrr_control_2threads_gnu' [10:32, 08:42](898 MB) +PASS -- TEST 'hrrr_control_decomp_gnu' [07:29, 05:56](836 MB) +PASS -- TEST 'hrrr_control_restart_gnu' [04:26, 03:04](557 MB) +PASS -- TEST 'hrrr_control_restart_noqr_gnu' [04:26, 03:02](645 MB) +PASS -- TEST 'rrfs_v1beta_gnu' [13:45, 11:18](836 MB) + +PASS -- COMPILE 'csawmg_gnu' [05:11, 03:29] +PASS -- TEST 'control_csawmg_gnu' [10:32, 08:46](736 MB) + +PASS -- COMPILE 'atm_dyn32_debug_gnu' [08:10, 06:35] +PASS -- TEST 'control_diag_debug_gnu' [03:41, 01:40](1261 MB) +PASS -- TEST 'regional_debug_gnu' [12:36, 10:34](751 MB) +PASS -- TEST 'rap_control_debug_gnu' [04:23, 02:39](842 MB) +PASS -- TEST 'hrrr_control_debug_gnu' [04:23, 02:40](842 MB) +PASS -- TEST 'hrrr_gf_debug_gnu' [04:20, 02:35](844 MB) +PASS -- TEST 'hrrr_c3_debug_gnu' [04:20, 02:43](841 MB) +PASS -- TEST 'rap_diag_debug_gnu' [04:33, 02:53](928 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_gnu' [06:21, 04:11](845 MB) +PASS -- TEST 'rap_progcld_thompson_debug_gnu' [04:20, 02:43](847 MB) +PASS -- TEST 'rrfs_v1beta_debug_gnu' [04:22, 02:39](840 MB) +PASS -- TEST 'control_ras_debug_gnu' [03:21, 01:35](483 MB) +PASS -- TEST 'control_stochy_debug_gnu' [03:20, 01:46](476 MB) +PASS -- TEST 'control_debug_p8_gnu' [03:38, 01:41](1443 MB) +PASS -- TEST 'rap_flake_debug_gnu' [04:24, 02:48](846 MB) +PASS -- TEST 'rap_clm_lake_debug_gnu' [04:26, 02:43](842 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_gnu' [06:45, 04:34](851 MB) + +PASS -- COMPILE 'wam_debug_gnu' [03:10, 02:02] + +PASS -- COMPILE 'rrfs_dyn32_phy32_gnu' [05:10, 03:46] +PASS -- TEST 'rap_control_dyn32_phy32_gnu' [12:40, 10:10](697 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_gnu' [07:40, 05:20](694 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_gnu' [17:31, 15:58](738 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_gnu' [09:26, 08:07](732 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_gnu' [07:28, 05:28](693 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_gnu' [09:35, 07:24](547 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_gnu' [04:24, 02:44](534 MB) +PASS -- TEST 'conus13km_control_gnu' [05:54, 03:20](858 MB) +PASS -- TEST 'conus13km_2threads_gnu' [03:40, 01:37](866 MB) +PASS -- TEST 'conus13km_restart_mismatch_gnu' [03:42, 01:54](526 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_gnu' [10:11, 08:56] +PASS -- TEST 'rap_control_dyn64_phy32_gnu' [08:35, 06:08](726 MB) + +PASS -- COMPILE 'atm_dyn32_phy32_debug_gnu' [08:10, 06:31] +PASS -- TEST 'rap_control_debug_dyn32_phy32_gnu' [04:27, 02:35](701 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_gnu' [04:22, 02:37](688 MB) +PASS -- TEST 'conus13km_debug_gnu' [08:48, 06:53](858 MB) +PASS -- TEST 'conus13km_debug_qr_gnu' [08:42, 06:56](574 MB) +PASS -- TEST 'conus13km_debug_2threads_gnu' [07:38, 05:54](865 MB) +PASS -- TEST 'conus13km_radar_tten_debug_gnu' [08:39, 07:02](926 MB) + +PASS -- COMPILE 'atm_dyn64_phy32_debug_gnu' [08:10, 06:20] +PASS -- TEST 'rap_control_dyn64_phy32_debug_gnu' [04:22, 02:41](725 MB) + +PASS -- COMPILE 's2swa_gnu' [18:11, 16:45] + +PASS -- COMPILE 's2s_gnu' [17:13, 16:08] +PASS -- TEST 'cpld_control_nowave_noaero_p8_gnu' [14:08, 11:32](1506 MB) + +PASS -- COMPILE 's2swa_debug_gnu' [04:11, 03:07] + +PASS -- COMPILE 's2sw_pdlib_gnu' [18:11, 16:13] +PASS -- TEST 'cpld_control_pdlib_p8_gnu' [23:00, 20:34](1462 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_gnu' [04:11, 03:00] + +PASS -- COMPILE 'datm_cdeps_gnu' [17:12, 15:15] +PASS -- TEST 'datm_cdeps_control_cfsr_gnu' [05:17, 03:12](706 MB) SYNOPSIS: -Starting Date/Time: 20250417 16:41:59 -Ending Date/Time: 20250417 18:43:57 -Total Time: 02h:02m:17s +Starting Date/Time: 20250420 13:49:26 +Ending Date/Time: 20250420 15:44:02 +Total Time: 01h:54m:53s Compiles Completed: 63/63 Tests Completed: 253/253 diff --git a/tests/logs/RegressionTests_hercules.log b/tests/logs/RegressionTests_hercules.log index 84a55cfacf..2e49fa8846 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: -73ef086c74a4d1855551973d55ece7f5824692b4 +1fb9ffb1453250521c63e4719d73b74cee9772be Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: [Times](Memory) are at the end of each compile/test in format [MM:SS](Size). @@ -38,384 +38,384 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/hercules/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_1490147 +COMPARISON DIRECTORY: /work2/noaa/stmp/jongkim/jongkim/FV3_RT/rt_2665859 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-r) - USE ROCOTO -PASS -- COMPILE s2swa_32bit_intel [15:10, 13:13](1 warnings,5 remarks) -PASS -- TEST cpld_control_p8_mixedmode_intel [11:34, 08:10] (2165144 MB) -PASS -- TEST cpld_control_gefs_intel [29:32, 17:27] (3096088 MB) -PASS -- TEST cpld_restart_gefs_intel [20:03, 06:15] (2809224 MB) -PASS -- TEST cpld_dcp_gefs_intel [29:25, 16:15] (3135780 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_intel [21:10, 19:45](1 warnings,5 remarks) -PASS -- TEST cpld_control_gfsv17_intel [22:17, 18:13] (2014740 MB) -PASS -- TEST cpld_control_gfsv17_iau_intel [21:33, 18:15] (2337836 MB) -PASS -- TEST cpld_restart_gfsv17_intel [09:26, 06:48] (1348496 MB) -PASS -- TEST cpld_mpi_gfsv17_intel [23:00, 19:48] (1930080 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [20:12, 18:10](1 warnings,5 remarks) -PASS -- TEST cpld_control_sfs_intel [19:34, 17:31] (1986988 MB) - -PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [07:10, 05:52](1537 warnings,1969 remarks) -PASS -- TEST cpld_debug_gfsv17_intel [25:14, 22:50] (1993528 MB) - -PASS -- COMPILE s2swa_intel [15:11, 13:31](1 warnings,5 remarks) -PASS -- TEST cpld_control_p8_intel [12:56, 09:06] (2256336 MB) -PASS -- TEST cpld_control_p8.v2.sfc_intel [11:35, 08:45] (2255264 MB) -PASS -- TEST cpld_restart_p8_intel [07:36, 04:41] (1956064 MB) -PASS -- TEST cpld_control_qr_p8_intel [11:16, 08:22] (2294104 MB) -PASS -- TEST cpld_restart_qr_p8_intel [09:41, 05:29] (1803268 MB) -PASS -- TEST cpld_2threads_p8_intel [13:03, 09:55] (2416468 MB) -PASS -- TEST cpld_decomp_p8_intel [10:56, 08:43] (2239936 MB) -PASS -- TEST cpld_mpi_p8_intel [10:23, 07:20] (2143320 MB) -PASS -- TEST cpld_control_ciceC_p8_intel [11:34, 08:31] (2250928 MB) -PASS -- TEST cpld_control_c192_p8_intel [19:05, 15:17] (2963988 MB) -PASS -- TEST cpld_restart_c192_p8_intel [09:42, 05:53] (2966192 MB) - -PASS -- COMPILE s2swal_intel [17:10, 15:40](1 warnings,6 remarks) -PASS -- TEST cpld_control_p8_lnd_intel [12:39, 09:11] (2227712 MB) -PASS -- TEST cpld_restart_p8_lnd_intel [07:34, 04:46] (1940516 MB) -PASS -- TEST cpld_s2sa_p8_intel [10:36, 07:48] (2226008 MB) - -PASS -- COMPILE s2sw_intel [13:10, 11:33](1 warnings,5 remarks) -PASS -- TEST cpld_control_noaero_p8_intel [10:01, 07:54] (2042244 MB) -PASS -- TEST cpld_control_nowave_noaero_p8_intel [08:00, 05:53] (2163652 MB) - -PASS -- COMPILE s2swa_debug_intel [06:10, 04:41](1427 warnings,1200 remarks) -PASS -- TEST cpld_debug_p8_intel [15:20, 12:19] (2285208 MB) - -PASS -- COMPILE s2sw_debug_intel [07:10, 05:14](1427 warnings,1200 remarks) -PASS -- TEST cpld_debug_noaero_p8_intel [07:59, 05:24] (2070728 MB) - -PASS -- COMPILE s2s_aoflux_intel [11:10, 10:01](0 warnings,3 remarks) -PASS -- TEST cpld_control_noaero_p8_agrid_intel [07:13, 04:14] (2128904 MB) - -PASS -- COMPILE s2s_intel [11:10, 09:48](1 warnings,3 remarks) -PASS -- TEST cpld_control_c48_intel [08:53, 05:59] (3026052 MB) -PASS -- TEST cpld_warmstart_c48_intel [03:58, 01:52] (3010420 MB) -PASS -- TEST cpld_restart_c48_intel [08:41, 02:37] (2456628 MB) - -PASS -- COMPILE s2swa_faster_intel [14:10, 12:56](1 warnings,5 remarks) -PASS -- TEST cpld_control_p8_faster_intel [14:13, 09:31] (2257340 MB) - -PASS -- COMPILE s2sw_pdlib_intel [18:10, 16:39](1 warnings,5 remarks) -PASS -- TEST cpld_control_pdlib_p8_intel [18:27, 15:36] (2086644 MB) -PASS -- TEST cpld_restart_pdlib_p8_intel [09:05, 06:53] (1410016 MB) -PASS -- TEST cpld_mpi_pdlib_p8_intel [17:56, 15:53] (2005024 MB) - -PASS -- COMPILE s2sw_pdlib_debug_intel [06:10, 04:28](1537 warnings,1969 remarks) -PASS -- TEST cpld_debug_pdlib_p8_intel [26:15, 23:47] (2058788 MB) - -PASS -- COMPILE atm_dyn32_intel [10:10, 09:06](1 warnings,1 remarks) -PASS -- TEST control_flake_intel [05:38, 02:53] (727196 MB) -PASS -- TEST control_CubedSphereGrid_intel [05:48, 02:09] (1617864 MB) -PASS -- TEST control_CubedSphereGrid_parallel_intel [06:58, 02:18] (1624292 MB) -PASS -- TEST control_latlon_intel [06:43, 02:21] (1613724 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_intel [06:50, 02:17] (1628800 MB) -PASS -- TEST control_c48_intel [10:49, 06:26] (1695124 MB) -PASS -- TEST control_c48.v2.sfc_intel [10:29, 05:56] (825956 MB) -PASS -- TEST control_c48_lnd_iau_intel [10:54, 06:25] (1692384 MB) -PASS -- TEST control_c192_intel [08:56, 06:16] (1811256 MB) -PASS -- TEST control_c384_intel [11:40, 07:17] (2016588 MB) -PASS -- TEST control_c384gdas_intel [13:02, 07:33] (1477736 MB) -PASS -- TEST control_stochy_intel [04:42, 01:37] (678012 MB) -PASS -- TEST control_stochy_restart_intel [02:32, 00:50] (540976 MB) -PASS -- TEST control_lndp_intel [04:41, 01:19] (676928 MB) -PASS -- TEST control_iovr4_intel [05:33, 02:10] (677412 MB) -PASS -- TEST control_iovr5_intel [04:29, 02:19] (675092 MB) -PASS -- TEST control_p8_intel [05:00, 02:45] (1907492 MB) -PASS -- TEST control_p8.v2.sfc_intel [06:23, 03:05] (1909028 MB) -PASS -- TEST control_p8_ugwpv1_intel [06:16, 03:34] (1910220 MB) -PASS -- TEST control_restart_p8_intel [03:39, 01:34] (1161096 MB) -PASS -- TEST control_noqr_p8_intel [04:48, 02:57] (1899928 MB) -PASS -- TEST control_restart_noqr_p8_intel [04:18, 01:31] (1194244 MB) -PASS -- TEST control_decomp_p8_intel [05:48, 03:12] (1901304 MB) -PASS -- TEST control_2threads_p8_intel [04:53, 02:56] (1984284 MB) -PASS -- TEST control_p8_lndp_intel [07:42, 05:19] (1909592 MB) -PASS -- TEST control_p8_rrtmgp_intel [05:58, 03:34] (1984700 MB) -PASS -- TEST control_p8_mynn_intel [04:46, 02:40] (1912220 MB) -PASS -- TEST merra2_thompson_intel [04:51, 02:54] (1910508 MB) -PASS -- TEST regional_control_intel [06:26, 04:40] (1191180 MB) -PASS -- TEST regional_restart_intel [04:30, 02:33] (1199024 MB) -PASS -- TEST regional_decomp_intel [06:25, 04:44] (1180572 MB) -PASS -- TEST regional_2threads_intel [05:27, 03:37] (1088376 MB) -PASS -- TEST regional_noquilt_intel [06:32, 04:32] (1527412 MB) -PASS -- TEST regional_netcdf_parallel_intel [07:33, 05:11] (1190548 MB) -PASS -- TEST regional_2dwrtdecomp_intel [06:30, 04:41] (1199464 MB) -PASS -- TEST regional_wofs_intel [07:33, 05:54] (2085068 MB) - -PASS -- COMPILE rrfs_intel [11:11, 09:28](3 warnings,9 remarks) -PASS -- TEST rap_control_intel [08:55, 07:06] (1237180 MB) -PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:49, 03:51] (1424092 MB) -PASS -- TEST rap_decomp_intel [09:36, 07:29] (1148524 MB) -PASS -- TEST rap_2threads_intel [10:48, 08:09] (1192784 MB) -PASS -- TEST rap_restart_intel [05:53, 03:45] (1185968 MB) -PASS -- TEST rap_sfcdiff_intel [08:48, 06:59] (1207016 MB) -PASS -- TEST rap_sfcdiff_decomp_intel [09:48, 07:37] (1163016 MB) -PASS -- TEST rap_sfcdiff_restart_intel [07:54, 05:24] (1218732 MB) -PASS -- TEST hrrr_control_intel [05:49, 03:47] (1097628 MB) -PASS -- TEST hrrr_control_decomp_intel [05:39, 03:50] (1067868 MB) -PASS -- TEST hrrr_control_2threads_intel [05:37, 04:03] (1136060 MB) -PASS -- TEST hrrr_control_restart_intel [03:28, 02:05] (1050976 MB) -PASS -- TEST rrfs_v1beta_intel [08:56, 07:00] (1195828 MB) -PASS -- TEST rrfs_v1nssl_intel [10:22, 08:26] (2010632 MB) -PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [10:24, 08:13] (2163712 MB) - -PASS -- COMPILE csawmg_intel [11:11, 09:19](0 warnings,0 remarks) -PASS -- TEST control_csawmg_intel [07:38, 05:31] (1083736 MB) -PASS -- TEST control_ras_intel [04:23, 02:57] (847940 MB) - -PASS -- COMPILE wam_intel [10:10, 08:12](0 warnings,1 remarks) -PASS -- TEST control_wam_intel [13:51, 11:33] (1690808 MB) - -PASS -- COMPILE atm_faster_dyn32_intel [09:12, 08:02](0 warnings,1 remarks) -PASS -- TEST control_p8_faster_intel [04:59, 02:25] (1918236 MB) -PASS -- TEST regional_control_faster_intel [06:24, 04:11] (1201864 MB) - -PASS -- COMPILE atm_debug_dyn32_intel [07:10, 05:59](884 warnings,9 remarks) -PASS -- TEST control_CubedSphereGrid_debug_intel [03:33, 01:52] (1629428 MB) -PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [03:32, 02:04] (1649464 MB) -PASS -- TEST control_stochy_debug_intel [04:17, 02:42] (865232 MB) -PASS -- TEST control_lndp_debug_intel [04:22, 02:21] (850548 MB) -PASS -- TEST control_csawmg_debug_intel [06:27, 05:07] (1155104 MB) -PASS -- TEST control_ras_debug_intel [04:18, 02:28] (860352 MB) -PASS -- TEST control_diag_debug_intel [04:38, 02:21] (1706140 MB) -PASS -- TEST control_debug_p8_intel [05:35, 03:32] (1948620 MB) -PASS -- TEST regional_debug_intel [18:29, 16:35] (1149680 MB) -PASS -- TEST rap_control_debug_intel [06:19, 04:28] (1247796 MB) -PASS -- TEST hrrr_control_debug_intel [06:21, 04:08] (1235056 MB) -PASS -- TEST hrrr_gf_debug_intel [06:18, 04:10] (1241248 MB) -PASS -- TEST hrrr_c3_debug_intel [06:18, 04:32] (1252988 MB) -PASS -- TEST rap_unified_drag_suite_debug_intel [06:18, 04:30] (1246304 MB) -PASS -- TEST rap_diag_debug_intel [06:23, 04:20] (1334960 MB) -PASS -- TEST rap_cires_ugwp_debug_intel [06:22, 04:30] (1247472 MB) -PASS -- TEST rap_unified_ugwp_debug_intel [06:17, 04:22] (1246832 MB) -PASS -- TEST rap_lndp_debug_intel [06:20, 04:21] (1245808 MB) -PASS -- TEST rap_progcld_thompson_debug_intel [06:18, 04:24] (1241376 MB) -PASS -- TEST rap_noah_debug_intel [06:18, 04:19] (1242508 MB) -PASS -- TEST rap_sfcdiff_debug_intel [06:19, 04:28] (1247204 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:20, 07:04] (1243472 MB) -PASS -- TEST rrfs_v1beta_debug_intel [06:18, 04:23] (1246816 MB) -PASS -- TEST rap_clm_lake_debug_intel [06:21, 04:51] (1242640 MB) -PASS -- TEST rap_flake_debug_intel [06:18, 04:29] (1241224 MB) -PASS -- TEST gnv1_c96_no_nest_debug_intel [09:52, 07:48] (1248932 MB) - -PASS -- COMPILE atm_debug_dyn32_gnu [06:12, 04:18](0 warnings,0 remarks) -PASS -- TEST control_csawmg_debug_gnu [04:30, 03:07] (1042888 MB) - -PASS -- COMPILE wam_debug_intel [04:12, 02:33](839 warnings,1 remarks) - -PASS -- COMPILE rrfs_dyn32_phy32_intel [12:11, 08:11](3 warnings,8 remarks) -PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:54, 03:24] (1299424 MB) -PASS -- TEST rap_control_dyn32_phy32_intel [07:45, 05:47] (1155560 MB) -PASS -- TEST hrrr_control_dyn32_phy32_intel [05:12, 02:57] (1027232 MB) -PASS -- TEST rap_2threads_dyn32_phy32_intel [08:35, 06:54] (1115628 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [05:36, 03:34] (1051876 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [04:41, 03:02] (1005872 MB) -PASS -- TEST rap_restart_dyn32_phy32_intel [06:53, 04:11] (1091300 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [03:20, 01:39] (947628 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [11:10, 08:39](3 warnings,8 remarks) -PASS -- TEST conus13km_control_intel [03:37, 01:37] (1322684 MB) -PASS -- TEST conus13km_2threads_intel [02:29, 00:52] (1208280 MB) -PASS -- TEST conus13km_restart_mismatch_intel [02:36, 00:59] (1173072 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_intel [10:10, 09:03](3 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_intel [06:33, 04:22] (1108828 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:13, 02:59](787 warnings,8 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:19, 04:07] (1118576 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:17, 04:11] (1115568 MB) -PASS -- TEST conus13km_debug_intel [14:40, 12:30] (1354436 MB) -PASS -- TEST conus13km_debug_qr_intel [14:41, 12:15] (1028660 MB) -PASS -- TEST conus13km_debug_2threads_intel [14:29, 12:18] (1239268 MB) -PASS -- TEST conus13km_radar_tten_debug_intel [13:28, 12:04] (1428048 MB) - -PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [05:11, 03:05](787 warnings,8 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_intel [06:22, 04:15] (1216804 MB) - -PASS -- COMPILE hafsw_intel [14:11, 12:26](1 warnings,4 remarks) -PASS -- TEST hafs_regional_atm_intel [07:04, 04:39] (1019028 MB) -PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:20, 03:09] (1278888 MB) -PASS -- TEST hafs_regional_atm_ocn_intel [09:14, 06:28] (1095480 MB) -PASS -- TEST hafs_regional_atm_wav_intel [17:05, 14:12] (1135804 MB) -PASS -- TEST hafs_regional_atm_ocn_wav_intel [20:16, 17:07] (1139780 MB) -PASS -- TEST hafs_regional_1nest_atm_intel [08:03, 04:53] (597188 MB) -PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [09:21, 06:03] (613848 MB) -PASS -- TEST hafs_global_1nest_atm_intel [04:43, 02:19] (433456 MB) -PASS -- TEST hafs_global_multiple_4nests_atm_intel [10:05, 06:25] (505724 MB) -PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:47, 03:17] (614092 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:51, 02:59] (605668 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [06:46, 03:56] (658400 MB) -PASS -- TEST hafs_global_storm_following_1nest_atm_intel [03:26, 01:08] (450052 MB) - -PASS -- COMPILE hafsw_debug_intel [05:10, 03:30](1479 warnings,1472 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [12:50, 10:58] (646188 MB) - -PASS -- COMPILE hafsw_faster_intel [12:11, 10:48](0 warnings,3 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:57, 17:15] (731192 MB) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [21:57, 18:54] (833768 MB) - -PASS -- COMPILE hafs_mom6w_intel [13:14, 11:14](0 warnings,2 remarks) -PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [15:32, 11:48] (813416 MB) - -PASS -- COMPILE hafs_all_intel [13:10, 10:17](0 warnings,3 remarks) -PASS -- TEST hafs_regional_docn_intel [09:08, 05:53] (1067420 MB) -PASS -- TEST hafs_regional_docn_oisst_intel [09:10, 05:49] (1058780 MB) -PASS -- TEST hafs_regional_datm_cdeps_intel [18:44, 16:32] (1344316 MB) - -PASS -- COMPILE datm_cdeps_intel [08:14, 07:04](0 warnings,2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_intel [04:16, 02:10] (1156948 MB) -PASS -- TEST datm_cdeps_restart_cfsr_intel [03:17, 01:21] (1115892 MB) -PASS -- TEST datm_cdeps_control_gefs_intel [03:15, 02:04] (1027048 MB) -PASS -- TEST datm_cdeps_iau_gefs_intel [03:15, 02:07] (1026660 MB) -PASS -- TEST datm_cdeps_stochy_gefs_intel [03:14, 02:07] (1018364 MB) -PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:15, 02:11] (1155448 MB) -PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:15, 02:11] (1152896 MB) -PASS -- TEST datm_cdeps_bulk_gefs_intel [03:17, 02:03] (1023384 MB) -PASS -- TEST datm_cdeps_mx025_cfsr_intel [07:52, 05:02] (1174012 MB) -PASS -- TEST datm_cdeps_mx025_gefs_intel [07:47, 04:56] (1152160 MB) -PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:14, 02:11] (1168348 MB) -PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [05:16, 03:00] (2448648 MB) -PASS -- TEST datm_cdeps_gfs_intel [05:16, 03:04] (2457264 MB) - -PASS -- COMPILE datm_cdeps_debug_intel [05:10, 03:27](4 warnings,2 remarks) -PASS -- TEST datm_cdeps_debug_cfsr_intel [07:16, 05:14] (1079812 MB) - -PASS -- COMPILE datm_cdeps_faster_intel [09:16, 07:52](0 warnings,2 remarks) -PASS -- TEST datm_cdeps_control_cfsr_faster_intel [04:16, 02:12] (1162220 MB) - -PASS -- COMPILE datm_cdeps_land_intel [02:10, 00:49](0 warnings,1 remarks) -PASS -- TEST datm_cdeps_lnd_gswp3_intel [02:30, 00:55] (339812 MB) -PASS -- TEST datm_cdeps_lnd_era5_intel [02:21, 00:40] (562804 MB) -PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:22, 00:28] (558532 MB) - -PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:10, 09:04](0 warnings,3 remarks) -PASS -- TEST atm_ds2s_docn_pcice_intel [07:49, 04:46] (2052100 MB) - -PASS -- COMPILE atm_ds2s_docn_dice_intel [10:10, 08:33](1 warnings,1 remarks) -PASS -- TEST atm_ds2s_docn_dice_intel [06:40, 04:20] (2051036 MB) - -PASS -- COMPILE atml_intel [10:10, 08:49](9 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_intel [05:55, 03:11] (1899296 MB) -PASS -- TEST control_restart_p8_atmlnd_intel [03:40, 01:48] (1145792 MB) - -PASS -- COMPILE atml_debug_intel [05:10, 03:52](889 warnings,2 remarks) -PASS -- TEST control_p8_atmlnd_debug_intel [07:51, 04:55] (1927392 MB) - -PASS -- COMPILE atmw_intel [13:10, 11:10](0 warnings,3 remarks) -PASS -- TEST atmwav_control_noaero_p8_intel [03:47, 02:07] (1953372 MB) - -PASS -- COMPILE atmaero_intel [10:10, 09:01](0 warnings,1 remarks) -PASS -- TEST atmaero_control_p8_intel [08:50, 05:58] (2035960 MB) -PASS -- TEST atmaero_control_p8_rad_intel [07:46, 05:03] (1794556 MB) -PASS -- TEST atmaero_control_p8_rad_micro_intel [07:40, 05:09] (1810712 MB) - -PASS -- COMPILE atmaq_intel [10:11, 08:25](8 warnings,4 remarks) -PASS -- TEST regional_atmaq_intel [17:31, 14:11] (2939224 MB) - -PASS -- COMPILE atmaq_debug_intel [04:10, 03:05](864 warnings,4 remarks) -PASS -- TEST regional_atmaq_debug_intel [35:16, 32:01] (2953828 MB) - -PASS -- COMPILE atm_fbh_intel [10:10, 08:18](3 warnings,8 remarks) -PASS -- TEST cpld_regional_atm_fbh_intel [11:22, 09:36] (1076888 MB) - -PASS -- COMPILE atm_gnu [06:10, 04:29](0 warnings,0 remarks) -PASS -- TEST control_c48_gnu [09:49, 07:58] (1519936 MB) -PASS -- TEST control_stochy_gnu [04:28, 02:21] (719484 MB) -PASS -- TEST control_ras_gnu [05:18, 03:53] (726300 MB) -PASS -- TEST control_p8_gnu [06:54, 04:15] (1750196 MB) -PASS -- TEST control_p8_ugwpv1_gnu [05:42, 03:56] (1725812 MB) -PASS -- TEST control_flake_gnu [06:20, 04:44] (792628 MB) - -PASS -- COMPILE rrfs_gnu [06:10, 04:19](0 warnings,0 remarks) -PASS -- TEST rap_control_gnu [11:42, 09:52] (1073472 MB) -PASS -- TEST rap_decomp_gnu [11:36, 09:47] (1073976 MB) -PASS -- TEST rap_2threads_gnu [11:33, 09:00] (996792 MB) -PASS -- TEST rap_restart_gnu [07:53, 05:14] (873452 MB) -PASS -- TEST rap_sfcdiff_gnu [11:44, 09:34] (1074956 MB) -PASS -- TEST rap_sfcdiff_decomp_gnu [11:32, 09:12] (1076216 MB) -PASS -- TEST rap_sfcdiff_restart_gnu [08:50, 07:07] (969540 MB) -PASS -- TEST hrrr_control_gnu [06:38, 04:43] (1064028 MB) -PASS -- TEST hrrr_control_noqr_gnu [06:37, 04:59] (1124012 MB) -PASS -- TEST hrrr_control_2threads_gnu [06:32, 04:23] (1026188 MB) -PASS -- TEST hrrr_control_decomp_gnu [07:42, 05:09] (1061284 MB) -PASS -- TEST hrrr_control_restart_gnu [04:20, 02:27] (878352 MB) -PASS -- TEST hrrr_control_restart_noqr_gnu [04:19, 02:31] (926500 MB) -PASS -- TEST rrfs_v1beta_gnu [10:50, 08:34] (1069992 MB) - -PASS -- COMPILE csawmg_gnu [06:10, 04:10](0 warnings,0 remarks) -PASS -- TEST control_csawmg_gnu [08:25, 06:53] (1056668 MB) - -PASS -- COMPILE atm_dyn32_debug_gnu [09:10, 07:40](0 warnings,0 remarks) -PASS -- TEST control_diag_debug_gnu [03:31, 01:17] (1619140 MB) -PASS -- TEST regional_debug_gnu [09:27, 07:23] (1139460 MB) -PASS -- TEST rap_control_debug_gnu [04:19, 02:23] (1092548 MB) -PASS -- TEST hrrr_control_debug_gnu [03:18, 02:07] (1084252 MB) -PASS -- TEST hrrr_gf_debug_gnu [04:17, 02:14] (1086428 MB) -PASS -- TEST hrrr_c3_debug_gnu [04:17, 02:12] (1093916 MB) -PASS -- TEST rap_diag_debug_gnu [04:24, 02:20] (1260816 MB) -PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [06:17, 03:22] (1089412 MB) -PASS -- TEST rap_progcld_thompson_debug_gnu [04:17, 02:16] (1089248 MB) -PASS -- TEST rrfs_v1beta_debug_gnu [04:17, 02:10] (1083580 MB) -PASS -- TEST control_ras_debug_gnu [03:19, 01:18] (721392 MB) -PASS -- TEST control_stochy_debug_gnu [03:17, 01:28] (719848 MB) -PASS -- TEST control_debug_p8_gnu [04:32, 02:55] (1719244 MB) -PASS -- TEST rap_flake_debug_gnu [03:18, 02:06] (1091736 MB) -PASS -- TEST rap_clm_lake_debug_gnu [03:18, 02:07] (1092304 MB) -PASS -- TEST gnv1_c96_no_nest_debug_gnu [05:50, 03:48] (1096452 MB) - -PASS -- COMPILE wam_debug_gnu [04:10, 02:40](0 warnings,0 remarks) -PASS -- TEST control_wam_debug_gnu [07:36, 05:28] (1557592 MB) - -PASS -- COMPILE rrfs_dyn32_phy32_gnu [07:11, 05:26](0 warnings,0 remarks) -PASS -- TEST rap_control_dyn32_phy32_gnu [10:31, 08:13] (969232 MB) -PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:47, 04:07] (941832 MB) -PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:44, 07:05] (875392 MB) -PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:42, 03:34] (864556 MB) -PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [06:55, 04:09] (947200 MB) -PASS -- TEST rap_restart_dyn32_phy32_gnu [07:43, 05:43] (857804 MB) -PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [04:42, 02:12] (858204 MB) -PASS -- TEST conus13km_control_gnu [04:38, 02:41] (1268532 MB) -PASS -- TEST conus13km_2threads_gnu [03:25, 01:07] (1103684 MB) -PASS -- TEST conus13km_restart_mismatch_gnu [03:26, 01:28] (1140636 MB) - -PASS -- COMPILE atm_dyn64_phy32_gnu [10:11, 08:28](0 warnings,0 remarks) -PASS -- TEST rap_control_dyn64_phy32_gnu [07:31, 05:22] (986104 MB) - -PASS -- COMPILE atm_dyn32_phy32_debug_gnu [07:10, 06:07](0 warnings,0 remarks) -PASS -- TEST rap_control_debug_dyn32_phy32_gnu [04:20, 02:05] (970244 MB) -PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [04:17, 02:13] (965112 MB) -PASS -- TEST conus13km_debug_gnu [07:29, 06:02] (1284580 MB) -PASS -- TEST conus13km_debug_qr_gnu [08:32, 06:23] (979292 MB) -PASS -- TEST conus13km_debug_2threads_gnu [05:26, 03:43] (1122152 MB) -PASS -- TEST conus13km_radar_tten_debug_gnu [08:26, 06:39] (1355060 MB) - -PASS -- COMPILE atm_dyn64_phy32_debug_gnu [10:11, 08:56](0 warnings,0 remarks) -PASS -- TEST rap_control_dyn64_phy32_debug_gnu [04:22, 02:10] (996852 MB) - -PASS -- COMPILE s2swa_gnu [18:11, 16:37](0 warnings,0 remarks) -PASS -- COMPILE s2s_gnu [20:11, 18:16](0 warnings,0 remarks) -PASS -- TEST cpld_control_nowave_noaero_p8_gnu [10:05, 07:56] (3093836 MB) - -PASS -- COMPILE s2swa_debug_gnu [08:10, 06:23](0 warnings,0 remarks) -PASS -- COMPILE s2sw_pdlib_gnu [22:10, 20:32](0 warnings,0 remarks) -PASS -- TEST cpld_control_pdlib_p8_gnu [28:35, 25:40] (3093980 MB) - -PASS -- COMPILE s2sw_pdlib_debug_gnu [08:11, 06:17](0 warnings,0 remarks) -PASS -- TEST cpld_debug_pdlib_p8_gnu [13:51, 12:01] (3061384 MB) - -PASS -- COMPILE datm_cdeps_gnu [19:11, 17:27](0 warnings,0 remarks) -PASS -- TEST datm_cdeps_control_cfsr_gnu [04:15, 02:17] (762024 MB) +PASS -- COMPILE s2swa_32bit_intel [17:10, 12:02](1 warnings,5 remarks) +PASS -- TEST cpld_control_p8_mixedmode_intel [11:59, 08:51] (2156832 MB) +PASS -- TEST cpld_control_gefs_intel [30:46, 18:52] (3082640 MB) +PASS -- TEST cpld_restart_gefs_intel [19:18, 06:09] (2810084 MB) +PASS -- TEST cpld_dcp_gefs_intel [30:26, 18:12] (3148908 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_intel [23:10, 17:25](1 warnings,5 remarks) +PASS -- TEST cpld_control_gfsv17_intel [22:16, 19:12] (2015892 MB) +PASS -- TEST cpld_control_gfsv17_iau_intel [21:31, 18:18] (2304664 MB) +PASS -- TEST cpld_restart_gfsv17_intel [09:22, 06:50] (1340628 MB) +PASS -- TEST cpld_mpi_gfsv17_intel [23:15, 19:55] (1926036 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_sfs_intel [26:10, 20:25](1 warnings,5 remarks) +PASS -- TEST cpld_control_sfs_intel [18:34, 16:51] (1990012 MB) + +PASS -- COMPILE s2swa_32bit_pdlib_debug_intel [11:10, 06:08](1537 warnings,1969 remarks) +PASS -- TEST cpld_debug_gfsv17_intel [25:03, 22:56] (1996356 MB) + +PASS -- COMPILE s2swa_intel [19:10, 13:46](1 warnings,5 remarks) +PASS -- TEST cpld_control_p8_intel [13:10, 09:43] (2256596 MB) +PASS -- TEST cpld_control_p8.v2.sfc_intel [13:07, 09:28] (2261316 MB) +PASS -- TEST cpld_restart_p8_intel [08:13, 05:29] (1967332 MB) +PASS -- TEST cpld_control_qr_p8_intel [13:00, 09:27] (2276352 MB) +PASS -- TEST cpld_restart_qr_p8_intel [07:12, 04:36] (1815968 MB) +PASS -- TEST cpld_2threads_p8_intel [15:59, 09:54] (2417528 MB) +PASS -- TEST cpld_decomp_p8_intel [13:00, 09:29] (2248992 MB) +PASS -- TEST cpld_mpi_p8_intel [11:02, 07:55] (2139632 MB) +PASS -- TEST cpld_control_ciceC_p8_intel [13:06, 09:13] (2260592 MB) +PASS -- TEST cpld_control_c192_p8_intel [18:43, 14:57] (2955760 MB) +PASS -- TEST cpld_restart_c192_p8_intel [09:20, 05:42] (2953960 MB) + +PASS -- COMPILE s2swal_intel [18:10, 13:07](1 warnings,6 remarks) +PASS -- TEST cpld_control_p8_lnd_intel [15:06, 10:21] (2228268 MB) +PASS -- TEST cpld_restart_p8_lnd_intel [07:21, 05:04] (1946864 MB) +PASS -- TEST cpld_s2sa_p8_intel [13:56, 09:16] (2233488 MB) + +PASS -- COMPILE s2sw_intel [16:10, 11:15](1 warnings,5 remarks) +PASS -- TEST cpld_control_noaero_p8_intel [09:50, 07:47] (2032672 MB) +PASS -- TEST cpld_control_nowave_noaero_p8_intel [07:58, 05:49] (2154708 MB) + +PASS -- COMPILE s2swa_debug_intel [12:10, 07:06](1427 warnings,1200 remarks) +PASS -- TEST cpld_debug_p8_intel [14:56, 12:12] (2305304 MB) + +PASS -- COMPILE s2sw_debug_intel [10:10, 05:19](1427 warnings,1200 remarks) +PASS -- TEST cpld_debug_noaero_p8_intel [08:01, 05:12] (2073668 MB) + +PASS -- COMPILE s2s_aoflux_intel [15:10, 10:00](0 warnings,3 remarks) +PASS -- TEST cpld_control_noaero_p8_agrid_intel [05:56, 04:00] (2135192 MB) + +PASS -- COMPILE s2s_intel [11:11, 09:46](1 warnings,3 remarks) +PASS -- TEST cpld_control_c48_intel [12:47, 07:27] (3023556 MB) +PASS -- TEST cpld_warmstart_c48_intel [08:45, 03:26] (3008684 MB) +PASS -- TEST cpld_restart_c48_intel [04:47, 02:20] (2461860 MB) + +PASS -- COMPILE s2swa_faster_intel [13:11, 11:58](1 warnings,5 remarks) +PASS -- TEST cpld_control_p8_faster_intel [10:01, 08:02] (2246064 MB) + +PASS -- COMPILE s2sw_pdlib_intel [19:11, 17:10](1 warnings,5 remarks) +PASS -- TEST cpld_control_pdlib_p8_intel [17:03, 14:44] (2099164 MB) +PASS -- TEST cpld_restart_pdlib_p8_intel [11:08, 07:22] (1407524 MB) +PASS -- TEST cpld_mpi_pdlib_p8_intel [21:01, 16:48] (1997176 MB) + +PASS -- COMPILE s2sw_pdlib_debug_intel [06:11, 04:39](1537 warnings,1969 remarks) +PASS -- TEST cpld_debug_pdlib_p8_intel [28:56, 24:55] (2063376 MB) + +PASS -- COMPILE atm_dyn32_intel [10:11, 08:42](1 warnings,1 remarks) +PASS -- TEST control_flake_intel [04:22, 02:51] (735988 MB) +PASS -- TEST control_CubedSphereGrid_intel [04:31, 02:09] (1604084 MB) +PASS -- TEST control_CubedSphereGrid_parallel_intel [03:35, 02:07] (1620120 MB) +PASS -- TEST control_latlon_intel [04:27, 02:08] (1611588 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_intel [04:34, 02:13] (1616428 MB) +PASS -- TEST control_c48_intel [12:34, 06:19] (1691520 MB) +PASS -- TEST control_c48.v2.sfc_intel [07:25, 05:47] (825768 MB) +PASS -- TEST control_c48_lnd_iau_intel [12:33, 06:24] (1698608 MB) +PASS -- TEST control_c192_intel [08:40, 06:15] (1813124 MB) +PASS -- TEST control_c384_intel [10:20, 07:14] (2012364 MB) +PASS -- TEST control_c384gdas_intel [11:03, 07:31] (1518180 MB) +PASS -- TEST control_stochy_intel [03:24, 01:25] (681512 MB) +PASS -- TEST control_stochy_restart_intel [02:25, 00:50] (550132 MB) +PASS -- TEST control_lndp_intel [03:17, 01:21] (673816 MB) +PASS -- TEST control_iovr4_intel [03:20, 02:04] (676784 MB) +PASS -- TEST control_iovr5_intel [03:21, 02:06] (674236 MB) +PASS -- TEST control_p8_intel [04:52, 02:36] (1909152 MB) +PASS -- TEST control_p8.v2.sfc_intel [06:57, 03:32] (1915588 MB) +PASS -- TEST control_p8_ugwpv1_intel [06:52, 03:41] (1906772 MB) +PASS -- TEST control_restart_p8_intel [03:39, 01:31] (1162896 MB) +PASS -- TEST control_noqr_p8_intel [06:43, 03:57] (1906552 MB) +PASS -- TEST control_restart_noqr_p8_intel [03:53, 01:29] (1208164 MB) +PASS -- TEST control_decomp_p8_intel [04:41, 02:59] (1905884 MB) +PASS -- TEST control_2threads_p8_intel [04:45, 02:58] (1988004 MB) +PASS -- TEST control_p8_lndp_intel [06:28, 04:23] (1910052 MB) +PASS -- TEST control_p8_rrtmgp_intel [05:46, 03:39] (1977052 MB) +PASS -- TEST control_p8_mynn_intel [05:45, 03:16] (1909956 MB) +PASS -- TEST merra2_thompson_intel [04:51, 02:56] (1914480 MB) +PASS -- TEST regional_control_intel [06:23, 04:39] (1196844 MB) +PASS -- TEST regional_restart_intel [04:24, 02:25] (1201332 MB) +PASS -- TEST regional_decomp_intel [06:23, 04:42] (1175524 MB) +PASS -- TEST regional_2threads_intel [05:22, 03:38] (1101048 MB) +PASS -- TEST regional_noquilt_intel [06:25, 04:32] (1518208 MB) +PASS -- TEST regional_netcdf_parallel_intel [06:27, 04:34] (1198616 MB) +PASS -- TEST regional_2dwrtdecomp_intel [06:27, 04:27] (1195668 MB) +PASS -- TEST regional_wofs_intel [07:24, 05:50] (2091112 MB) + +PASS -- COMPILE rrfs_intel [09:11, 08:05](3 warnings,9 remarks) +PASS -- TEST rap_control_intel [08:46, 06:58] (1232568 MB) +PASS -- TEST regional_spp_sppt_shum_skeb_intel [05:44, 03:49] (1432628 MB) +PASS -- TEST rap_decomp_intel [09:38, 07:28] (1141236 MB) +PASS -- TEST rap_2threads_intel [09:37, 08:06] (1202224 MB) +PASS -- TEST rap_restart_intel [05:48, 03:40] (1159812 MB) +PASS -- TEST rap_sfcdiff_intel [10:53, 08:54] (1201008 MB) +PASS -- TEST rap_sfcdiff_decomp_intel [09:49, 07:27] (1149956 MB) +PASS -- TEST rap_sfcdiff_restart_intel [07:50, 05:20] (1216544 MB) +PASS -- TEST hrrr_control_intel [05:48, 03:38] (1082880 MB) +PASS -- TEST hrrr_control_decomp_intel [06:34, 05:08] (1061620 MB) +PASS -- TEST hrrr_control_2threads_intel [05:32, 04:00] (1147688 MB) +PASS -- TEST hrrr_control_restart_intel [03:18, 01:59] (1043460 MB) +PASS -- TEST rrfs_v1beta_intel [08:53, 06:55] (1208496 MB) +PASS -- TEST rrfs_v1nssl_intel [10:19, 08:24] (2011252 MB) +PASS -- TEST rrfs_v1nssl_nohailnoccn_intel [10:19, 08:04] (2172536 MB) + +PASS -- COMPILE csawmg_intel [10:10, 07:57](0 warnings,0 remarks) +PASS -- TEST control_csawmg_intel [07:24, 05:27] (1078556 MB) +PASS -- TEST control_ras_intel [04:16, 02:52] (882540 MB) + +PASS -- COMPILE wam_intel [09:10, 07:41](0 warnings,1 remarks) +PASS -- TEST control_wam_intel [13:33, 11:34] (1683632 MB) + +PASS -- COMPILE atm_faster_dyn32_intel [13:10, 08:29](0 warnings,1 remarks) +PASS -- TEST control_p8_faster_intel [04:50, 02:22] (1923316 MB) +PASS -- TEST regional_control_faster_intel [05:22, 04:06] (1199644 MB) + +PASS -- COMPILE atm_debug_dyn32_intel [09:10, 04:23](884 warnings,9 remarks) +PASS -- TEST control_CubedSphereGrid_debug_intel [04:26, 02:00] (1620744 MB) +PASS -- TEST control_wrtGauss_netcdf_parallel_debug_intel [04:29, 02:07] (1640716 MB) +PASS -- TEST control_stochy_debug_intel [04:20, 02:36] (856700 MB) +PASS -- TEST control_lndp_debug_intel [04:16, 02:19] (860252 MB) +PASS -- TEST control_csawmg_debug_intel [06:26, 04:12] (1160612 MB) +PASS -- TEST control_ras_debug_intel [04:15, 02:25] (870408 MB) +PASS -- TEST control_diag_debug_intel [04:32, 02:24] (1707240 MB) +PASS -- TEST control_debug_p8_intel [04:35, 02:18] (1929472 MB) +PASS -- TEST regional_debug_intel [17:35, 15:22] (1147364 MB) +PASS -- TEST rap_control_debug_intel [06:16, 04:54] (1249900 MB) +PASS -- TEST hrrr_control_debug_intel [05:19, 04:08] (1236576 MB) +PASS -- TEST hrrr_gf_debug_intel [06:21, 04:23] (1245740 MB) +PASS -- TEST hrrr_c3_debug_intel [06:16, 04:11] (1242016 MB) +PASS -- TEST rap_unified_drag_suite_debug_intel [06:15, 04:15] (1239028 MB) +PASS -- TEST rap_diag_debug_intel [06:24, 04:26] (1329032 MB) +PASS -- TEST rap_cires_ugwp_debug_intel [06:16, 04:20] (1241704 MB) +PASS -- TEST rap_unified_ugwp_debug_intel [06:15, 04:24] (1249380 MB) +PASS -- TEST rap_lndp_debug_intel [06:19, 04:16] (1243256 MB) +PASS -- TEST rap_progcld_thompson_debug_intel [06:19, 04:31] (1253496 MB) +PASS -- TEST rap_noah_debug_intel [06:20, 04:20] (1240172 MB) +PASS -- TEST rap_sfcdiff_debug_intel [07:16, 05:27] (1241840 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_intel [08:21, 06:55] (1246484 MB) +PASS -- TEST rrfs_v1beta_debug_intel [05:18, 04:05] (1232852 MB) +PASS -- TEST rap_clm_lake_debug_intel [07:23, 04:19] (1240344 MB) +PASS -- TEST rap_flake_debug_intel [07:20, 04:23] (1250476 MB) +PASS -- TEST gnv1_c96_no_nest_debug_intel [11:47, 08:43] (1240464 MB) + +PASS -- COMPILE atm_debug_dyn32_gnu [07:11, 04:05](0 warnings,0 remarks) +PASS -- TEST control_csawmg_debug_gnu [05:30, 03:12] (1051296 MB) + +PASS -- COMPILE wam_debug_intel [05:11, 03:16](839 warnings,1 remarks) + +PASS -- COMPILE rrfs_dyn32_phy32_intel [09:11, 07:53](3 warnings,8 remarks) +PASS -- TEST regional_spp_sppt_shum_skeb_dyn32_phy32_intel [05:43, 03:20] (1293952 MB) +PASS -- TEST rap_control_dyn32_phy32_intel [07:42, 05:28] (1164172 MB) +PASS -- TEST hrrr_control_dyn32_phy32_intel [04:54, 02:53] (1011888 MB) +PASS -- TEST rap_2threads_dyn32_phy32_intel [08:28, 06:50] (1118236 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_intel [06:04, 03:34] (1058332 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_intel [05:35, 03:04] (1002396 MB) +PASS -- TEST rap_restart_dyn32_phy32_intel [06:48, 04:15] (1098768 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_intel [04:18, 01:37] (954172 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_faster_intel [09:11, 07:51](3 warnings,8 remarks) +PASS -- TEST conus13km_control_intel [03:35, 01:42] (1308212 MB) +PASS -- TEST conus13km_2threads_intel [03:38, 00:51] (1199904 MB) +PASS -- TEST conus13km_restart_mismatch_intel [03:29, 00:59] (1177912 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_intel [09:11, 07:53](3 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_intel [06:28, 04:20] (1110684 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_debug_intel [05:11, 02:53](787 warnings,8 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_intel [06:18, 04:09] (1127760 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_intel [06:17, 04:10] (1117756 MB) +PASS -- TEST conus13km_debug_intel [14:30, 12:56] (1355568 MB) +PASS -- TEST conus13km_debug_qr_intel [13:38, 12:11] (1022992 MB) +PASS -- TEST conus13km_debug_2threads_intel [16:28, 15:06] (1237688 MB) +PASS -- TEST conus13km_radar_tten_debug_intel [13:26, 12:00] (1416512 MB) + +PASS -- COMPILE rrfs_dyn64_phy32_debug_intel [05:11, 02:50](787 warnings,8 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_intel [05:19, 04:08] (1224396 MB) + +PASS -- COMPILE hafsw_intel [13:10, 10:39](1 warnings,4 remarks) +PASS -- TEST hafs_regional_atm_intel [07:02, 04:27] (1020936 MB) +PASS -- TEST hafs_regional_atm_thompson_gfdlsf_intel [05:21, 02:57] (1281876 MB) +PASS -- TEST hafs_regional_atm_ocn_intel [09:21, 06:46] (1091964 MB) +PASS -- TEST hafs_regional_atm_wav_intel [17:03, 13:44] (1115452 MB) +PASS -- TEST hafs_regional_atm_ocn_wav_intel [19:11, 16:37] (1137928 MB) +PASS -- TEST hafs_regional_1nest_atm_intel [07:51, 04:48] (601472 MB) +PASS -- TEST hafs_regional_telescopic_2nests_atm_intel [08:08, 05:59] (630824 MB) +PASS -- TEST hafs_global_1nest_atm_intel [04:40, 02:14] (426964 MB) +PASS -- TEST hafs_global_multiple_4nests_atm_intel [09:55, 06:11] (508332 MB) +PASS -- TEST hafs_regional_specified_moving_1nest_atm_intel [05:40, 03:11] (611636 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_intel [05:42, 03:01] (613260 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_intel [05:41, 03:53] (663580 MB) +PASS -- TEST hafs_global_storm_following_1nest_atm_intel [04:23, 00:58] (449520 MB) + +PASS -- COMPILE hafsw_debug_intel [05:10, 03:13](1479 warnings,1472 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_debug_intel [13:41, 11:23] (645088 MB) + +PASS -- COMPILE hafsw_faster_intel [12:10, 10:43](0 warnings,3 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_intel [19:50, 17:11] (740268 MB) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel [22:59, 18:30] (835032 MB) + +PASS -- COMPILE hafs_mom6w_intel [13:11, 11:16](0 warnings,2 remarks) +PASS -- TEST hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel [14:20, 11:54] (814512 MB) + +PASS -- COMPILE hafs_all_intel [13:15, 11:55](0 warnings,3 remarks) +PASS -- TEST hafs_regional_docn_intel [11:07, 06:45] (1090112 MB) +PASS -- TEST hafs_regional_docn_oisst_intel [10:02, 05:37] (1071420 MB) +PASS -- TEST hafs_regional_datm_cdeps_intel [19:44, 16:27] (1345644 MB) + +PASS -- COMPILE datm_cdeps_intel [08:10, 06:41](0 warnings,2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_intel [05:15, 02:11] (1162064 MB) +PASS -- TEST datm_cdeps_restart_cfsr_intel [03:22, 01:17] (1103144 MB) +PASS -- TEST datm_cdeps_control_gefs_intel [04:16, 02:08] (1023484 MB) +PASS -- TEST datm_cdeps_iau_gefs_intel [04:17, 02:06] (1031296 MB) +PASS -- TEST datm_cdeps_stochy_gefs_intel [04:14, 02:07] (1027116 MB) +PASS -- TEST datm_cdeps_ciceC_cfsr_intel [04:15, 02:14] (1153004 MB) +PASS -- TEST datm_cdeps_bulk_cfsr_intel [04:15, 02:11] (1150756 MB) +PASS -- TEST datm_cdeps_bulk_gefs_intel [03:14, 02:06] (1034136 MB) +PASS -- TEST datm_cdeps_mx025_cfsr_intel [06:53, 04:57] (1167960 MB) +PASS -- TEST datm_cdeps_mx025_gefs_intel [06:53, 04:55] (1180924 MB) +PASS -- TEST datm_cdeps_multiple_files_cfsr_intel [04:15, 02:13] (1151540 MB) +PASS -- TEST datm_cdeps_3072x1536_cfsr_intel [04:16, 03:01] (2344484 MB) +PASS -- TEST datm_cdeps_gfs_intel [04:15, 03:03] (2413260 MB) + +PASS -- COMPILE datm_cdeps_debug_intel [06:10, 04:29](4 warnings,2 remarks) +PASS -- TEST datm_cdeps_debug_cfsr_intel [06:14, 05:03] (1077552 MB) + +PASS -- COMPILE datm_cdeps_faster_intel [08:10, 07:08](0 warnings,2 remarks) +PASS -- TEST datm_cdeps_control_cfsr_faster_intel [03:14, 02:07] (1145516 MB) + +PASS -- COMPILE datm_cdeps_land_intel [02:10, 00:53](0 warnings,1 remarks) +PASS -- TEST datm_cdeps_lnd_gswp3_intel [02:25, 00:55] (341708 MB) +PASS -- TEST datm_cdeps_lnd_era5_intel [02:21, 00:38] (561668 MB) +PASS -- TEST datm_cdeps_lnd_era5_rst_intel [02:27, 00:26] (565120 MB) + +PASS -- COMPILE atm_ds2s_docn_pcice_intel [10:10, 08:45](0 warnings,3 remarks) +PASS -- TEST atm_ds2s_docn_pcice_intel [05:50, 03:12] (2045888 MB) + +PASS -- COMPILE atm_ds2s_docn_dice_intel [09:10, 08:00](1 warnings,1 remarks) +PASS -- TEST atm_ds2s_docn_dice_intel [06:44, 04:10] (2054588 MB) + +PASS -- COMPILE atml_intel [11:10, 09:21](9 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_intel [05:52, 03:07] (1883620 MB) +PASS -- TEST control_restart_p8_atmlnd_intel [05:37, 03:10] (1158772 MB) + +PASS -- COMPILE atml_debug_intel [06:10, 04:15](889 warnings,2 remarks) +PASS -- TEST control_p8_atmlnd_debug_intel [07:49, 05:13] (1913724 MB) + +PASS -- COMPILE atmw_intel [13:10, 10:47](0 warnings,3 remarks) +PASS -- TEST atmwav_control_noaero_p8_intel [06:45, 02:53] (1954376 MB) + +PASS -- COMPILE atmaero_intel [10:12, 08:18](0 warnings,1 remarks) +PASS -- TEST atmaero_control_p8_intel [09:46, 05:46] (2029168 MB) +PASS -- TEST atmaero_control_p8_rad_intel [09:45, 05:09] (1788772 MB) +PASS -- TEST atmaero_control_p8_rad_micro_intel [08:38, 05:13] (1820528 MB) + +PASS -- COMPILE atmaq_intel [10:10, 08:08](8 warnings,4 remarks) +PASS -- TEST regional_atmaq_intel [20:17, 16:56] (2945160 MB) + +PASS -- COMPILE atmaq_debug_intel [05:15, 03:39](864 warnings,4 remarks) +PASS -- TEST regional_atmaq_debug_intel [36:25, 31:42] (2958128 MB) + +PASS -- COMPILE atm_fbh_intel [09:14, 07:52](3 warnings,8 remarks) +PASS -- TEST cpld_regional_atm_fbh_intel [11:27, 09:34] (1074912 MB) + +PASS -- COMPILE atm_gnu [06:10, 04:16](0 warnings,0 remarks) +PASS -- TEST control_c48_gnu [11:39, 07:52] (1522584 MB) +PASS -- TEST control_stochy_gnu [05:21, 02:21] (718192 MB) +PASS -- TEST control_ras_gnu [06:16, 03:52] (720324 MB) +PASS -- TEST control_p8_gnu [07:51, 04:58] (1753996 MB) +PASS -- TEST control_p8_ugwpv1_gnu [07:39, 04:43] (1724852 MB) +PASS -- TEST control_flake_gnu [06:18, 04:37] (805824 MB) + +PASS -- COMPILE rrfs_gnu [05:14, 04:02](0 warnings,0 remarks) +PASS -- TEST rap_control_gnu [12:53, 09:33] (1076084 MB) +PASS -- TEST rap_decomp_gnu [11:47, 09:42] (1076440 MB) +PASS -- TEST rap_2threads_gnu [10:53, 08:04] (998876 MB) +PASS -- TEST rap_restart_gnu [07:48, 04:56] (875848 MB) +PASS -- TEST rap_sfcdiff_gnu [11:54, 09:18] (1074512 MB) +PASS -- TEST rap_sfcdiff_decomp_gnu [12:43, 09:22] (1077260 MB) +PASS -- TEST rap_sfcdiff_restart_gnu [09:50, 06:52] (883060 MB) +PASS -- TEST hrrr_control_gnu [07:36, 04:45] (1066272 MB) +PASS -- TEST hrrr_control_noqr_gnu [06:42, 04:53] (1124772 MB) +PASS -- TEST hrrr_control_2threads_gnu [06:30, 04:32] (1020912 MB) +PASS -- TEST hrrr_control_decomp_gnu [07:43, 04:54] (1061000 MB) +PASS -- TEST hrrr_control_restart_gnu [04:19, 02:37] (877528 MB) +PASS -- TEST hrrr_control_restart_noqr_gnu [04:19, 02:27] (927864 MB) +PASS -- TEST rrfs_v1beta_gnu [11:47, 08:26] (1077232 MB) + +PASS -- COMPILE csawmg_gnu [06:10, 04:50](0 warnings,0 remarks) +PASS -- TEST control_csawmg_gnu [09:23, 06:45] (1057692 MB) + +PASS -- COMPILE atm_dyn32_debug_gnu [08:10, 06:52](0 warnings,0 remarks) +PASS -- TEST control_diag_debug_gnu [03:30, 01:14] (1621292 MB) +PASS -- TEST regional_debug_gnu [08:26, 06:31] (1131392 MB) +PASS -- TEST rap_control_debug_gnu [04:18, 02:19] (1089984 MB) +PASS -- TEST hrrr_control_debug_gnu [03:19, 01:59] (1081212 MB) +PASS -- TEST hrrr_gf_debug_gnu [04:16, 02:18] (1084996 MB) +PASS -- TEST hrrr_c3_debug_gnu [04:16, 02:16] (1087176 MB) +PASS -- TEST rap_diag_debug_gnu [03:33, 02:07] (1261836 MB) +PASS -- TEST rap_noah_sfcdiff_cires_ugwp_debug_gnu [05:18, 03:27] (1086904 MB) +PASS -- TEST rap_progcld_thompson_debug_gnu [04:17, 02:11] (1090820 MB) +PASS -- TEST rrfs_v1beta_debug_gnu [03:16, 01:59] (1088364 MB) +PASS -- TEST control_ras_debug_gnu [03:16, 01:10] (718700 MB) +PASS -- TEST control_stochy_debug_gnu [03:17, 01:18] (714268 MB) +PASS -- TEST control_debug_p8_gnu [03:34, 01:22] (1700172 MB) +PASS -- TEST rap_flake_debug_gnu [03:17, 01:57] (1087548 MB) +PASS -- TEST rap_clm_lake_debug_gnu [04:16, 02:05] (1088888 MB) +PASS -- TEST gnv1_c96_no_nest_debug_gnu [05:44, 03:34] (1095804 MB) + +PASS -- COMPILE wam_debug_gnu [04:10, 02:11](0 warnings,0 remarks) +PASS -- TEST control_wam_debug_gnu [07:35, 05:30] (1555956 MB) + +PASS -- COMPILE rrfs_dyn32_phy32_gnu [05:11, 03:51](0 warnings,0 remarks) +PASS -- TEST rap_control_dyn32_phy32_gnu [09:31, 08:08] (954552 MB) +PASS -- TEST hrrr_control_dyn32_phy32_gnu [05:58, 04:00] (945424 MB) +PASS -- TEST rap_2threads_dyn32_phy32_gnu [08:55, 06:44] (911280 MB) +PASS -- TEST hrrr_control_2threads_dyn32_phy32_gnu [05:37, 03:33] (859916 MB) +PASS -- TEST hrrr_control_decomp_dyn32_phy32_gnu [06:34, 04:08] (965604 MB) +PASS -- TEST rap_restart_dyn32_phy32_gnu [09:37, 05:53] (857672 MB) +PASS -- TEST hrrr_control_restart_dyn32_phy32_gnu [03:20, 02:05] (859408 MB) +PASS -- TEST conus13km_control_gnu [04:35, 02:44] (1270656 MB) +PASS -- TEST conus13km_2threads_gnu [02:31, 01:04] (1099208 MB) +PASS -- TEST conus13km_restart_mismatch_gnu [03:30, 01:24] (1149216 MB) + +PASS -- COMPILE atm_dyn64_phy32_gnu [12:10, 09:35](0 warnings,0 remarks) +PASS -- TEST rap_control_dyn64_phy32_gnu [06:29, 04:34] (982280 MB) + +PASS -- COMPILE atm_dyn32_phy32_debug_gnu [09:10, 07:22](0 warnings,0 remarks) +PASS -- TEST rap_control_debug_dyn32_phy32_gnu [04:17, 02:02] (967276 MB) +PASS -- TEST hrrr_control_debug_dyn32_phy32_gnu [04:16, 02:07] (965224 MB) +PASS -- TEST conus13km_debug_gnu [07:38, 05:52] (1286800 MB) +PASS -- TEST conus13km_debug_qr_gnu [08:32, 06:13] (979896 MB) +PASS -- TEST conus13km_debug_2threads_gnu [06:25, 04:18] (1117096 MB) +PASS -- TEST conus13km_radar_tten_debug_gnu [08:30, 06:30] (1354320 MB) + +PASS -- COMPILE atm_dyn64_phy32_debug_gnu [10:10, 08:31](0 warnings,0 remarks) +PASS -- TEST rap_control_dyn64_phy32_debug_gnu [03:28, 02:00] (994464 MB) + +PASS -- COMPILE s2swa_gnu [20:10, 19:05](0 warnings,0 remarks) +PASS -- COMPILE s2s_gnu [19:10, 17:29](0 warnings,0 remarks) +PASS -- TEST cpld_control_nowave_noaero_p8_gnu [09:59, 07:40] (2720632 MB) + +PASS -- COMPILE s2swa_debug_gnu [05:10, 03:51](0 warnings,0 remarks) +PASS -- COMPILE s2sw_pdlib_gnu [18:10, 16:15](0 warnings,0 remarks) +PASS -- TEST cpld_control_pdlib_p8_gnu [27:56, 24:57] (3033984 MB) + +PASS -- COMPILE s2sw_pdlib_debug_gnu [05:10, 03:50](0 warnings,0 remarks) +PASS -- TEST cpld_debug_pdlib_p8_gnu [16:52, 13:37] (2916356 MB) + +PASS -- COMPILE datm_cdeps_gnu [16:10, 15:07](0 warnings,0 remarks) +PASS -- TEST datm_cdeps_control_cfsr_gnu [05:16, 02:21] (769432 MB) SYNOPSIS: -Starting Date/Time: 2025-04-16 15:00:17 -Ending Date/Time: 2025-04-16 16:41:37 -Total Time: 01h:41m:20s +Starting Date/Time: 2025-04-20 08:59:30 +Ending Date/Time: 2025-04-20 11:21:26 +Total Time: 02h:21m:56s Compiles Completed: 60/60 Tests Completed: 249/249 diff --git a/tests/logs/RegressionTests_orion.log b/tests/logs/RegressionTests_orion.log index 866d929703..92e8fb66cf 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: -73ef086c74a4d1855551973d55ece7f5824692b4 +1fb9ffb1453250521c63e4719d73b74cee9772be Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,304 +39,304 @@ The second time is specifically for the run phase. Times/Memory will be empty for failed tests. BASELINE DIRECTORY: /work/noaa/epic/UFS-WM_RT/NEMSfv3gfs/develop-20250416 -COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_2405711 +COMPARISON DIRECTORY: /work/noaa/stmp/jongkim/stmp/jongkim/FV3_RT/rt_99261 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: epic * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [19:14, 16:43] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [46:12, 18:23](2096 MB) -PASS -- TEST 'cpld_control_gefs_intel' [34:35, 19:56](3047 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [20:03, 06:38](2723 MB) -PASS -- TEST 'cpld_dcp_gefs_intel' [35:22, 21:06](3063 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:21, 22:04] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [50:15, 25:04](1972 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [31:34, 24:43](2117 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [17:22, 10:08](1222 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [29:21, 25:33](1880 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:22, 22:22] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [03:52, 26:26](1947 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [10:10, 07:39] ( 1537 warnings 1969 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [31:46, 27:38](1942 MB) - -PASS -- COMPILE 's2swa_intel' [19:15, 16:34] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [42:41, 17:15](2177 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [41:21, 16:02](2172 MB) -PASS -- TEST 'cpld_restart_p8_intel' [16:24, 09:30](1790 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [47:01, 18:44](2211 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [16:45, 11:42](1750 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [43:48, 16:29](2318 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [12:22, 16:06](2170 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [33:22, 13:50](2060 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [41:20, 15:56](2186 MB) -PASS -- TEST 'cpld_control_c192_p8_intel' [37:15, 16:23](2692 MB) -PASS -- TEST 'cpld_restart_c192_p8_intel' [26:10, 15:23](2827 MB) - -PASS -- COMPILE 's2swal_intel' [19:14, 16:47] ( 1 warnings 6 remarks ) -PASS -- TEST 'cpld_control_p8_lnd_intel' [37:34, 17:07](2159 MB) -PASS -- TEST 'cpld_restart_p8_lnd_intel' [21:56, 09:39](1779 MB) -PASS -- TEST 'cpld_s2sa_p8_intel' [33:15, 08:03](2165 MB) - -PASS -- COMPILE 's2sw_intel' [19:14, 16:17] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [35:01, 15:34](1991 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [27:13, 06:52](2085 MB) - -PASS -- COMPILE 's2swa_debug_intel' [10:10, 07:08] ( 1427 warnings 1200 remarks ) -PASS -- TEST 'cpld_debug_p8_intel' [23:27, 15:12](2214 MB) - -PASS -- COMPILE 's2sw_debug_intel' [09:10, 06:54] ( 1427 warnings 1200 remarks ) -PASS -- TEST 'cpld_debug_noaero_p8_intel' [12:41, 07:33](2028 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [17:14, 14:39] ( 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [15:26, 09:09](2077 MB) - -PASS -- COMPILE 's2s_intel' [19:12, 15:30] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [24:42, 08:37](3011 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [18:43, 03:00](2997 MB) -PASS -- TEST 'cpld_restart_c48_intel' [35:06, 02:00](2452 MB) - -PASS -- COMPILE 's2swa_faster_intel' [20:17, 17:36] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [56:05, 21:09](2192 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [24:13, 21:03] ( 1 warnings 5 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [54:00, 24:08](2014 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:30, 08:51](1255 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [24:18, 20:57](1935 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [12:16, 06:38] ( 1537 warnings 1969 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [05:12, 30:02](1992 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [18:16, 14:39] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [26:43, 04:09](693 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [21:04, 03:05](1583 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [15:17, 03:16](1594 MB) -PASS -- TEST 'control_latlon_intel' [14:45, 03:09](1592 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [13:57, 03:04](1593 MB) -PASS -- TEST 'control_c48_intel' [12:08, 09:31](1698 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [12:18, 08:23](824 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [16:41, 09:25](1680 MB) -PASS -- TEST 'control_c192_intel' [53:16, 09:01](1783 MB) -PASS -- TEST 'control_c384_intel' [48:35, 13:11](1984 MB) -PASS -- TEST 'control_c384gdas_intel' [21:05, 14:57](1323 MB) -PASS -- TEST 'control_stochy_intel' [03:42, 01:54](651 MB) -PASS -- TEST 'control_stochy_restart_intel' [06:34, 01:58](482 MB) -PASS -- TEST 'control_lndp_intel' [03:43, 02:03](645 MB) -PASS -- TEST 'control_iovr4_intel' [05:47, 03:44](644 MB) -PASS -- TEST 'control_iovr5_intel' [05:44, 03:59](643 MB) -PASS -- TEST 'control_p8_intel' [11:07, 06:16](1878 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [11:03, 06:46](1885 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [13:03, 08:27](1881 MB) -PASS -- TEST 'control_restart_p8_intel' [08:30, 03:23](1093 MB) -PASS -- TEST 'control_noqr_p8_intel' [12:47, 07:55](1876 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [05:46, 02:40](1124 MB) -PASS -- TEST 'control_decomp_p8_intel' [11:13, 06:49](1868 MB) -PASS -- TEST 'control_2threads_p8_intel' [12:09, 07:46](1970 MB) -PASS -- TEST 'control_p8_lndp_intel' [15:14, 12:18](1886 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [13:13, 08:57](1952 MB) -PASS -- TEST 'control_p8_mynn_intel' [11:47, 07:06](1888 MB) -PASS -- TEST 'merra2_thompson_intel' [11:26, 07:07](1885 MB) -PASS -- TEST 'regional_control_intel' [12:49, 10:21](1081 MB) -PASS -- TEST 'regional_restart_intel' [05:47, 03:37](1093 MB) -PASS -- TEST 'regional_decomp_intel' [13:49, 10:25](1073 MB) -PASS -- TEST 'regional_2threads_intel' [11:42, 08:42](1022 MB) -PASS -- TEST 'regional_noquilt_intel' [12:43, 10:10](1378 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [12:31, 10:03](1086 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [12:34, 10:02](1080 MB) -PASS -- TEST 'regional_wofs_intel' [13:45, 11:06](1903 MB) - -PASS -- COMPILE 'rrfs_intel' [17:16, 13:44] ( 3 warnings 9 remarks ) -PASS -- TEST 'rap_control_intel' [41:42, 09:58](1048 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [33:50, 05:35](1349 MB) -PASS -- TEST 'rap_decomp_intel' [41:45, 11:24](1039 MB) -PASS -- TEST 'rap_2threads_intel' [42:00, 12:38](1117 MB) -PASS -- TEST 'rap_restart_intel' [10:51, 06:10](1046 MB) -PASS -- TEST 'rap_sfcdiff_intel' [41:54, 10:29](1049 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [41:54, 11:06](1032 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [12:44, 07:57](1068 MB) -PASS -- TEST 'hrrr_control_intel' [08:35, 05:59](1038 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:29, 06:01](1033 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [09:07, 05:48](1112 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:30, 02:26](955 MB) -PASS -- TEST 'rrfs_v1beta_intel' [12:51, 09:28](1038 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [12:47, 10:32](1990 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:49, 10:01](2012 MB) - -PASS -- COMPILE 'csawmg_intel' [17:26, 13:27] -PASS -- TEST 'control_csawmg_intel' [09:39, 06:36](1040 MB) -PASS -- TEST 'control_ras_intel' [06:29, 03:30](741 MB) - -PASS -- COMPILE 'wam_intel' [17:16, 12:57] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:56, 12:47](1663 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [16:11, 12:28] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [06:45, 03:20](1885 MB) -PASS -- TEST 'regional_control_faster_intel' [08:44, 06:22](1083 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [11:13, 07:58] ( 884 warnings 9 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:44, 02:20](1610 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:54, 02:21](1622 MB) -PASS -- TEST 'control_stochy_debug_intel' [04:25, 03:04](823 MB) -PASS -- TEST 'control_lndp_debug_intel' [04:21, 02:47](827 MB) -PASS -- TEST 'control_csawmg_debug_intel' [06:40, 04:27](1137 MB) -PASS -- TEST 'control_ras_debug_intel' [04:28, 02:52](841 MB) -PASS -- TEST 'control_diag_debug_intel' [05:14, 02:51](1679 MB) -PASS -- TEST 'control_debug_p8_intel' [04:59, 02:55](1911 MB) -PASS -- TEST 'regional_debug_intel' [19:56, 17:08](1095 MB) -PASS -- TEST 'rap_control_debug_intel' [07:31, 04:51](1214 MB) -PASS -- TEST 'hrrr_control_debug_intel' [06:35, 04:44](1217 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:32, 04:51](1210 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:29, 04:55](1214 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:27, 04:54](1219 MB) -PASS -- TEST 'rap_diag_debug_intel' [07:46, 05:11](1301 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:26, 05:05](1213 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:24, 05:05](1222 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:26, 05:00](1219 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:24, 05:01](1220 MB) -PASS -- TEST 'rap_noah_debug_intel' [07:26, 04:57](1216 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [07:25, 05:03](1210 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:27, 08:12](1212 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [07:32, 04:59](1215 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [07:33, 05:06](1212 MB) -PASS -- TEST 'rap_flake_debug_intel' [06:32, 04:58](1215 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:52, 08:34](1216 MB) - -PASS -- COMPILE 'wam_debug_intel' [15:13, 04:50] ( 839 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [14:52, 12:56](1688 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [21:11, 12:07] ( 3 warnings 8 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:03, 04:53](1235 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:26, 07:13](993 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:49, 03:48](919 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:41, 08:39](975 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:49, 04:28](965 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:25, 03:56](910 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [10:57, 05:25](970 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:14, 02:06](883 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [20:10, 12:08] ( 3 warnings 8 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:05, 02:35](1186 MB) -PASS -- TEST 'conus13km_2threads_intel' [02:42, 01:06](1139 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [03:41, 01:28](1094 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [21:10, 12:16] ( 3 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:48, 04:36](1008 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [12:11, 05:15] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:24, 04:54](1087 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:22, 04:48](1094 MB) -PASS -- TEST 'conus13km_debug_intel' [15:56, 13:56](1238 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [15:56, 13:38](937 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [15:47, 13:22](1175 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:47, 13:20](1308 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [12:11, 04:46] ( 787 warnings 8 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:29, 05:03](1169 MB) - -PASS -- COMPILE 'hafsw_intel' [26:13, 14:16] ( 1 warnings 4 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [08:28, 05:38](902 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:37, 04:31](1160 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:40, 07:17](961 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [31:24, 28:50](999 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [37:29, 34:27](1013 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:12, 06:58](502 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:36, 08:09](514 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:05, 03:24](368 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:52, 09:17](470 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [09:56, 04:31](528 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:06, 04:19](525 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:57, 05:30](573 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [06:33, 01:34](396 MB) -PASS -- TEST 'gnv1_nested_intel' [10:44, 04:18](1730 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [18:11, 05:28] ( 1479 warnings 1472 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:20, 13:16](587 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [37:14, 15:13] ( 3 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:30, 14:59](658 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [19:31, 14:56](726 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [33:13, 14:41] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [15:48, 11:20](709 MB) - -PASS -- COMPILE 'hafs_all_intel' [29:12, 13:29] ( 3 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [11:29, 07:16](968 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [11:31, 07:20](958 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:04, 16:26](1206 MB) - -PASS -- COMPILE 'datm_cdeps_intel' [18:13, 08:05] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:21, 03:00](1153 MB) -PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [04:22, 02:00](1111 MB) -PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:20, 02:53](1019 MB) -PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:21, 02:56](1021 MB) -PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:21, 02:54](1017 MB) -PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:20, 03:01](1146 MB) -PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:20, 03:03](1148 MB) -PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:19, 02:53](1020 MB) -PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:16, 06:31](1027 MB) -PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:25, 06:29](1008 MB) -PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [06:18, 04:37](1150 MB) -PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:22, 04:20](2390 MB) -PASS -- TEST 'datm_cdeps_gfs_intel' [06:21, 04:24](2459 MB) - -PASS -- COMPILE 'datm_cdeps_debug_intel' [21:13, 05:12] ( 4 warnings 2 remarks ) -PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:29](1067 MB) - -PASS -- COMPILE 'datm_cdeps_faster_intel' [27:11, 07:50] ( 2 remarks ) -PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 03:00](1156 MB) - -PASS -- COMPILE 'datm_cdeps_land_intel' [25:12, 01:19] ( 1 remarks ) -PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:34, 01:06](257 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:28, 00:54](325 MB) -PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [02:35, 00:34](325 MB) - -PASS -- COMPILE 'datm_cdeps_lm4_intel' [22:13, 02:01] ( 12 warnings ) -PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [02:40, 00:37](566 MB) -PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:36, 00:20](440 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [32:12, 13:11] ( 3 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:19, 04:09](1984 MB) - -PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [30:12, 12:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_dice_intel' [08:07, 05:09](1992 MB) - -PASS -- COMPILE 'atml_intel' [27:12, 13:41] ( 9 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_intel' [06:43, 03:42](1867 MB) -PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:05, 02:09](1068 MB) - -PASS -- COMPILE 'atml_debug_intel' [16:11, 06:29] ( 889 warnings 2 remarks ) -PASS -- TEST 'control_p8_atmlnd_debug_intel' [07:38, 05:05](1893 MB) - -PASS -- COMPILE 'atmw_intel' [25:11, 12:53] ( 3 remarks ) -PASS -- TEST 'atmwav_control_noaero_p8_intel' [05:27, 02:20](1915 MB) - -PASS -- COMPILE 'atmaero_intel' [29:12, 12:47] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [07:24, 04:38](1980 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [08:25, 05:23](1757 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:12, 05:26](1787 MB) - -PASS -- COMPILE 'atmaq_intel' [27:12, 11:59] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [22:18, 18:39](2917 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [19:11, 05:12] ( 864 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [44:26, 40:24](2929 MB) - -PASS -- COMPILE 'atm_fbh_intel' [25:11, 12:02] ( 3 warnings 8 remarks ) -PASS -- TEST 'cpld_regional_atm_fbh_intel' [15:36, 14:05](1075 MB) - -PASS -- COMPILE 'hafsw_intelllvm' [25:19, 07:58] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [10:14, 07:45](578 MB) - -PASS -- COMPILE 'hafsw_debug_intelllvm' [19:12, 04:29] -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [22:06, 19:39](565 MB) +PASS -- COMPILE 's2swa_32bit_intel' [24:12, 16:39] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [33:46, 15:50](2098 MB) +PASS -- TEST 'cpld_control_gefs_intel' [51:42, 20:49](3047 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [20:44, 07:14](2718 MB) +PASS -- TEST 'cpld_dcp_gefs_intel' [50:28, 22:49](3059 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [24:12, 21:21] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [40:07, 21:31](1971 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [30:33, 23:23](2130 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [15:19, 08:38](1234 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [32:53, 25:29](1879 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [25:13, 22:00] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [44:07, 21:13](1962 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [15:10, 07:20] ( 1537 warnings 1969 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [30:36, 27:10](1939 MB) + +PASS -- COMPILE 's2swa_intel' [25:13, 16:45] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [41:52, 17:28](2189 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [43:49, 16:36](2172 MB) +PASS -- TEST 'cpld_restart_p8_intel' [13:42, 08:47](1789 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [39:44, 15:59](2204 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [12:12, 08:35](1749 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [54:13, 13:35](2313 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [56:51, 16:32](2173 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [37:42, 14:10](2060 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [57:59, 17:31](2193 MB) +PASS -- TEST 'cpld_control_c192_p8_intel' [19:44, 15:59](2693 MB) +PASS -- TEST 'cpld_restart_c192_p8_intel' [33:11, 10:04](2829 MB) + +PASS -- COMPILE 's2swal_intel' [24:12, 16:09] ( 1 warnings 6 remarks ) +PASS -- TEST 'cpld_control_p8_lnd_intel' [24:37, 16:57](2143 MB) +PASS -- TEST 'cpld_restart_p8_lnd_intel' [30:21, 08:46](1783 MB) +PASS -- TEST 'cpld_s2sa_p8_intel' [26:27, 07:57](2157 MB) + +PASS -- COMPILE 's2sw_intel' [23:12, 15:28] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [18:05, 15:36](1998 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [09:17, 06:50](2087 MB) + +PASS -- COMPILE 's2swa_debug_intel' [15:10, 07:09] ( 1427 warnings 1200 remarks ) +PASS -- TEST 'cpld_debug_p8_intel' [16:21, 13:45](2216 MB) + +PASS -- COMPILE 's2sw_debug_intel' [14:10, 06:53] ( 1427 warnings 1200 remarks ) +PASS -- TEST 'cpld_debug_noaero_p8_intel' [10:11, 07:14](2021 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [23:12, 14:33] ( 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [07:22, 04:51](2081 MB) + +PASS -- COMPILE 's2s_intel' [15:13, 14:03] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [24:08, 08:39](3016 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [39:11, 03:47](3007 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:17, 02:00](2455 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:13, 16:51] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [48:47, 16:46](2178 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [22:13, 20:16] ( 1 warnings 5 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [46:32, 18:40](2018 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:37, 08:43](1256 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [23:15, 20:56](1944 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [07:11, 06:05] ( 1537 warnings 1969 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [04:27, 29:43](1996 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [15:11, 13:12] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [27:28, 04:20](696 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [26:46, 03:00](1583 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [22:49, 02:51](1598 MB) +PASS -- TEST 'control_latlon_intel' [19:35, 02:50](1596 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [15:53, 02:53](1593 MB) +PASS -- TEST 'control_c48_intel' [21:50, 08:59](1700 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [15:46, 08:22](810 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [10:50, 09:02](1701 MB) +PASS -- TEST 'control_c192_intel' [11:07, 08:06](1782 MB) +PASS -- TEST 'control_c384_intel' [14:10, 09:52](1983 MB) +PASS -- TEST 'control_c384gdas_intel' [15:19, 10:00](1333 MB) +PASS -- TEST 'control_stochy_intel' [04:25, 01:49](648 MB) +PASS -- TEST 'control_stochy_restart_intel' [02:51, 01:06](485 MB) +PASS -- TEST 'control_lndp_intel' [04:19, 01:42](648 MB) +PASS -- TEST 'control_iovr4_intel' [05:34, 02:42](641 MB) +PASS -- TEST 'control_iovr5_intel' [05:35, 02:43](648 MB) +PASS -- TEST 'control_p8_intel' [06:16, 03:19](1879 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [06:28, 03:43](1886 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [06:38, 03:13](1882 MB) +PASS -- TEST 'control_restart_p8_intel' [04:19, 02:06](1089 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:30, 03:21](1880 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:37, 02:06](1129 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:26, 03:21](1877 MB) +PASS -- TEST 'control_2threads_p8_intel' [07:22, 04:00](1976 MB) +PASS -- TEST 'control_p8_lndp_intel' [07:50, 05:57](1878 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [07:32, 05:04](1943 MB) +PASS -- TEST 'control_p8_mynn_intel' [06:47, 03:43](1891 MB) +PASS -- TEST 'merra2_thompson_intel' [07:38, 04:23](1892 MB) +PASS -- TEST 'regional_control_intel' [08:47, 06:44](1079 MB) +PASS -- TEST 'regional_restart_intel' [05:36, 03:36](1104 MB) +PASS -- TEST 'regional_decomp_intel' [08:45, 06:58](1070 MB) +PASS -- TEST 'regional_2threads_intel' [07:37, 05:13](1040 MB) +PASS -- TEST 'regional_noquilt_intel' [08:42, 06:52](1381 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [08:52, 06:44](1082 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [08:45, 07:05](1087 MB) +PASS -- TEST 'regional_wofs_intel' [10:43, 08:19](1902 MB) + +PASS -- COMPILE 'rrfs_intel' [13:11, 12:04] ( 3 warnings 9 remarks ) +PASS -- TEST 'rap_control_intel' [37:32, 09:41](1049 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [34:06, 06:11](1363 MB) +PASS -- TEST 'rap_decomp_intel' [38:29, 09:59](1037 MB) +PASS -- TEST 'rap_2threads_intel' [39:21, 11:26](1124 MB) +PASS -- TEST 'rap_restart_intel' [07:46, 04:36](1039 MB) +PASS -- TEST 'rap_sfcdiff_intel' [38:30, 09:56](1049 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [37:28, 09:35](1041 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:41, 06:26](1078 MB) +PASS -- TEST 'hrrr_control_intel' [34:27, 05:44](1040 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:05, 04:30](1034 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [07:04, 05:11](1113 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:43, 02:32](956 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:20, 08:38](1038 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [13:41, 11:37](1989 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:30, 09:43](2010 MB) + +PASS -- COMPILE 'csawmg_intel' [13:11, 11:52] +PASS -- TEST 'control_csawmg_intel' [08:44, 06:36](1039 MB) +PASS -- TEST 'control_ras_intel' [05:27, 03:28](743 MB) + +PASS -- COMPILE 'wam_intel' [13:11, 11:27] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [14:43, 12:55](1670 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [31:14, 12:16] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [06:27, 03:19](1889 MB) +PASS -- TEST 'regional_control_faster_intel' [08:48, 06:18](1081 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [21:12, 06:47] ( 884 warnings 9 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [04:53, 02:19](1617 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [04:56, 02:22](1632 MB) +PASS -- TEST 'control_stochy_debug_intel' [04:22, 03:05](827 MB) +PASS -- TEST 'control_lndp_debug_intel' [04:22, 02:46](825 MB) +PASS -- TEST 'control_csawmg_debug_intel' [06:37, 04:13](1132 MB) +PASS -- TEST 'control_ras_debug_intel' [04:19, 02:53](835 MB) +PASS -- TEST 'control_diag_debug_intel' [04:35, 02:44](1679 MB) +PASS -- TEST 'control_debug_p8_intel' [05:41, 02:51](1908 MB) +PASS -- TEST 'regional_debug_intel' [19:46, 17:54](1088 MB) +PASS -- TEST 'rap_control_debug_intel' [07:24, 04:57](1214 MB) +PASS -- TEST 'hrrr_control_debug_intel' [06:29, 04:49](1215 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [06:23, 04:52](1213 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [06:21, 04:56](1212 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [06:22, 04:51](1218 MB) +PASS -- TEST 'rap_diag_debug_intel' [06:31, 05:07](1294 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [06:22, 04:57](1212 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [06:22, 05:05](1218 MB) +PASS -- TEST 'rap_lndp_debug_intel' [06:23, 05:02](1219 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [06:23, 05:05](1220 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:21, 04:55](1217 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:21, 04:57](1212 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:26, 08:00](1215 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:23, 04:50](1209 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:26, 05:01](1217 MB) +PASS -- TEST 'rap_flake_debug_intel' [06:27, 04:52](1215 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [11:25, 08:37](1220 MB) + +PASS -- COMPILE 'wam_debug_intel' [20:12, 05:19] ( 839 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [15:46, 13:13](1692 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [31:14, 11:39] ( 3 warnings 8 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:02, 04:55](1225 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:25, 07:12](998 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [06:54, 03:53](919 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [11:07, 08:49](975 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [07:09, 04:26](959 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [07:09, 04:11](918 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:31, 05:29](968 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:46, 02:05](877 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [33:12, 11:40] ( 3 warnings 8 remarks ) +PASS -- TEST 'conus13km_control_intel' [04:56, 02:45](1183 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:51, 01:03](1142 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:44, 01:29](1092 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [39:11, 12:21] ( 3 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [06:47, 04:41](1005 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [33:11, 05:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [06:32, 04:54](1093 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [06:33, 04:46](1092 MB) +PASS -- TEST 'conus13km_debug_intel' [16:01, 13:47](1242 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [15:57, 13:58](943 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [16:04, 13:23](1179 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [15:52, 13:25](1307 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [33:11, 05:48] ( 787 warnings 8 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [06:27, 04:55](1168 MB) + +PASS -- COMPILE 'hafsw_intel' [42:12, 14:56] ( 1 warnings 4 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:20, 05:40](901 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:28, 04:44](1161 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [10:24, 07:17](963 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [32:23, 29:01](1005 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [39:26, 35:27](1016 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [10:11, 07:14](502 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [11:28, 08:17](509 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [08:53, 03:32](367 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [14:44, 09:19](478 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [08:58, 04:36](536 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [08:06, 04:21](525 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [09:09, 05:31](577 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [05:31, 01:33](400 MB) +PASS -- TEST 'gnv1_nested_intel' [09:26, 04:17](1732 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [33:11, 06:45] ( 1479 warnings 1472 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [15:56, 13:12](588 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [33:14, 14:19] ( 3 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [19:07, 15:02](639 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [18:22, 15:00](684 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [35:17, 14:34] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [14:22, 11:17](705 MB) + +PASS -- COMPILE 'hafs_all_intel' [28:13, 13:59] ( 3 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [10:20, 07:21](975 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [10:14, 07:16](951 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [19:59, 17:40](1203 MB) + +PASS -- COMPILE 'datm_cdeps_intel' [18:16, 09:40] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_intel' [04:19, 03:00](1165 MB) +PASS -- TEST 'datm_cdeps_restart_cfsr_intel' [03:20, 01:57](1109 MB) +PASS -- TEST 'datm_cdeps_control_gefs_intel' [04:18, 02:56](1026 MB) +PASS -- TEST 'datm_cdeps_iau_gefs_intel' [04:19, 02:56](1023 MB) +PASS -- TEST 'datm_cdeps_stochy_gefs_intel' [04:18, 02:55](1026 MB) +PASS -- TEST 'datm_cdeps_ciceC_cfsr_intel' [04:17, 03:05](1149 MB) +PASS -- TEST 'datm_cdeps_bulk_cfsr_intel' [04:17, 03:01](1158 MB) +PASS -- TEST 'datm_cdeps_bulk_gefs_intel' [04:17, 02:54](1016 MB) +PASS -- TEST 'datm_cdeps_mx025_cfsr_intel' [09:11, 06:30](1030 MB) +PASS -- TEST 'datm_cdeps_mx025_gefs_intel' [09:07, 06:29](1016 MB) +PASS -- TEST 'datm_cdeps_multiple_files_cfsr_intel' [04:17, 03:02](1138 MB) +PASS -- TEST 'datm_cdeps_3072x1536_cfsr_intel' [06:18, 04:21](2447 MB) +PASS -- TEST 'datm_cdeps_gfs_intel' [06:19, 04:23](2453 MB) + +PASS -- COMPILE 'datm_cdeps_debug_intel' [09:13, 05:03] ( 4 warnings 2 remarks ) +PASS -- TEST 'datm_cdeps_debug_cfsr_intel' [08:18, 06:30](1081 MB) + +PASS -- COMPILE 'datm_cdeps_faster_intel' [12:11, 08:50] ( 2 remarks ) +PASS -- TEST 'datm_cdeps_control_cfsr_faster_intel' [04:18, 02:58](1153 MB) + +PASS -- COMPILE 'datm_cdeps_land_intel' [04:10, 01:21] ( 1 remarks ) +PASS -- TEST 'datm_cdeps_lnd_gswp3_intel' [03:32, 01:16](252 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_intel' [02:29, 01:01](330 MB) +PASS -- TEST 'datm_cdeps_lnd_era5_rst_intel' [06:32, 00:36](322 MB) + +PASS -- COMPILE 'datm_cdeps_lm4_intel' [06:10, 01:39] ( 12 warnings ) +PASS -- TEST 'datm_cdeps_lm4_gswp3_intel' [06:33, 00:40](559 MB) +PASS -- TEST 'datm_cdeps_lm4_gswp3_rst_intel' [02:32, 00:23](443 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [14:12, 12:57] ( 3 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [12:18, 05:17](1987 MB) + +PASS -- COMPILE 'atm_ds2s_docn_dice_intel' [14:16, 12:51] ( 1 warnings 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_dice_intel' [14:07, 07:08](2000 MB) + +PASS -- COMPILE 'atml_intel' [15:11, 13:51] ( 9 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_intel' [09:34, 04:02](1860 MB) +PASS -- TEST 'control_restart_p8_atmlnd_intel' [05:19, 02:16](1074 MB) + +PASS -- COMPILE 'atml_debug_intel' [08:12, 06:55] ( 889 warnings 2 remarks ) +PASS -- TEST 'control_p8_atmlnd_debug_intel' [11:46, 05:15](1889 MB) + +PASS -- COMPILE 'atmw_intel' [14:10, 12:59] ( 3 remarks ) +PASS -- TEST 'atmwav_control_noaero_p8_intel' [09:29, 02:23](1913 MB) + +PASS -- COMPILE 'atmaero_intel' [14:10, 12:25] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [14:29, 06:09](1989 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [15:27, 07:10](1769 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [13:11, 06:13](1784 MB) + +PASS -- COMPILE 'atmaq_intel' [13:11, 12:09] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [27:06, 20:02](2916 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [07:10, 05:18] ( 864 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [47:54, 40:16](2929 MB) + +PASS -- COMPILE 'atm_fbh_intel' [13:11, 11:28] ( 3 warnings 8 remarks ) +PASS -- TEST 'cpld_regional_atm_fbh_intel' [21:31, 14:50](1069 MB) + +PASS -- COMPILE 'hafsw_intelllvm' [09:10, 08:01] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intelllvm' [15:08, 09:08](572 MB) + +PASS -- COMPILE 'hafsw_debug_intelllvm' [06:11, 04:14] +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intelllvm' [25:05, 19:21](571 MB) SYNOPSIS: -Starting Date/Time: 20250416 14:53:30 -Ending Date/Time: 20250416 18:40:53 -Total Time: 03h:48m:13s +Starting Date/Time: 20250420 08:48:53 +Ending Date/Time: 20250420 11:31:05 +Total Time: 02h:42m:49s Compiles Completed: 47/47 Tests Completed: 194/194 diff --git a/tests/logs/RegressionTests_wcoss2.log b/tests/logs/RegressionTests_wcoss2.log index 58df3fda07..cc962b5f72 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: -a65ddbe0590212fec6907a209c2239640674999d +76113f2ca532cf2a1b3ab6b76f3fa5731fb4cf3d Submodule hashes used in testing: d3c1bc45492f8b35948c97021e4e6ab4d4c203e4 AQM (v0.2.0-38-gd3c1bc4) @@ -9,7 +9,7 @@ Submodule hashes used in testing: 132fa6963ba2f7103f711eb567e4fe97ed0804a8 CDEPS-interface/CDEPS (cdeps0.4.17-406-g132fa69) 4411a158cc4839157e3087d7fe8e399f9685eb35 CICE-interface/CICE (CICE6.0.0-399-g4411a15) 43ead56380bf11ecad66f165dcd736ed0c278763 CICE-interface/CICE/icepack (Icepack1.1.0-200-g43ead56) - 46ca4c8953d1eb2740ba0dca1aa2689e6ae05de2 CMEPS-interface/CMEPS (cmeps_v0.4.1-2315-g46ca4c8) + beef9faaf6dc90b2277ff5f29feccf0c06e9f904 CMEPS-interface/CMEPS (cmeps_v0.4.1-2316-gbeef9faa) cabd7753ae17f7bfcc6dad56daf10868aa51c3f4 CMakeModules (v1.0.0-28-gcabd775) 463686c69470927f08bb1366c8f44c3515281c6c FV3 (heads/develop) 127a341d126a6225a52eed61c4e866e1af82005f FV3/atmos_cubed_sphere (201912_public_release-414-g127a341) @@ -23,13 +23,13 @@ Submodule hashes used in testing: bcf7777bb037ae2feb2a8a8ac51aacb3511b52d9 HYCOM-interface/HYCOM (2.3.00-122-gbcf7777) c4d2337d8607ec994b3cd61179eb974e0a237841 LM4-driver (baseline_change_240904-6-gc4d2337) c03c4f68816030f726785daf0db6150aa1e9cc6f LM4-driver/LM4 (land_lad2_2021.02) - 85bd913b6c86c58dbafb37e2c2ab618d17be2486 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10464-g85bd913b6) + f355c30a9a102063264510dd0a34d450a5147f14 MOM6-interface/MOM6 (dev/master/repository_split_2014.10.10-10465-gf355c30a9) 65ef5c73bc7f5663d5688f75c3855d431da4baea MOM6-interface/MOM6/pkg/CVMix-src (65ef5c7) 29e64d652786e1d076a05128c920f394202bfe10 MOM6-interface/MOM6/pkg/GSW-Fortran (29e64d6) 1a2d2fcb02da38e975f252ef743af24b68b3cc7f NOAHMP-interface/noahmp (v3.7.1-455-g1a2d2fc) d09a7a97241a5c75b9c5452711f0080b2a2dba1b WW3 (6.07.1-438-gd09a7a97) 05cad173feeb598431e3ef5f17c2df6562c8d101 fire_behavior (v0.2.0-1-g05cad17) - e2b8083a23aec09d611945ffdae696002d8403e1 stochastic_physics (remotes/origin/cesm_skeb_merge) + 3ba18626703e43c0ade44e4dbaa96655141b0556 stochastic_physics (ufs-v2.0.0-230-g3ba1862) NOTES: @@ -39,244 +39,244 @@ 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-20250416 -COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_2699956 +COMPARISON DIRECTORY: /lfs/h2/emc/ptmp/brian.curtis/FV3_RT/rt_3443707 RT.SH OPTIONS USED: * (-a) - HPC PROJECT ACCOUNT: GFS-DEV * (-e) - USE ECFLOW -PASS -- COMPILE 's2swa_32bit_intel' [13:29, 11:37] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:33, 06:44](3190 MB) -PASS -- TEST 'cpld_control_gefs_intel' [32:48, 17:12](4302 MB) -PASS -- TEST 'cpld_restart_gefs_intel' [31:29, 08:32](4111 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:31, 12:43] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 15:25](1903 MB) -PASS -- TEST 'cpld_control_gfsv17_iau_intel' [22:01, 16:44](1938 MB) -PASS -- TEST 'cpld_restart_gfsv17_intel' [12:35, 07:45](1070 MB) -PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:46, 17:57](1876 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:30, 12:58] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_sfs_intel' [18:32, 15:13](1899 MB) - -PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:19, 04:42] ( 1517 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_gfsv17_intel' [29:54, 24:31](1940 MB) - -PASS -- COMPILE 's2swa_intel' [13:29, 11:53] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_intel' [12:04, 08:18](3224 MB) -PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:26, 08:19](3223 MB) -PASS -- TEST 'cpld_restart_p8_intel' [08:24, 04:53](3108 MB) -PASS -- TEST 'cpld_control_qr_p8_intel' [11:57, 08:18](3241 MB) -PASS -- TEST 'cpld_restart_qr_p8_intel' [08:30, 04:52](3126 MB) -PASS -- TEST 'cpld_2threads_p8_intel' [20:28, 16:49](3441 MB) -PASS -- TEST 'cpld_decomp_p8_intel' [11:49, 08:09](3216 MB) -PASS -- TEST 'cpld_mpi_p8_intel' [10:19, 06:49](3167 MB) -PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:25, 08:15](3225 MB) - -PASS -- COMPILE 's2swal_intel' [13:27, 11:37] ( 1 warnings 4 remarks ) -PASS -- TEST 'cpld_s2sa_p8_intel' [12:19, 08:25](3203 MB) - -PASS -- COMPILE 's2sw_intel' [12:29, 11:07] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_intel' [08:37, 05:02](1923 MB) -PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:07, 07:08](1984 MB) - -PASS -- COMPILE 's2s_aoflux_intel' [12:25, 10:16] ( 1 remarks ) -PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:04, 05:03](1973 MB) - -PASS -- COMPILE 's2s_intel' [12:28, 10:49] ( 1 warnings 1 remarks ) -PASS -- TEST 'cpld_control_c48_intel' [09:41, 06:07](2874 MB) -PASS -- TEST 'cpld_warmstart_c48_intel' [05:37, 02:04](2886 MB) -PASS -- TEST 'cpld_restart_c48_intel' [04:39, 01:24](2312 MB) - -PASS -- COMPILE 's2swa_faster_intel' [17:31, 16:12] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_p8_faster_intel' [12:22, 08:20](3229 MB) - -PASS -- COMPILE 's2sw_pdlib_intel' [14:41, 12:38] ( 1 warnings 3 remarks ) -PASS -- TEST 'cpld_control_pdlib_p8_intel' [18:56, 15:28](1927 MB) -PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:19, 07:43](1101 MB) -PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:01, 17:59](1890 MB) - -PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:20, 04:34] ( 1517 warnings 1967 remarks ) -PASS -- TEST 'cpld_debug_pdlib_p8_intel' [28:14, 25:21](1962 MB) - -PASS -- COMPILE 'atm_dyn32_intel' [10:24, 08:59] ( 1 warnings 1 remarks ) -PASS -- TEST 'control_flake_intel' [06:33, 04:01](679 MB) -PASS -- TEST 'control_CubedSphereGrid_intel' [04:56, 02:40](1570 MB) -PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:59, 02:47](1579 MB) -PASS -- TEST 'control_latlon_intel' [04:58, 02:37](1581 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:07, 02:44](1582 MB) -PASS -- TEST 'control_c48_intel' [09:30, 06:37](1583 MB) -PASS -- TEST 'control_c48.v2.sfc_intel' [08:01, 06:00](704 MB) -PASS -- TEST 'control_c48_lnd_iau_intel' [09:26, 06:33](1583 MB) -PASS -- TEST 'control_c192_intel' [10:21, 07:06](1697 MB) -PASS -- TEST 'control_c384_intel' [12:50, 08:38](1993 MB) -PASS -- TEST 'control_c384gdas_intel' [15:06, 09:13](1152 MB) -PASS -- TEST 'control_stochy_intel' [03:32, 01:50](636 MB) -PASS -- TEST 'control_stochy_restart_intel' [03:36, 01:23](399 MB) -PASS -- TEST 'control_lndp_intel' [04:40, 01:51](632 MB) -PASS -- TEST 'control_iovr4_intel' [04:48, 02:44](634 MB) -PASS -- TEST 'control_iovr5_intel' [04:35, 02:44](633 MB) -PASS -- TEST 'control_p8_intel' [07:37, 03:11](1860 MB) -PASS -- TEST 'control_p8.v2.sfc_intel' [07:35, 03:16](1857 MB) -PASS -- TEST 'control_p8_ugwpv1_intel' [07:28, 03:16](1860 MB) -PASS -- TEST 'control_restart_p8_intel' [06:15, 02:06](1006 MB) -PASS -- TEST 'control_noqr_p8_intel' [06:43, 03:14](1857 MB) -PASS -- TEST 'control_restart_noqr_p8_intel' [06:16, 02:00](1006 MB) -PASS -- TEST 'control_decomp_p8_intel' [06:52, 03:15](1847 MB) -PASS -- TEST 'control_2threads_p8_intel' [10:10, 06:04](1933 MB) -PASS -- TEST 'control_p8_lndp_intel' [07:59, 05:19](1860 MB) -PASS -- TEST 'control_p8_rrtmgp_intel' [08:27, 04:24](1911 MB) -PASS -- TEST 'control_p8_mynn_intel' [07:20, 03:19](1865 MB) -PASS -- TEST 'merra2_thompson_intel' [07:33, 03:49](1859 MB) -PASS -- TEST 'regional_control_intel' [08:05, 05:25](874 MB) -PASS -- TEST 'regional_restart_intel' [06:00, 03:06](882 MB) -PASS -- TEST 'regional_decomp_intel' [07:49, 05:31](872 MB) -PASS -- TEST 'regional_2threads_intel' [09:51, 07:48](988 MB) -PASS -- TEST 'regional_noquilt_intel' [07:56, 05:21](1177 MB) -PASS -- TEST 'regional_netcdf_parallel_intel' [08:01, 05:13](874 MB) -PASS -- TEST 'regional_2dwrtdecomp_intel' [07:53, 05:18](873 MB) -PASS -- TEST 'regional_wofs_intel' [08:55, 07:07](1599 MB) - -PASS -- COMPILE 'rrfs_intel' [10:29, 08:20] ( 3 warnings 92 remarks ) -PASS -- TEST 'rap_control_intel' [11:38, 07:27](1018 MB) -PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:20, 04:38](1194 MB) -PASS -- TEST 'rap_decomp_intel' [10:50, 07:41](1021 MB) -PASS -- TEST 'rap_2threads_intel' [19:07, 16:01](1085 MB) -PASS -- TEST 'rap_restart_intel' [08:33, 03:51](778 MB) -PASS -- TEST 'rap_sfcdiff_intel' [11:28, 07:16](1012 MB) -PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:06, 07:32](1014 MB) -PASS -- TEST 'rap_sfcdiff_restart_intel' [10:51, 05:36](788 MB) -PASS -- TEST 'hrrr_control_intel' [08:51, 04:04](1011 MB) -PASS -- TEST 'hrrr_control_decomp_intel' [08:44, 04:02](1014 MB) -PASS -- TEST 'hrrr_control_2threads_intel' [11:47, 08:02](1075 MB) -PASS -- TEST 'hrrr_control_restart_intel' [04:58, 02:11](757 MB) -PASS -- TEST 'rrfs_v1beta_intel' [11:36, 07:13](1006 MB) -PASS -- TEST 'rrfs_v1nssl_intel' [11:51, 09:34](1972 MB) -PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:50, 09:11](1966 MB) - -PASS -- COMPILE 'csawmg_intel' [09:24, 07:35] -PASS -- TEST 'control_csawmg_intel' [10:01, 07:11](958 MB) -PASS -- TEST 'control_ras_intel' [05:36, 03:43](667 MB) - -PASS -- COMPILE 'wam_intel' [09:28, 07:30] ( 1 remarks ) -PASS -- TEST 'control_wam_intel' [14:12, 11:59](1664 MB) - -PASS -- COMPILE 'atm_faster_dyn32_intel' [09:28, 07:45] ( 1 remarks ) -PASS -- TEST 'control_p8_faster_intel' [07:32, 03:14](1856 MB) -PASS -- TEST 'regional_control_faster_intel' [06:51, 05:01](872 MB) - -PASS -- COMPILE 'atm_debug_dyn32_intel' [06:27, 04:41] ( 869 warnings 92 remarks ) -PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:02, 02:43](1606 MB) -PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:10, 02:48](1614 MB) -PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:30](820 MB) -PASS -- TEST 'control_lndp_debug_intel' [05:34, 03:09](820 MB) -PASS -- TEST 'control_csawmg_debug_intel' [08:01, 04:57](1107 MB) -PASS -- TEST 'control_ras_debug_intel' [05:34, 03:13](824 MB) -PASS -- TEST 'control_diag_debug_intel' [06:14, 03:08](1671 MB) -PASS -- TEST 'control_debug_p8_intel' [05:57, 03:10](1894 MB) -PASS -- TEST 'regional_debug_intel' [21:10, 18:19](926 MB) -PASS -- TEST 'rap_control_debug_intel' [07:36, 05:33](1199 MB) -PASS -- TEST 'hrrr_control_debug_intel' [07:40, 05:29](1193 MB) -PASS -- TEST 'hrrr_gf_debug_intel' [07:40, 05:35](1195 MB) -PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 05:35](1193 MB) -PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:37, 05:38](1196 MB) -PASS -- TEST 'rap_diag_debug_intel' [08:48, 05:53](1282 MB) -PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:36, 05:47](1197 MB) -PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:39, 05:41](1197 MB) -PASS -- TEST 'rap_lndp_debug_intel' [07:41, 05:34](1203 MB) -PASS -- TEST 'rap_progcld_thompson_debug_intel' [08:44, 05:40](1194 MB) -PASS -- TEST 'rap_noah_debug_intel' [08:34, 05:36](1191 MB) -PASS -- TEST 'rap_sfcdiff_debug_intel' [08:35, 05:34](1195 MB) -PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [11:40, 08:48](1190 MB) -PASS -- TEST 'rrfs_v1beta_debug_intel' [08:37, 05:32](1188 MB) -PASS -- TEST 'rap_clm_lake_debug_intel' [08:41, 05:42](1196 MB) -PASS -- TEST 'rap_flake_debug_intel' [08:36, 05:34](1196 MB) -PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:54, 09:38](1200 MB) - -PASS -- COMPILE 'wam_debug_intel' [05:24, 03:23] ( 825 warnings 1 remarks ) -PASS -- TEST 'control_wam_debug_intel' [17:12, 14:24](1691 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:23, 07:44] ( 3 warnings 91 remarks ) -PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:25, 04:16](1041 MB) -PASS -- TEST 'rap_control_dyn32_phy32_intel' [10:34, 06:03](895 MB) -PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:27, 03:16](891 MB) -PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [18:24, 13:36](947 MB) -PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [13:17, 07:00](935 MB) -PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:37, 03:27](889 MB) -PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:25, 04:39](757 MB) -PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [04:36, 01:52](724 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:23, 07:45] ( 3 warnings 91 remarks ) -PASS -- TEST 'conus13km_control_intel' [05:28, 02:14](1083 MB) -PASS -- TEST 'conus13km_2threads_intel' [05:09, 01:56](1069 MB) -PASS -- TEST 'conus13km_restart_mismatch_intel' [05:12, 01:34](776 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:22, 07:47] ( 3 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:02, 04:17](917 MB) - -PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:28] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:37, 05:21](1076 MB) -PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:38, 05:25](1076 MB) -PASS -- TEST 'conus13km_debug_intel' [18:25, 14:54](1145 MB) -PASS -- TEST 'conus13km_debug_qr_intel' [17:30, 14:51](857 MB) -PASS -- TEST 'conus13km_debug_2threads_intel' [26:26, 23:12](1126 MB) -PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:21, 15:00](1214 MB) - -PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:17, 03:23] ( 773 warnings 91 remarks ) -PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [08:38, 05:30](1105 MB) - -PASS -- COMPILE 'hafsw_intel' [11:26, 09:26] ( 1 warnings 3 remarks ) -PASS -- TEST 'hafs_regional_atm_intel' [11:00, 05:51](700 MB) -PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [07:47, 04:14](1043 MB) -PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:08, 07:06](756 MB) -PASS -- TEST 'hafs_regional_atm_wav_intel' [16:00, 12:11](795 MB) -PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [18:29, 13:43](937 MB) -PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:30, 05:53](466 MB) -PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:57, 07:12](474 MB) -PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 03:22](378 MB) -PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:20, 08:31](445 MB) -PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:18, 04:17](492 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:26, 03:52](491 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [08:23, 04:50](556 MB) -PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:50, 01:57](404 MB) - -PASS -- COMPILE 'hafsw_debug_intel' [05:19, 03:56] ( 1461 warnings 1471 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:31, 14:29](601 MB) - -PASS -- COMPILE 'hafsw_faster_intel' [11:24, 09:17] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:24, 08:10](627 MB) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:42, 08:05](784 MB) - -PASS -- COMPILE 'hafs_mom6w_intel' [11:25, 09:34] ( 2 remarks ) -PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:49, 06:45](778 MB) - -PASS -- COMPILE 'hafs_all_intel' [11:25, 09:26] ( 2 remarks ) -PASS -- TEST 'hafs_regional_docn_intel' [09:48, 06:41](751 MB) -PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:46, 06:47](737 MB) -PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:55, 16:10](895 MB) - -PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 10:06] ( 1 remarks ) -PASS -- TEST 'atm_ds2s_docn_pcice_intel' [08:23, 04:13](1915 MB) - -PASS -- COMPILE 'atml_intel' [10:34, 09:11] ( 9 warnings 2 remarks ) - -PASS -- COMPILE 'atml_debug_intel' [06:19, 04:25] ( 874 warnings 2 remarks ) - -PASS -- COMPILE 'atmaero_intel' [09:22, 08:02] ( 1 remarks ) -PASS -- TEST 'atmaero_control_p8_intel' [08:36, 04:47](3120 MB) -PASS -- TEST 'atmaero_control_p8_rad_intel' [09:40, 05:22](3011 MB) -PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [09:13, 05:26](3013 MB) - -PASS -- COMPILE 'atmaq_intel' [09:23, 07:37] ( 8 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_intel' [21:21, 16:23](2374 MB) - -PASS -- COMPILE 'atmaq_debug_intel' [05:18, 03:23] ( 850 warnings 4 remarks ) -PASS -- TEST 'regional_atmaq_debug_intel' [45:42, 40:53](1947 MB) +PASS -- COMPILE 's2swa_32bit_intel' [13:28, 11:34] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_mixedmode_intel' [10:38, 06:39](3189 MB) +PASS -- TEST 'cpld_control_gefs_intel' [32:51, 17:19](4299 MB) +PASS -- TEST 'cpld_restart_gefs_intel' [25:21, 08:33](4110 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_intel' [14:29, 12:16] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_gfsv17_intel' [20:45, 15:37](1904 MB) +PASS -- TEST 'cpld_control_gfsv17_iau_intel' [21:51, 16:29](1962 MB) +PASS -- TEST 'cpld_restart_gfsv17_intel' [12:40, 07:42](1070 MB) +PASS -- TEST 'cpld_mpi_gfsv17_intel' [21:54, 18:01](1876 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_sfs_intel' [14:29, 12:40] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_sfs_intel' [18:32, 15:17](1897 MB) + +PASS -- COMPILE 's2swa_32bit_pdlib_debug_intel' [06:20, 04:48] ( 1517 warnings 1967 remarks ) +PASS -- TEST 'cpld_debug_gfsv17_intel' [29:47, 24:20](1938 MB) + +PASS -- COMPILE 's2swa_intel' [13:28, 11:24] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_intel' [12:12, 08:23](3225 MB) +PASS -- TEST 'cpld_control_p8.v2.sfc_intel' [12:30, 08:17](3224 MB) +PASS -- TEST 'cpld_restart_p8_intel' [08:54, 04:49](3107 MB) +PASS -- TEST 'cpld_control_qr_p8_intel' [12:04, 08:16](3241 MB) +PASS -- TEST 'cpld_restart_qr_p8_intel' [08:59, 04:50](3126 MB) +PASS -- TEST 'cpld_2threads_p8_intel' [20:31, 16:43](3439 MB) +PASS -- TEST 'cpld_decomp_p8_intel' [12:05, 08:14](3216 MB) +PASS -- TEST 'cpld_mpi_p8_intel' [10:18, 06:51](3168 MB) +PASS -- TEST 'cpld_control_ciceC_p8_intel' [12:28, 08:15](3223 MB) + +PASS -- COMPILE 's2swal_intel' [13:28, 11:30] ( 1 warnings 4 remarks ) +PASS -- TEST 'cpld_s2sa_p8_intel' [12:17, 08:21](3204 MB) + +PASS -- COMPILE 's2sw_intel' [13:28, 11:31] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_intel' [08:52, 04:56](1927 MB) +PASS -- TEST 'cpld_control_nowave_noaero_p8_intel' [11:21, 07:12](1981 MB) + +PASS -- COMPILE 's2s_aoflux_intel' [12:26, 10:35] ( 1 remarks ) +PASS -- TEST 'cpld_control_noaero_p8_agrid_intel' [09:12, 05:07](1975 MB) + +PASS -- COMPILE 's2s_intel' [12:27, 10:40] ( 1 warnings 1 remarks ) +PASS -- TEST 'cpld_control_c48_intel' [08:47, 06:06](2873 MB) +PASS -- TEST 'cpld_warmstart_c48_intel' [05:39, 02:13](2884 MB) +PASS -- TEST 'cpld_restart_c48_intel' [04:46, 01:22](2301 MB) + +PASS -- COMPILE 's2swa_faster_intel' [18:34, 16:34] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_p8_faster_intel' [12:21, 08:15](3228 MB) + +PASS -- COMPILE 's2sw_pdlib_intel' [14:31, 12:25] ( 1 warnings 3 remarks ) +PASS -- TEST 'cpld_control_pdlib_p8_intel' [19:08, 15:19](1928 MB) +PASS -- TEST 'cpld_restart_pdlib_p8_intel' [11:04, 07:48](1099 MB) +PASS -- TEST 'cpld_mpi_pdlib_p8_intel' [21:11, 17:46](1893 MB) + +PASS -- COMPILE 's2sw_pdlib_debug_intel' [06:22, 04:37] ( 1517 warnings 1967 remarks ) +PASS -- TEST 'cpld_debug_pdlib_p8_intel' [29:02, 25:28](1964 MB) + +PASS -- COMPILE 'atm_dyn32_intel' [10:27, 09:01] ( 1 warnings 1 remarks ) +PASS -- TEST 'control_flake_intel' [06:38, 03:57](671 MB) +PASS -- TEST 'control_CubedSphereGrid_intel' [05:03, 02:30](1570 MB) +PASS -- TEST 'control_CubedSphereGrid_parallel_intel' [04:58, 02:50](1578 MB) +PASS -- TEST 'control_latlon_intel' [04:55, 02:48](1579 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_intel' [05:06, 02:46](1577 MB) +PASS -- TEST 'control_c48_intel' [09:23, 06:27](1583 MB) +PASS -- TEST 'control_c48.v2.sfc_intel' [08:03, 05:56](704 MB) +PASS -- TEST 'control_c48_lnd_iau_intel' [09:21, 06:37](1583 MB) +PASS -- TEST 'control_c192_intel' [10:18, 07:18](1697 MB) +PASS -- TEST 'control_c384_intel' [12:35, 08:52](1983 MB) +PASS -- TEST 'control_c384gdas_intel' [14:54, 09:20](1155 MB) +PASS -- TEST 'control_stochy_intel' [04:33, 01:52](635 MB) +PASS -- TEST 'control_stochy_restart_intel' [03:33, 01:11](397 MB) +PASS -- TEST 'control_lndp_intel' [04:33, 01:56](631 MB) +PASS -- TEST 'control_iovr4_intel' [04:34, 02:45](630 MB) +PASS -- TEST 'control_iovr5_intel' [04:34, 02:44](636 MB) +PASS -- TEST 'control_p8_intel' [07:30, 03:18](1863 MB) +PASS -- TEST 'control_p8.v2.sfc_intel' [07:37, 03:18](1855 MB) +PASS -- TEST 'control_p8_ugwpv1_intel' [07:33, 03:15](1861 MB) +PASS -- TEST 'control_restart_p8_intel' [06:05, 01:56](1004 MB) +PASS -- TEST 'control_noqr_p8_intel' [06:51, 03:14](1856 MB) +PASS -- TEST 'control_restart_noqr_p8_intel' [05:45, 02:09](1010 MB) +PASS -- TEST 'control_decomp_p8_intel' [06:45, 03:21](1847 MB) +PASS -- TEST 'control_2threads_p8_intel' [10:35, 05:58](1941 MB) +PASS -- TEST 'control_p8_lndp_intel' [08:01, 05:11](1859 MB) +PASS -- TEST 'control_p8_rrtmgp_intel' [08:21, 04:16](1910 MB) +PASS -- TEST 'control_p8_mynn_intel' [07:08, 03:34](1860 MB) +PASS -- TEST 'merra2_thompson_intel' [07:36, 03:45](1849 MB) +PASS -- TEST 'regional_control_intel' [07:55, 05:17](875 MB) +PASS -- TEST 'regional_restart_intel' [05:59, 03:08](882 MB) +PASS -- TEST 'regional_decomp_intel' [07:48, 05:40](871 MB) +PASS -- TEST 'regional_2threads_intel' [09:51, 07:36](986 MB) +PASS -- TEST 'regional_noquilt_intel' [07:55, 05:24](1177 MB) +PASS -- TEST 'regional_netcdf_parallel_intel' [07:59, 05:13](874 MB) +PASS -- TEST 'regional_2dwrtdecomp_intel' [07:50, 05:19](873 MB) +PASS -- TEST 'regional_wofs_intel' [08:58, 07:03](1604 MB) + +PASS -- COMPILE 'rrfs_intel' [10:26, 08:26] ( 3 warnings 92 remarks ) +PASS -- TEST 'rap_control_intel' [11:37, 07:23](1016 MB) +PASS -- TEST 'regional_spp_sppt_shum_skeb_intel' [07:21, 04:28](1193 MB) +PASS -- TEST 'rap_decomp_intel' [11:20, 07:42](1020 MB) +PASS -- TEST 'rap_2threads_intel' [19:02, 15:58](1090 MB) +PASS -- TEST 'rap_restart_intel' [08:25, 03:55](777 MB) +PASS -- TEST 'rap_sfcdiff_intel' [11:29, 07:17](1015 MB) +PASS -- TEST 'rap_sfcdiff_decomp_intel' [11:18, 07:31](1016 MB) +PASS -- TEST 'rap_sfcdiff_restart_intel' [09:43, 05:33](787 MB) +PASS -- TEST 'hrrr_control_intel' [08:38, 03:56](1012 MB) +PASS -- TEST 'hrrr_control_decomp_intel' [07:54, 03:59](1016 MB) +PASS -- TEST 'hrrr_control_2threads_intel' [12:41, 08:00](1077 MB) +PASS -- TEST 'hrrr_control_restart_intel' [04:38, 02:19](758 MB) +PASS -- TEST 'rrfs_v1beta_intel' [11:39, 07:15](1006 MB) +PASS -- TEST 'rrfs_v1nssl_intel' [11:40, 09:39](1967 MB) +PASS -- TEST 'rrfs_v1nssl_nohailnoccn_intel' [11:43, 09:12](1957 MB) + +PASS -- COMPILE 'csawmg_intel' [09:26, 07:36] +PASS -- TEST 'control_csawmg_intel' [09:03, 06:52](955 MB) +PASS -- TEST 'control_ras_intel' [05:33, 03:34](665 MB) + +PASS -- COMPILE 'wam_intel' [09:24, 07:34] ( 1 remarks ) +PASS -- TEST 'control_wam_intel' [15:18, 12:11](1647 MB) + +PASS -- COMPILE 'atm_faster_dyn32_intel' [09:26, 07:49] ( 1 remarks ) +PASS -- TEST 'control_p8_faster_intel' [07:35, 03:11](1856 MB) +PASS -- TEST 'regional_control_faster_intel' [07:54, 05:13](873 MB) + +PASS -- COMPILE 'atm_debug_dyn32_intel' [06:22, 04:44] ( 869 warnings 92 remarks ) +PASS -- TEST 'control_CubedSphereGrid_debug_intel' [05:04, 02:39](1606 MB) +PASS -- TEST 'control_wrtGauss_netcdf_parallel_debug_intel' [05:11, 02:49](1613 MB) +PASS -- TEST 'control_stochy_debug_intel' [05:34, 03:34](820 MB) +PASS -- TEST 'control_lndp_debug_intel' [05:35, 03:15](820 MB) +PASS -- TEST 'control_csawmg_debug_intel' [07:01, 04:47](1107 MB) +PASS -- TEST 'control_ras_debug_intel' [05:35, 03:20](824 MB) +PASS -- TEST 'control_diag_debug_intel' [06:08, 03:12](1670 MB) +PASS -- TEST 'control_debug_p8_intel' [05:53, 03:08](1894 MB) +PASS -- TEST 'regional_debug_intel' [21:10, 18:23](925 MB) +PASS -- TEST 'rap_control_debug_intel' [07:33, 05:42](1196 MB) +PASS -- TEST 'hrrr_control_debug_intel' [07:47, 05:26](1192 MB) +PASS -- TEST 'hrrr_gf_debug_intel' [07:41, 05:37](1193 MB) +PASS -- TEST 'hrrr_c3_debug_intel' [07:38, 05:34](1193 MB) +PASS -- TEST 'rap_unified_drag_suite_debug_intel' [07:36, 05:39](1197 MB) +PASS -- TEST 'rap_diag_debug_intel' [07:44, 05:44](1284 MB) +PASS -- TEST 'rap_cires_ugwp_debug_intel' [07:38, 05:43](1196 MB) +PASS -- TEST 'rap_unified_ugwp_debug_intel' [07:33, 05:43](1199 MB) +PASS -- TEST 'rap_lndp_debug_intel' [07:35, 05:47](1197 MB) +PASS -- TEST 'rap_progcld_thompson_debug_intel' [07:39, 05:41](1197 MB) +PASS -- TEST 'rap_noah_debug_intel' [07:34, 05:33](1192 MB) +PASS -- TEST 'rap_sfcdiff_debug_intel' [07:35, 05:36](1195 MB) +PASS -- TEST 'rap_noah_sfcdiff_cires_ugwp_debug_intel' [10:40, 08:48](1190 MB) +PASS -- TEST 'rrfs_v1beta_debug_intel' [07:34, 05:39](1186 MB) +PASS -- TEST 'rap_clm_lake_debug_intel' [07:37, 05:42](1197 MB) +PASS -- TEST 'rap_flake_debug_intel' [07:35, 05:31](1197 MB) +PASS -- TEST 'gnv1_c96_no_nest_debug_intel' [14:03, 09:41](1202 MB) + +PASS -- COMPILE 'wam_debug_intel' [05:20, 03:24] ( 825 warnings 1 remarks ) +PASS -- TEST 'control_wam_debug_intel' [17:18, 14:25](1693 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_intel' [09:22, 07:45] ( 3 warnings 91 remarks ) +PASS -- TEST 'regional_spp_sppt_shum_skeb_dyn32_phy32_intel' [07:21, 04:13](1041 MB) +PASS -- TEST 'rap_control_dyn32_phy32_intel' [09:31, 05:55](893 MB) +PASS -- TEST 'hrrr_control_dyn32_phy32_intel' [08:22, 03:27](888 MB) +PASS -- TEST 'rap_2threads_dyn32_phy32_intel' [17:34, 13:51](952 MB) +PASS -- TEST 'hrrr_control_2threads_dyn32_phy32_intel' [11:25, 06:58](932 MB) +PASS -- TEST 'hrrr_control_decomp_dyn32_phy32_intel' [08:17, 03:24](887 MB) +PASS -- TEST 'rap_restart_dyn32_phy32_intel' [08:13, 04:40](753 MB) +PASS -- TEST 'hrrr_control_restart_dyn32_phy32_intel' [03:34, 01:52](725 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_faster_intel' [09:24, 07:40] ( 3 warnings 91 remarks ) +PASS -- TEST 'conus13km_control_intel' [05:16, 02:13](1082 MB) +PASS -- TEST 'conus13km_2threads_intel' [04:59, 01:58](1081 MB) +PASS -- TEST 'conus13km_restart_mismatch_intel' [04:01, 01:38](776 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_intel' [09:25, 07:52] ( 3 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_intel' [07:03, 04:14](918 MB) + +PASS -- COMPILE 'rrfs_dyn32_phy32_debug_intel' [05:18, 03:31] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_debug_dyn32_phy32_intel' [07:35, 05:26](1077 MB) +PASS -- TEST 'hrrr_control_debug_dyn32_phy32_intel' [07:39, 05:21](1072 MB) +PASS -- TEST 'conus13km_debug_intel' [17:28, 14:52](1146 MB) +PASS -- TEST 'conus13km_debug_qr_intel' [17:22, 15:03](858 MB) +PASS -- TEST 'conus13km_debug_2threads_intel' [25:24, 23:06](1132 MB) +PASS -- TEST 'conus13km_radar_tten_debug_intel' [18:16, 15:10](1217 MB) + +PASS -- COMPILE 'rrfs_dyn64_phy32_debug_intel' [05:18, 03:22] ( 773 warnings 91 remarks ) +PASS -- TEST 'rap_control_dyn64_phy32_debug_intel' [07:39, 05:38](1105 MB) + +PASS -- COMPILE 'hafsw_intel' [11:28, 09:25] ( 1 warnings 3 remarks ) +PASS -- TEST 'hafs_regional_atm_intel' [08:44, 05:48](697 MB) +PASS -- TEST 'hafs_regional_atm_thompson_gfdlsf_intel' [06:40, 04:12](1045 MB) +PASS -- TEST 'hafs_regional_atm_ocn_intel' [11:00, 07:10](757 MB) +PASS -- TEST 'hafs_regional_atm_wav_intel' [15:53, 12:09](795 MB) +PASS -- TEST 'hafs_regional_atm_ocn_wav_intel' [17:07, 13:24](811 MB) +PASS -- TEST 'hafs_regional_1nest_atm_intel' [09:23, 06:01](468 MB) +PASS -- TEST 'hafs_regional_telescopic_2nests_atm_intel' [10:50, 07:17](476 MB) +PASS -- TEST 'hafs_global_1nest_atm_intel' [06:32, 03:23](380 MB) +PASS -- TEST 'hafs_global_multiple_4nests_atm_intel' [13:04, 08:40](445 MB) +PASS -- TEST 'hafs_regional_specified_moving_1nest_atm_intel' [07:07, 04:09](494 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_intel' [07:09, 03:57](492 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_intel' [07:19, 04:52](556 MB) +PASS -- TEST 'hafs_global_storm_following_1nest_atm_intel' [04:37, 01:58](410 MB) + +PASS -- COMPILE 'hafsw_debug_intel' [05:20, 03:55] ( 1461 warnings 1471 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_debug_intel' [17:24, 14:23](599 MB) + +PASS -- COMPILE 'hafsw_faster_intel' [11:27, 09:11] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_intel' [11:23, 08:15](608 MB) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_inline_intel' [11:29, 08:18](786 MB) + +PASS -- COMPILE 'hafs_mom6w_intel' [11:27, 09:26] ( 2 remarks ) +PASS -- TEST 'hafs_regional_storm_following_1nest_atm_ocn_wav_mom6_intel' [09:44, 06:49](777 MB) + +PASS -- COMPILE 'hafs_all_intel' [11:28, 09:25] ( 2 remarks ) +PASS -- TEST 'hafs_regional_docn_intel' [09:46, 06:43](755 MB) +PASS -- TEST 'hafs_regional_docn_oisst_intel' [09:43, 06:55](730 MB) +PASS -- TEST 'hafs_regional_datm_cdeps_intel' [18:42, 16:11](896 MB) + +PASS -- COMPILE 'atm_ds2s_docn_pcice_intel' [11:25, 09:54] ( 1 remarks ) +PASS -- TEST 'atm_ds2s_docn_pcice_intel' [07:51, 04:09](1915 MB) + +PASS -- COMPILE 'atml_intel' [10:24, 09:09] ( 9 warnings 2 remarks ) + +PASS -- COMPILE 'atml_debug_intel' [06:19, 04:18] ( 874 warnings 2 remarks ) + +PASS -- COMPILE 'atmaero_intel' [09:23, 07:55] ( 1 remarks ) +PASS -- TEST 'atmaero_control_p8_intel' [08:13, 04:51](3117 MB) +PASS -- TEST 'atmaero_control_p8_rad_intel' [09:11, 05:10](3009 MB) +PASS -- TEST 'atmaero_control_p8_rad_micro_intel' [08:54, 05:21](3016 MB) + +PASS -- COMPILE 'atmaq_intel' [09:22, 07:37] ( 8 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_intel' [20:51, 16:02](2367 MB) + +PASS -- COMPILE 'atmaq_debug_intel' [05:19, 03:29] ( 850 warnings 4 remarks ) +PASS -- TEST 'regional_atmaq_debug_intel' [44:09, 40:26](1945 MB) SYNOPSIS: -Starting Date/Time: 20250417 13:55:00 -Ending Date/Time: 20250417 15:46:23 -Total Time: 01h:52m:21s +Starting Date/Time: 20250421 11:48:46 +Ending Date/Time: 20250421 13:37:51 +Total Time: 01h:49m:52s Compiles Completed: 35/35 Tests Completed: 158/158 diff --git a/tests/parm/global_control.nml.IN b/tests/parm/global_control.nml.IN index 87b8585cfa..30c274ae81 100644 --- a/tests/parm/global_control.nml.IN +++ b/tests/parm/global_control.nml.IN @@ -228,8 +228,6 @@ do_sppt = @[DO_SPPT] do_shum = @[DO_SHUM] do_skeb = @[DO_SKEB] - iaufhrs = @[IAUFHRS] - iau_delthrs = @[IAU_DELTHRS] use_med_flux = @[USE_MED_FLUX] frac_grid = @[FRAC_GRID] cplchm = @[CPLCHM] @@ -257,22 +255,24 @@ pert_mp = @[PERT_MP] pert_radtend = @[PERT_RADTEND] pert_clds = @[PERT_CLDS] - iau_inc_files= @[IAU_INC_FILES] - iau_drymassfixer = .false. - iau_filter_increments = @[IAU_FILTER_INCREMENTS] +@[HIDE_AIAU] iaufhrs = @[IAUFHRS] +@[HIDE_AIAU] iau_delthrs = @[IAU_DELTHRS] +@[HIDE_AIAU] iau_inc_files= @[IAU_INC_FILES] +@[HIDE_AIAU] iau_drymassfixer = .false. +@[HIDE_AIAU] iau_filter_increments = @[IAU_FILTER_INCREMENTS] / &land_iau_nml do_land_iau = @[DO_LAND_IAU] - land_iau_fhrs = @[LAND_IAU_FHRS] - land_iau_delthrs = @[LAND_IAU_DELHRS] - land_iau_inc_files = @[LAND_IAU_INC_FILES] - lsoil_incr = @[LSOIL_INCR] - land_iau_filter_increments = @[LAND_IAU_FILTER_INC] - land_iau_upd_stc = @[LAND_IAU_UPD_STC] - land_iau_upd_slc = @[LAND_IAU_UPD_SLC] - land_iau_do_stcsmc_adjustment = @[LAND_IAU_DP_STCSMC_ADJ] - land_iau_min_T_increment = @[LAND_IAU_MIN_T_INC] +@[HIDE_LIAU] land_iau_fhrs = @[LAND_IAU_FHRS] +@[HIDE_LIAU] land_iau_delthrs = @[LAND_IAU_DELHRS] +@[HIDE_LIAU] land_iau_inc_files = @[LAND_IAU_INC_FILES] +@[HIDE_LIAU] lsoil_incr = @[LSOIL_INCR] +@[HIDE_LIAU] land_iau_filter_increments = @[LAND_IAU_FILTER_INC] +@[HIDE_LIAU] land_iau_upd_stc = @[LAND_IAU_UPD_STC] +@[HIDE_LIAU] land_iau_upd_slc = @[LAND_IAU_UPD_SLC] +@[HIDE_LIAU] land_iau_do_stcsmc_adjustment = @[LAND_IAU_DP_STCSMC_ADJ] +@[HIDE_LIAU] land_iau_min_T_increment = @[LAND_IAU_MIN_T_INC] / &cires_ugwp_nml diff --git a/tests/run_test.sh b/tests/run_test.sh index ffede33f49..b57257cb53 100755 --- a/tests/run_test.sh +++ b/tests/run_test.sh @@ -158,6 +158,10 @@ else export HIDE_UGWPV1='!' fi +# Set IAU Global workflow related tags to ' ' +export HIDE_AIAU=' ' +export HIDE_LIAU=' ' + if [[ ${DATM_CDEPS} = 'true' ]] || [[ ${FV3} = 'true' ]] || [[ ${S2S} = 'true' ]]; then if [[ ${HAFS} = 'false' ]] || [[ ${FV3} = 'true' && ${HAFS} = 'true' ]]; then atparse < "${PATHRT}/parm/${INPUT_NML:-input.nml.IN}" > input.nml